使用Javascript v3 API向Google Map添加多个点

soy*_*nte 15 javascript google-maps-api-3

我已经被困在这几天了.我在使用Javascript API的v3向地图添加多个点时遇到问题.

我读了这个帖子这个帖子以及SO上的这个帖子,我发现了一些错误并做了一些修改,但除了HTML文本之外,我仍然无法显示任何内容map_canvas.

任何帮助深表感谢.谢谢.

当前代码迭代:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script> 
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> 
<script type="text/javascript"> 
    $(document).ready(function() { initialize(); });

    function initialize() {
        var map_options = {
            center: new google.maps.LatLng(33.84659,-84.35686),
            zoom: 14,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

        var google_map = new google.maps.Map(document.getElementById("map_canvas"), map_options);

        var info_window = new google.maps.InfoWindow({
            content: 'loading'
        });

        var t = [];
        var x = [];
        var y = [];
        var h = [];

        t.push('Location Name 1');
        x.push(33.84659);
        y.push(-84.35686);
        h.push('<p><strong>Location Name 1</strong><br/>Address 1</p>');

        t.push('Location Name 2');
        x.push(33.846253);
        y.push(-84.362125);
        h.push('<p><strong>Location Name 2</strong><br/>Address 2</p>');

        var i = 0;
        for ( item in t ) {
            var m = new google.maps.Marker({
                map:       google_map,
                animation: google.maps.Animation.DROP,
                title:     t[i],
                position:  new google.maps.LatLng(x[i],y[i]),
                html:      h[i]
            });

            google.maps.event.addListener(m, 'click', function() {
                info_window.setContent(this.html);
                info_window.open(map, this);
            });
            i++;
        }
    }
</script> 
<div id="map_canvas" style="width:400px;height:400px;">Google Map</div> 
Run Code Online (Sandbox Code Playgroud)

nra*_*itz 16

问题出在这里:

info_window.open(map, this);
Run Code Online (Sandbox Code Playgroud)

它应该是:

info_window.open(google_map, this);
Run Code Online (Sandbox Code Playgroud)

因为这里没有变量命名map.这里的工作版本:http://jsfiddle.net/nrabinowitz/2DBXY/

如果您还没有这样做,请尝试使用Firebug或Chrome控制台之类的工具 - 调试Javascript几乎是不可能的.