-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumap.template
111 lines (111 loc) · 2.91 KB
/
umap.template
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
{
"type": "umap",
"uri": "https://umap.openstreetmap.fr/en/map/photos",
"properties": {
"easing": true,
"tilelayersControl": true,
"measureControl": true,
"embedControl": true,
"fullscreenControl": true,
"searchControl": true,
"datalayersControl": true,
"zoomControl": true,
"shortCredit": "Generated from 360tools - see https://github.com/plord12/360tools",
"slideshow": {},
"captionBar": true,
"tilelayer": {
"tms": false,
"name": "OpenStreetMap",
"maxZoom": 19,
"minZoom": 0,
"attribution": "Map data © [[http://osm.org/copyright|OpenStreetMap contributors]]",
"url_template": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
},
"licence": "",
"description": "",
"name": "{{ .Name }}",
"onLoadPanel": "none",
"displayPopupFooter": true,
"miniMap": true,
"moreControl": true,
"scaleControl": true,
"scrollWheelZoom": true,
"zoom": 18
},
"geometry": {
"type": "Point",
"coordinates": [
{{ .CenterLong }},
{{ .CenterLat }}
]
},
"layers": [
{
"type": "FeatureCollection",
"features": [],
"_umap_options": {
"displayOnLoad": true,
"browsable": true,
"name": "360Photos",
"remoteData": {
"url": "{{ .WebURL }}/photos360.csv",
"format": "csv",
"dynamic": {{ .Has360Photos }},
"proxy": true,
"ttl": "3600"
},
"iconClass": "Ball",
"popupShape": "Large",
"popupContentTemplate": "# [[{{ .WebURL }}/{photo}.html|Open in new tab]]\n{{`{{{`}}{{ .WebURL }}/{photo}.html}}}",
"color": "DarkOrange",
"description": "",
"id": 2700881,
"labelKey": "photo",
"showLabel": null
}
},
{
"type": "FeatureCollection",
"features": [],
"_umap_options": {
"displayOnLoad": true,
"browsable": true,
"name": "Tracks",
"id": 2700882,
"remoteData": {
"url": "{{ .WebURL }}/tracks.gpx",
"format": "gpx",
"dynamic": {{ .HasTracks }},
"proxy": true,
"ttl": "3600"
},
"color": "Red",
"weight": "6",
"labelKey": "name",
"showLabel": true
}
},
{
"type": "FeatureCollection",
"features": [],
"_umap_options": {
"displayOnLoad": true,
"browsable": true,
"remoteData": {
"url": "{{ .WebURL }}/photos.csv",
"format": "csv",
"dynamic": {{ .HasPhotos }},
"proxy": true,
"ttl": "3600"
},
"name": "Photos",
"iconClass": "Ball",
"popupShape": "Large",
"popupContentTemplate": "# [[{{ .WebURL }}/{photo}|Open in new tab]]\n{{`{{`}}{{ .WebURL }}/{photo}-thumb.jpg}}",
"id": 2700884,
"labelKey": "photo",
"showLabel": null
}
}
]
}