mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-01 03:32:59 +00:00
Starbeamrainbowlabs
e86032c847
Looks like https://www.npmjs.com/package/leaflet-heatmap is a good place to look for a replacement
16 lines
419 B
JavaScript
16 lines
419 B
JavaScript
"use strict";
|
|
|
|
export default {
|
|
// The url of api.php. Can be relative.
|
|
api_root: "../api.php",
|
|
// The default location to show on the map when loading the page.
|
|
default_location: [ 53.76203,-0.35162 ],
|
|
// The default zoom level to use when loading the page.
|
|
default_zoom: 12,
|
|
|
|
// The size, in metres, of the blobs on the heatmap.
|
|
heatmap_blob_size: 5000,
|
|
|
|
heatmap_opacity: 0.75,
|
|
heatmap_alpha_range: 0.5
|
|
}
|