You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
872 B
24 lines
872 B
// function init_leaflet_map() |
|
// { |
|
// mapL = L.map('map-view', { |
|
// center: [37.541627365379, 25.175245212016], |
|
// zoom: 7 |
|
// }); |
|
// let baseLayer = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { |
|
// attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors', |
|
// crs: L.CRS.EPSG4326 |
|
// }).addTo(mapL); |
|
// _map_config_object = new _config_init_map(); |
|
// // hide spinner after base map loads |
|
// baseLayer.on('load', function(event) { |
|
// document.getElementById('spinner').classList.add('is-hidden'); |
|
// }) |
|
// // hide attribution |
|
// document.getElementsByClassName( 'leaflet-control-attribution' )[0].style.display = 'none'; |
|
// mapL.pm.addControls({ |
|
// position: 'topleft', |
|
// drawCircle: false, |
|
// }); |
|
// |
|
// L.control.scale().addTo(mapL); |
|
// }
|
|
|