-2

我的代码:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script type="text/javascript" src="jquery.ui.map.full.min.js"></script>
    <script>
      function initialize() {
          $('#map_canvas').gmap().bind('init', function() { 
    // This URL won't work on your localhost, so you need to change it
    // see http://en.wikipedia.org/wiki/Same_origin_policy
    $.getJSON( 'demo.json', function(data) { 
        $.each( data.markers, function(i, marker) {
            $('#map_canvas').gmap('addMarker', { 
                'position': new google.maps.getLatLng(marker.town), 
                'bounds': true 
            }).click(function() {
                $('#map_canvas').gmap('openInfoWindow', { 'content': marker.content }, this);
            });
        });
    });
});
      }
    </script>

为什么 google.maps.getLatLng 不起作用?

更新:

$('#map_canvas').gmap('addMarker', { geocoder = new google.maps.Geocoder(); 'position': new google.maps.LatLng(geocoder.getLatLng(marker.town)), 'bounds': true })

如何根据城镇名称找到纬度和经度?我刚刚尝试了以上没有结果。

4

1 回答 1

3

为什么 google.maps.getLatLng 不起作用?

您在文档中哪里可以找到它?

google.maps.LatLng构造函数的正确语法是:

new google.maps.LatLng(<latitude>, <longitude>)

哪里<latitude><longitude>是数字

要获取邮政地址的地理坐标,您需要使用geocoder

于 2012-12-07T14:28:33.847 回答