function initialize() {
var puntatore1 = L.marker([43.613981, 10.291451]).bindPopup('ORCHIDEA MARINA
Pisa(Pisa)
Toscana'),puntatore2 = L.marker([43.598792264018755, 10.782394409179688]).bindPopup('AGRITURISMO LA PALAZZINA
Palaia(Pisa)
Toscana'),puntatore3 = L.marker([43.31454063371569, 10.631226537017824]).bindPopup('RESIDENCE VILLA ELENA
Guardistallo(Pisa)
Toscana'),puntatore4 = L.marker([, ]).bindPopup('CAMPING VILLAGE TORRE PENDENTE
Pisa(Pisa)
Toscana'),puntatore5 = L.marker([43.51274765766324, 10.798904999986105]).bindPopup('TENUTA I MANDORLI
Peccioli(Pisa)
Toscana');
var cities = L.layerGroup([puntatore1,puntatore2,puntatore3,puntatore4,puntatore5]);
var mbAttr = 'Map data © OpenStreetMap contributors, ' +
'CC-BY-SA, ' +
'Imagery © Mapbox',
mbUrl = 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw';
var streets = L.tileLayer(mbUrl, {id: 'mapbox/streets-v11', tileSize: 512, zoomOffset: -1, attribution: mbAttr});
var map = L.map('mappabasso', {
center: [43.51274765766324, 10.798904999986105],
zoom: 9,
layers: [streets, cities]
});
var baseLayers = {
"Streets": streets
};
var overlays = {
"Cities": cities
};
L.control.layers(baseLayers, overlays).addTo(map);
}