forked from bellingcat/avoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.js.sample
176 lines (176 loc) · 5.19 KB
/
configuration.js.sample
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
self.configuration = {
/**
* Available languages: en, fr, es, pt, it, de, pl
*/
language: "en",
/**
* In order to use one of the providers, a valid API key must be provided.
*/
apiKeys: {
google: "",
azure: "",
bing: "",
mapbox: "",
},
/**
* Quick links are dinamically generated, and can be added freely.
* Syntax:
* https://website.tld/path/$lat,$lng
* Parameters:
* - $lat: latitude of the current position
* - $lng: longitude of the current position
* - precision: number of floating digits for $lat and $lng (optional)
*/
shortcuts: [
{
name: "Twitter Media",
category: "📱 Social Media",
url: "https://twitter.com/search?q=geocode:$lat,$lng,1km&f=media",
},
{
name: "Youtube Geofind",
category: "📱 Social Media",
url: "https://mattw.io/youtube-geofind/location?location=$lat,$lng&radius=5&pages=3&doSearch=true",
},
{
name: "Flickr Map",
category: "📱 Social Media",
url: "https://www.flickr.com/map?&fLat=$lat&fLon=$lng3&zl=14",
},
{
name: "WikiLoc",
category: "📱 Social Media",
url: "https://www.wikiloc.com/wikiloc/map.do?sw=$lat,$lng",
},
{
name: "MarineTraffic",
category: "🛬 Transport",
url: "https://www.marinetraffic.com/en/ais/home/centerx:$lng/centery:$lat/zoom:13",
precision: 3,
},
{
name: "FlightRadar",
category: "🛬 Transport",
url: "https://www.flightradar24.com/$lat,$lng/10",
precision: 2,
},
{
name: "OpenRailwayMap",
category: "🛬 Transport",
url: "https://www.openrailwaymap.org/?style=standard&lat=$lat&lon=$lng&zoom=14"
},
{
name: "Apple Maps",
category: "🗺️ Maps",
url: "https://beta.maps.apple.com/?ll=$lat%2C$lng&q=%20&t=k"
},
{
name: "YandexMaps",
category: "🗺️ Maps",
url: "https://yandex.com/maps/?l=pht&ll=$lng,$lat&z=10"
},
{
name: "PeakVisor",
category: "🗺️ Maps",
url: "https://peakvisor.com/panorama.html?lat=$lat&lng=$lng",
precision: 7,
},
{
name: "ShadeMap",
category: "🗺️ Maps",
url: "https://shademap.app/@$lat,$lng,15z"
},
{
name: "SunCalc",
category: "🗺️ Maps",
url: "https://www.suncalc.org/#/$lat,$lng,15/null/null/null/1",
precision: 4,
},
{
name: "EO Browser",
category: "🗺️ Maps",
url: "https://apps.sentinel-hub.com/eo-browser/?zoom=15&lat=$lat&lng=$lng"
},
{
name: "Wigle",
category: "🗺️ Maps",
url: "https://wigle.net/map?maplat=$lat&maplon=$lng&mapzoom=17"
},
{
name: "Liveuamap - Ukraine",
category: "📰 Liveuamap",
url: "https://liveuamap.com/?zoom=10&ll=$lat,$lng"
},
{
name: "Liveuamap - Israel/Palestine",
category: "📰 Liveuamap",
url: "https://israelpalestine.liveuamap.com/?zoom=10&ll=$lat,$lng"
},
{
name: "Liveuamap - Iran",
category: "📰 Liveuamap",
url: "https://iran.liveuamap.com/?zoom=10&ll=$lat,$lng"
},
{
name: "Liveuamap - USA",
category: "📰 Liveuamap",
url: "https://usa.liveuamap.com/?zoom=10&ll=$lat,$lng"
},
{
name: "Ventusky",
category: "⛅ Weather",
url: "https://www.ventusky.com/?p=$lat;$lng;11",
precision: 3,
},
{
name: "NASA Wildfires",
category: "⛅ Weather",
url: "https://firms.modaps.eosdis.nasa.gov/map/#d:24hrs;@$lng,$lat,13.00z"
}
],
/**
* Screens can be changed and added freely, from 2 to 7 maximum.
* - provider: [google, azure, bing, mapbox]
* - type: [aerial, birdseye, street]
* - heading: 0 to 359 (optional)
*
* Go over to the README file to check which types are supported by each provider.
*/
screens: [
{
provider: "azure",
type: "aerial",
heading: 0,
},
{
provider: "google",
type: "birdseye",
heading: 0,
},
{
provider: "mapbox",
type: "birdseye",
heading: 90,
},
{
provider: "google",
type: "birdseye",
heading: 180,
},
{
provider: "bing",
type: "birdseye",
heading: 270,
},
{
provider: "bing",
type: "street",
heading: 0,
},
{
provider: "google",
type: "street",
heading: 0,
}
]
};