-
Notifications
You must be signed in to change notification settings - Fork 22
/
sidebars.js
112 lines (109 loc) · 3.14 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
module.exports = {
defaultSidebar: [
{ type: "doc", id: "overview", label: "Overview" },
{
type: "category",
label: "Geofencing Platform",
items: [
"geofencing/overview",
"geofences",
"trip-tracking",
"places",
"regions",
"beacons",
"fraud",
"notifications",
{
type: "category",
label: "Integrations",
items: [
{ type: "doc", id: "integrations", label: "Overview" },
"integrations/webhooks",
"integrations/urban-airship",
"integrations/amplitude",
"integrations/aws-pinpoint",
"integrations/aws-s3",
"integrations/attentive",
"integrations/branch",
"integrations/brandify",
"integrations/braze",
"integrations/cordial",
"integrations/census",
"integrations/iterable",
"integrations/leanplum",
"integrations/lytics",
"integrations/mixpanel",
"integrations/mparticle",
"integrations/olo",
"integrations/onesignal",
"integrations/salesforce",
"integrations/segment",
"integrations/yext",
],
},
"geofencing/testing"
],
},
{
type: "category",
label: "Maps Platform",
items: [
"maps/overview",
"maps/geocoding",
"maps/search",
"maps/routing",
"maps/maps",
"maps/static-maps",
"maps/autocomplete",
],
},
{
type: "category",
label: "SDK Reference",
items: [
"sdk/sdk-overview",
"sdk/ios",
"sdk/android",
"sdk/react-native",
"sdk/web",
"sdk/cordova",
"sdk/capacitor",
"sdk/flutter",
"sdk/maui",
"sdk/tracking",
"sdk/remote-configuration",
],
},
"api",
{
type: "category",
label: "Tutorials",
items: [
{ type: "doc", id: "tutorials", label: "Overview" },
"tutorials/building-an-on-premise-mode",
"tutorials/showing-a-notification-when-a-user-enters-a-geofence",
"tutorials/building-an-app-with-location-enabled-curbside-pickup",
"tutorials/building-a-delivery-tracking-app",
"tutorials/building-a-store-locator-on-ios",
"tutorials/localizing-a-website-based-on-current-country-or-city",
"tutorials/logging-and-analyzing-where-conversions-occur",
"tutorials/migrate-from-google-maps",
"tutorials/displaying-radar-maps-on-ios",
"tutorials/displaying-radar-maps-on-android",
"tutorials/displaying-radar-maps-with-react-native",
"tutorials/displaying-radar-maps-with-flutter",
"tutorials/create-a-custom-map-style",
],
},
"waypoint",
"faqs"
]
};