function initialize() {
var puntatore1 = L.marker([41.50722751109037, 13.834147453308105]).bindPopup('HOTEL ROCCA
Cassino(Frosinone)
Lazio'),puntatore2 = L.marker([41.76801490726254, 12.64251708984375]).bindPopup('GRAND HOTEL HELIO CABALA
Marino(Roma)
Lazio'),puntatore3 = L.marker([41.95612322951226, 12.482442855834961]).bindPopup('FLAMINIO VILLAGE
Roma(Roma)
Lazio'),puntatore4 = L.marker([41.793432480037154, 13.220420479774475]).bindPopup('SILVA HOTEL SPLENDID
Fiuggi(Frosinone)
Lazio'),puntatore5 = L.marker([42.41259584006015, 12.106331962005244]).bindPopup('NAZARETH RESIDENCE
Viterbo(Viterbo)
Lazio');
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: [42.41259584006015, 12.106331962005244],
zoom: 7,
layers: [streets, cities]
});
var baseLayers = {
"Streets": streets
};
var overlays = {
"Cities": cities
};
L.control.layers(baseLayers, overlays).addTo(map);
}