• User Attivo

    Inserire Marker a Google Maps

    Salve a tutti, ho un sito da modificare con una Google Maps già inclusa, dovrei inserire anche il Marker ma non ci riesco. Le ho provate di tutte, ho trovato diversi esempi ma sono tutti diversi da questa. Potreste darmi una mano, sono poco pratico nello scripting.
    Grazie! 🙂

    Ecco il codice della Mappa nel dettaglio:

    [HTML]<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
    <script>
    var map,
    geocoder,
    address = 'Via, Citta, etc';
    function initialize() {
    var map_canvas = document.getElementById('map-canvas');
    if (map_canvas) {
    geocoder = new google.maps.Geocoder();
    geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
    if (map == null) {
    var mapOptions = {
    zoom: 10,
    center: results[0].geometry.location
    };
    map = new google.maps.Map(map_canvas, mapOptions);
    }
    else {
    map.setCenter(results[0].geometry.location);
    }
    } else {
    console.log('Geocode was not successful for the following reason: ' + status);
    }
    });
    }
    }

                           google.maps.event.addDomListener(window, 'load', initialize);        
    

    </script>[/HTML]