function initialize() {
var puntatore1 = L.marker([42.100838, 13.807561]).bindPopup('COMO
Raiano(L\'Aquila)
Abruzzo'),puntatore2 = L.marker([42.312589, 13.452911]).bindPopup('LA VALLE DELL\'AQUILA
L\'Aquila(L\'Aquila)
Abruzzo'),puntatore3 = L.marker([41.80478192751495, 13.78458023071289]).bindPopup('HOTEL PAGNANI
Pescasseroli(L\'Aquila)
Abruzzo'),puntatore4 = L.marker([42.337719, 13.423091]).bindPopup('IL FIENILE
L\'Aquila(L\'Aquila)
Abruzzo');
	var cities = L.layerGroup([puntatore1,puntatore2,puntatore3,puntatore4]);
	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.337719, 13.423091],
		zoom: 9,
		layers: [streets, cities]
	});
	var baseLayers = {
		"Streets": streets
	};
	var overlays = {
		"Cities": cities
	};
	L.control.layers(baseLayers, overlays).addTo(map);
}