function initMap() {
// Opzioni per la mappa
var mapOptions = {
zoom: 15,
center: {lat: 41.887, lng: 12.466} // Coordinate di Trastevere, Roma
};
// Creazione della mappa
var map = new google.maps.Map(document.getElementById(‘map’), mapOptions);
// Array di luoghi del tour
var tourStops = [
{location: {lat: 41.8871, lng: 12.4664}, title: ‘Piazza Mastai – Inizio del Tour’},
{location: {lat: 41.8894, lng: 12.4698}, title: ‘Biscottificio Innocenti’},
{location: {lat: 41.8899, lng: 12.4707}, title: ‘Tagliere: Il re della Porchetta Iacozzilli’},
{location: {lat: 41.8879, lng: 12.4720}, title: ‘Supplì Venanzio Rosticceria’},
{location: {lat: 41.8870, lng: 12.4670}, title: ‘Alice Pizza San Calisto’},
{location: {lat: 41.8869, lng: 12.4671}, title: ‘Bar San Calisto’},
{location: {lat: 41.8872, lng: 12.4672}, title: ‘Gelato Fonte della Salute’},
{location: {lat: 41.8871, lng: 12.4664}, title: ‘Ritorno a Piazza Mastai’}
];
// Creazione dei marker per ogni tappa del tour
tourStops.forEach(function(stop) {
var marker = new google.maps.Marker({
position: stop.location,
map: map,
title: stop.title
});
});
}
// Ricorda di includere lo script di Google Maps API nel tuo HTML con la tua chiave API
//
info@topromestreetfood.com
Mobile: +39 3519787984