0

重複の可能性:
json with google geocoding api
json Uncaught SyntaxError: Unexpected token :

$.getJSON('http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=true&callback=?', function(data) {
    console.log(data);
});

それは私にこのエラーを与えます:Uncaught SyntaxError: Unexpected token :

4

1 に答える 1

0

サポートされていない google maps から JSONP 応答を取得しようとしています。

代わりにこれを試してください。

<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>

<script>  
    $(function(){   
        var geocoder = new google.maps.Geocoder();
        var latlng = new google.maps.LatLng(40.714224,-73.961452);
        geocoder.geocode(
            {latLng  : latlng }, 
            function(dataObject, statusObject) {
                console.log(dataObject);
            }
        );
    });
</script>
于 2012-06-30T10:09:38.057 に答える