12 lines
340 B
JavaScript
12 lines
340 B
JavaScript
|
export function mapInit(){
|
||
|
const coordsPiazzaMaggiore = [44.49385, 11.34316]
|
||
|
|
||
|
var map = L.map('map').setView(coordsPiazzaMaggiore, 13);
|
||
|
|
||
|
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||
|
maxZoom: 19,
|
||
|
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
||
|
}).addTo(map);
|
||
|
|
||
|
return map;
|
||
|
}
|