-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookmarks.json
More file actions
95 lines (95 loc) · 2.44 KB
/
bookmarks.json
File metadata and controls
95 lines (95 loc) · 2.44 KB
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
[
{
"title": "Marker Example",
"type": "marker",
"geometry": {
"type": "Point",
"coordinates": [-74.0060, 40.7128]
},
"content": {
"type": "video",
"title": "Sample Video",
"url": "https://www.youtube.com/embed/dQw4w9WgXcQ"
},
"tile_layer": "Esri Satellite",
"zoom": 12
},
{
"title": "Line Example",
"type": "line",
"geometry": {
"type": "LineString",
"coordinates": [
[-0.1278, 51.5074],
[2.3522, 48.8566]
]
},
"content": {
"type": "text",
"title": "Sample Line",
"text": "This is a line from London to Paris."
},
"style": {
"color": "blue",
"weight": 5,
"opacity": 0.7
},
"tile_layer": "Dark Matter",
"zoom": 5
},
{
"title": "Polygon Example",
"type": "polygon",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[-122.414, 37.776],
[-122.414, 37.788],
[-122.402, 37.788],
[-122.402, 37.776],
[-122.414, 37.776]
]
]
},
"content": {
"type": "text",
"title": "Sample Polygon",
"text": "This is a polygon in San Francisco."
},
"style": {
"fillColor": "red",
"color": "red",
"weight": 2,
"fillOpacity": 0.5
},
"tile_layer": "OpenStreetMap",
"zoom": 13
},
{
"title": "Polyline Example",
"type": "line",
"geometry": {
"type": "LineString",
"coordinates": [
[-118.2437, 34.0522],
[-117.1611, 32.7157],
[-112.0740, 33.4484],
[-106.6504, 35.0844],
[-104.9903, 39.7392]
]
},
"content": {
"type": "text",
"title": "West Coast Polyline",
"text": "This polyline connects several cities in the western United States."
},
"style": {
"color": "green",
"weight": 4,
"opacity": 0.8
},
"tile_layer": "Esri Satellite",
"zoom": 5
}
]