Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a problem with google maps. When place marker, to set lat, lng and zoom level to hidden fields, lat and lng works, but zoom doesn't.

I tried with marker.map.getZoom(), but still nothing.

Here is my code:

var map,
    map_container = document.getElementById("map"),
    mapLat = document.getElementById("mapLat"),
    mapLng = document.getElementById("mapLng"),
    markersArray = [],
    adresa;

var marker = {
    init : function() {
        var latlng = new google.maps.LatLng(44, 20);

        var myOptions = {
            zoom: 6,
            center: latlng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        }

        map = new google.maps.Map(map_container, myOptions);

        google.maps.event.addListener(map, "click", function(event) {
            marker.placeMarker(event.latLng);
            mapLat.value = event.latLng.lat();
            mapLng.value = event.latLng.lng();
        });

    },

    placeMarker : function(location) {
        marker.deleteMarkers();

        var map_marker = new google.maps.Marker({
            position: location,
            map: map
        });

        markersArray.push(map_marker);

        console.log(map.GetZoom());

        $('#mapZoom').val(map.GetZoom());

    },

    deleteMarkers : function() {
        if (markersArray) {
            for (i in markersArray) {
                markersArray[i].setMap(null);
            }
            markersArray.length = 0;
        }
    }
}

how can i fix this ? Thanks.

share|improve this question
1  
What javascript errors do you get? GetZoom() and getZoom() are different things (javascript is case sensitive), your posted code uses GetZoom() which is not part of the Google Maps API v3. – geocodezip Aug 24 '12 at 20:49
I just saw it now, it was GetZoom, but need getZoom.. thanks – Mirza Delic Aug 25 '12 at 0:11

1 Answer

up vote 3 down vote accepted

GetZoom() and getZoom() are different things (javascript is case sensitive), your posted code uses GetZoom() which is not part of the Google Maps API v3.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.