function initialize() {
var puntatore1 = L.marker([45.725071810885574, 12.253854274749756]).bindPopup('HOLIDAY LA MARCA
Villorba(Treviso)
Veneto'),puntatore2 = L.marker([45.62733415423001, 12.375712394714355]).bindPopup('CASTELLO DI RONCADE
Roncade(Treviso)
Veneto'),puntatore3 = L.marker([45.666830582637665, 12.2407865524292]).bindPopup('MAISON MATILDA
Treviso(Treviso)
Veneto');
	var cities = L.layerGroup([puntatore1,puntatore2,puntatore3]);
	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: [45.666830582637665, 12.2407865524292],
		zoom: 9,
		layers: [streets, cities]
	});
	var baseLayers = {
		"Streets": streets
	};
	var overlays = {
		"Cities": cities
	};
	L.control.layers(baseLayers, overlays).addTo(map);
}