2019-07-19 14:36:21 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
export default {
|
2019-07-22 14:46:07 +00:00
|
|
|
ai_index_file: "ais/index.json",
|
|
|
|
|
|
|
|
// The default location to show on the map when loading the page.
|
2019-07-31 11:15:37 +00:00
|
|
|
default_location: [ 53.76203, -0.35162 ],
|
2019-07-22 14:46:07 +00:00
|
|
|
// The default zoom level to use when loading the page.
|
|
|
|
default_zoom: 12,
|
2019-07-23 12:49:45 +00:00
|
|
|
|
|
|
|
// The border around gateways that we should consult the AI on.
|
2019-07-25 13:02:16 +00:00
|
|
|
border: {
|
2019-07-25 15:44:26 +00:00
|
|
|
lat: 0.1,
|
|
|
|
lng: 0.2
|
2019-07-25 13:02:16 +00:00
|
|
|
},
|
2019-07-23 12:49:45 +00:00
|
|
|
|
|
|
|
// The resolution of the coverage map
|
2019-07-25 13:02:16 +00:00
|
|
|
step: {
|
2019-07-31 13:05:27 +00:00
|
|
|
lat: 0.0015,
|
|
|
|
lng: 0.003,
|
2019-07-25 13:02:16 +00:00
|
|
|
},
|
2019-07-23 14:45:29 +00:00
|
|
|
|
|
|
|
colour_scale: {
|
2019-07-31 13:05:27 +00:00
|
|
|
min: "rgba(255, 255, 255, 0.9)",
|
|
|
|
max: "#00ff00"
|
2019-07-23 14:45:29 +00:00
|
|
|
}
|
2019-07-19 14:36:21 +00:00
|
|
|
};
|