forked from bellingcat/avoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration_google.js.sample
105 lines (105 loc) · 2.56 KB
/
configuration_google.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
self.configuration = {
language: "en",
// In order to use one of the providers, a valid API key must be provided.
apiKeys: {
google: "GOOGLE_MAPS_API_KEY",
},
// Quick links are dynamically 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
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: "YandexMaps",
category: "🗺️ Maps",
url: "https://yandex.com/maps/?l=pht&ll=$lng,$lat&z=10",
},
{
name: "ShadeMap",
category: "🗺️ Maps",
url: "https://shademap.app/@$lat,$lng,15z",
},
{
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: [
{
provider: "google",
type: "aerial",
heading: 0,
},
{
provider: "google",
type: "birdseye",
heading: 0,
},
{
provider: "google",
type: "birdseye",
heading: 90,
},
{
provider: "google",
type: "birdseye",
heading: 180,
},
{
provider: "google",
type: "birdseye",
heading: 270,
},
{
provider: "google",
type: "street",
heading: 0,
},
],
};