-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.js.sample
32 lines (25 loc) · 972 Bytes
/
config.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
const config = {
sigfoxApiUser: "yourSigfoxApiUser",
sigfoxApiPassword: "yourSigfoxApiPassword",
sigfoxApiSite: "api.sigfox.com",
publicMapPath: "/v2/tiles/public-coverage",
monarchMapPath: "/v2/tiles/monarch",
https: true,
//---- For MapBox background map
backgroundMapType: "Basic",
backgroundMap: "https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}.png?access_token={yourToken}"
//---- For Jawg background map
//backgroundMapType: "Basic",
//backgroundMap: "http://tile.jawg.io/jawg-light/{z}/{x}/{y}.png?access-token={yourToken}"
//---- For HERE background map
//backgroundMapType: "Here",
//hereAppId: "{yourAppId}",
//hereAppCode: "{yourAppCode}"
//---- For Bing background map
//backgroundMapType: "Bing",
//bingKey: "{yourBingKey}"
//---- For Google background map
//backgroundMapType: "Google",
//googleToken: "{yourToken}"
};
module.exports = config;