forked from heremaps/maps-api-for-javascript-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.json
357 lines (355 loc) · 17.6 KB
/
meta.json
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
{
"header": {
"title": "JS Examples",
"meta": {
"keywords": "API Explorer, Playground",
"version": "0.0.1"
}
},
"categories": {
"maps-js": {
"title": "JavaScript API",
"meta": {
"keywords": "Maps API for JavaScript, API Explorer, Playground, JS Examples"
},
"sub-categories": [
{
"uid": "maps",
"title": "Maps",
"examples": [
{
"uid": "map-at-specified-location",
"title": "Map at a specified location",
"shortDescription": "Display a map at a specified location and zoom level",
"published": true
},
{
"uid": "tilted-map-bounds",
"title": "View bounds of the tilted map",
"shortDescription": "Visualize the visible area of the tilted and rotated map",
"published": true
},
{
"uid": "map-using-view-bounds",
"title": "Map using View Bounds",
"shortDescription": "Display a map of a given area",
"published": true
},
{
"uid": "map-multi-language-support",
"title": "Multi-language support",
"shortDescription": "Display a map with labels in a foreign language",
"published": true
},
{
"uid": "map-scale-bar-changing-from-the-metric-system",
"title": "Changing from the Metric System",
"shortDescription": "Display a map including a scale bar in miles or yards",
"published": true
},
{
"uid": "panning-the-map",
"title": "Panning the Map",
"shortDescription": "Programmatically pan the map so that it is continually in motion",
"published": false
},
{
"uid": "restrict-map",
"title": "Restrict Map Movement",
"shortDescription": "Restrict a moveable map to a given rectangular area",
"published": true
},
{
"uid": "custom-zooming-into-bounds",
"title": "Zoom into Bounds",
"shortDescription": "Zoom into bounds limiting maximum level",
"published": true
},
{
"uid": "capture-map-area",
"title": "Take a Snapshot of the Map",
"shortDescription": "Capture an area on the map",
"published": true
},
{
"uid": "synchronising-two-maps",
"title": "Synchronising Two Maps",
"shortDescription": "This example shows two maps. The upper map allows for moving and zooming. The lower map observes the upper map's zoom level and position and adopts these values every time the upper map changes.",
"published": true
},
{
"uid": "display-kml-on-map",
"title": "Display KML Data",
"shortDescription": "Parse a KML file and display the data on a map.",
"published": true
},
{
"uid": "custom-tile-overlay",
"title": "Adding a tile overlay to the Map",
"shortDescription": "This example displays a movable map initially centered on the historical centre of <b>Berlin</b> (<i>52.515, °N, 13.405°E</i>) with an overlay of a historical map from 1789 on top of the base map. A public domain image was used as a source, and split it into individual map tiles. Additional tiles are only downloaded when the zoom level or location changes.",
"published": true
},
{
"uid": "position-on-mouse-click",
"title": "Calculating a Location from a Mouse Click",
"shortDescription": "Obtain the latitude and longitude of a location within the map",
"published": true
},
{
"uid": "example-template",
"title": "Example Template",
"shortDescription": "Capture an area on the map",
"published": false
}
]
},
{
"uid": "styles",
"title": "Styles and Layers",
"examples": [
{
"uid": "change-style-at-runtime",
"title": "Change map style at runtime",
"shortDescription": "Change a style of the map feature when map is instantiated",
"published": true
},
{
"uid": "change-style-at-load",
"title": "Set a map style at the load time",
"shortDescription": "Set a style of the whole map during the map instantiation",
"published": true
},
{
"uid": "interactive-basemap",
"title": "Interactive base map",
"shortDescription": "Retrieve information associated with the map features",
"published": true
},
{
"uid": "interleave-layers",
"title": "Interleave vector and object layers",
"shortDescription": "Insert an object layer between the two vector layers",
"published": true
}
]
},
{
"uid": "markers",
"title": "Markers",
"examples": [
{
"uid": "markers-on-the-map",
"title": "Marker on the Map",
"shortDescription": "Display a map highlighting points of interest",
"published": true
},
{
"uid": "map-with-dom-marker",
"title": "DOM Marker",
"shortDescription": "Display a marker that is capable of receiving DOM events",
"published": true
},
{
"uid": "map-with-svg-graphic-markers",
"title": "SVG Graphic Markers",
"shortDescription": "Display a map with custom SVG markers",
"published": true
},
{
"uid": "finding-the-nearest-marker",
"title": "Finding the Nearest Marker",
"shortDescription": "Find a marker nearest to the click location",
"published": true
},
{
"uid": "ordering-overlapping-markers",
"title": "Ordering Overlapping Markers",
"shortDescription": "Arrange the order in which a series of map objects are displayed",
"published": false
},
{
"uid": "zoom-to-set-of-markers",
"title": "Zooming to a Set of Markers",
"shortDescription": "Alter the viewport to ensure a group of objects are visible",
"published": true
},
{
"uid": "draggable-marker",
"title": "Draggable Marker",
"shortDescription": "Display a moveable marker on a map",
"published": true
}
]
},
{
"uid": "geoshapes",
"title": "Geoshapes",
"examples": [
{
"uid": "polyline-on-the-map",
"title": "Polyline on the Map",
"shortDescription": "Display a map with a line showing a known route",
"published": true
},
{
"uid": "extruded-objects",
"title": "Extruded geoshapes",
"shortDescription": "Display a map with the 3D extruded object",
"published": true
},
{
"uid": "polygon-on-the-map",
"title": "Polygon on the Map",
"shortDescription": "Display a map highlighting a region or area",
"published": true
},
{
"uid": "polygon-with-holes-on-the-map",
"title": "Polygon with Holes on the Map",
"shortDescription": "Display a map highlighting a region or area",
"published": true
},
{
"uid": "circle-on-the-map",
"title": "Circle on the Map",
"shortDescription": "Display a map highlighting a circular region",
"published": true
},
{
"uid": "rectangle-on-the-map",
"title": "Rectangle on the map",
"shortDescription": "Display a map highlighting a retangular region or area",
"published": true
},
{
"uid": "image-overlay",
"title": "Image overlay",
"shortDescription": "Display an animated weather radar",
"published": true
}
]
},
{
"uid": "clustering",
"title": "Clustering",
"examples": [
{
"uid": "marker-clustering",
"title": "Marker Clustering",
"shortDescription": "Cluster multiple markers together to better visualize the data",
"published": true
},
{
"uid": "custom-cluster-theme",
"title": "Marker Clustering with Custom Theme",
"shortDescription": "Cluster multiple markers and customize the theme",
"published": true
}
]
},
{
"uid": "events",
"title": "Events",
"examples": [
{
"uid": "map-object-events-displayed",
"title": "Map Objects Events",
"shortDescription": "Handle events on various map objects",
"published": true
},
{
"uid": "map-objects-event-delegation",
"title": "Map Objects Event Delegation",
"shortDescription": "Use event delegation on map objects",
"published": true
},
{
"uid": "context-menu",
"title": "Context menu",
"shortDescription": "Add a context menu to map and map object",
"published": true
}
]
},
{
"uid": "infobubbles",
"title": "Info Bubbles",
"examples": [
{
"uid": "open-infobubble",
"title": "Opening an Infobubble on a Mouse Click",
"shortDescription": "Open an infobubble when a marker is clicked",
"published": true
}
]
},
{
"uid": "services",
"title": "Services - Routing, Geocoding",
"examples": [
{
"uid": "map-with-route-from-a-to-b",
"title": "Map with Driving Route from A to B",
"shortDescription": "Request a driving route from A to B and display it on the map",
"published": true
},
{
"uid": "map-with-pedestrian-route-from-a-to-b",
"title": "Map with Pedestrian Route from A to B",
"shortDescription": "Request a walking route from A to B and display it on the map",
"published": true
},
{
"uid": "map-with-route-from-a-to-b-using-public-transport",
"title": "Map with Route from A to B using Public Transport",
"shortDescription": "Request a route from A to B using public transport and display it on the map",
"published": true
},
{
"uid": "geocode-a-location-from-address",
"title": "Search for a Location based on an Address",
"shortDescription": "Request a location using a free-form text input and display it on the map",
"published": true
},
{
"uid": "geocode-a-location-from-structured-address",
"title": "Search for a Location given a Structured Address",
"shortDescription": "Request a location from a structured address and display it on the map",
"published": true
},
{
"uid": "reverse-geocode-an-address-from-location",
"title": "Search for the Address of a Known Location",
"shortDescription": "Request address details for a given location and display it on the map",
"published": true
},
{
"uid": "search-for-landmark",
"title": "Search for a Landmark",
"shortDescription": "Request the location of a landmark and display it on the map",
"published": true
}
]
},
{
"uid": "fleet-telematics",
"title": "Integration of Fleet Telematics Services",
"examples": [
{
"uid": "search-match-fts",
"title": "Data Matching with the Advanced Data Sets",
"shortDescription": "Match routing result with the Advanced Data Sets data",
"published": true
},
{
"uid": "postcodes-jsla-fts",
"title": "Map with postcodes from the Advanced Data Sets",
"shortDescription": "Display a map with the Advanced Data Sets postcode boundaries overlay",
"published": true
}
]
}
]
}
}
}