使用jQuery动态添加Google Map V3 Markers

时间:2011-10-21 03:24:07

标签: javascript jquery ajax google-maps google-maps-api-3

我正在使用jquery和Google Maps V3 API动态添加标记到Google地图。单击按钮search_button时,将使用AJAX将请求发送到服务器,AJAX将返回与结果相对应的LatLng JSON数组,该数组将用于放置标记。但是在我的Javascript Conole中,我收到错误:Invalid value for property <map>: map。我哪里做错了?这是我的代码:

HTML标头JS:

<script type="text/javascript">
  function initialize() {
  var latlng = new google.maps.LatLng(42.354183,-71.065063);
  var options = {
    zoom: 15,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), options);
}
</script>

的jQuery

$(function() {

$("#search_button").click(function(e){
    e.preventDefault();


        // Place markers on map
        for( i = 0; i < json.length; i++) {
            var latLng = new google.maps.LatLng(json[i].lat, json[i].lng);
            var marker = new google.maps.Marker({
                position: latLng,
                map: map
            });
        }

    });
});
});

1 个答案:

答案 0 :(得分:20)

你应该将你的变量称为map。这就是全部,实际上我建议将所有内容移动到像这样的javascript文件

    $(document).ready(initialize);
    var map;

function initialize() {
    var latlng = new google.maps.LatLng(42.354183,-71.065063);
    var options = {
        zoom: 15,
        center: latlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    map = new google.maps.Map($('#map-canvas')[0], options);

    $("#search_button").click(function(e){
    e.preventDefault();


        // Place markers on map
        for( i = 0; i < json.length; i++) {
            var latLng = new google.maps.LatLng(json[i].lat, json[i].lng);
            var marker = new google.maps.Marker({
                position: latLng,
                map: map
            });
        }

    });
}