0
 <script type="text/javascript"
      src="http://maps.googleapis.com/maps/api/js?key=MYKEYHERE&sensor=false">
    </script>
    <script type="text/javascript">



var simplerweb = new google.maps.LatLng(55.977046,-3.197118);
var marker;
var map;






      function initialize() {
        var myOptions = {
          center: new google.maps.LatLng(55.977046,-3.197118),  
          disableDefaultUI: true,
          zoom: 15,
           scrollwheel: false,
    navigationControl: false,
    mapTypeControl: false,
    scaleControl: false, 
    draggable: false,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"),
            myOptions);
  marker = new google.maps.Marker({
    map:map,
    draggable:true,
    animation: google.maps.Animation.DROP,
    position: andrewmorris,
    icon: 'http://www.andrewsmorris.co.uk/images/point.png' 
  });
  google.maps.event.addListener(marker, 'click', toggleBounce);
}





function toggleBounce() {

  if (marker.getAnimation() != null) {
    marker.setAnimation(null);
  } else {
    marker.setAnimation(google.maps.Animation.BOUNCE);
  }
}


    </script>

所以我不明白为什么这在我的新网站上不起作用,在我的旧网站上运行良好。

我倾倒在一个名为 map_canvas 的 div 中

它应该有效,对吧?谷歌地图 API 设置为允许来自该 URL 的引荐。

4

1 回答 1

0

只要您拥有正确的密钥,它就应该可以正常工作。

您是否仔细检查过您是否在 html 正文中调用了initialize() ,例如

<body onload="initialize()">
    <div id="map_canvas" style="width:100%; height:100%"></div>
</body>

您的标记图像的链接也已失效。

于 2013-01-16T08:34:11.150 回答