7

我正在尝试使用Google Maps Utility Library v3在 Google 地图上进行聚类标记的基本实现。

但是,当我运行此程序时,我在 Chrome 开发人员工具控制台上收到错误消息:

Uncaught TypeError: Object #<Object> has no method 'getPosition'

这与此处的实用程序库脚本中的第 649 行有关:http: //google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer.js。这是以下功能:

/**
 * Determins if a marker is contained in a bounds.
 *
 * @param {google.maps.Marker} marker The marker to check.
 * @param {google.maps.LatLngBounds} bounds The bounds to check against.
 * @return {boolean} True if the marker is in the bounds.
 * @private
 */
MarkerClusterer.prototype.isMarkerInBounds_ = function(marker, bounds) {
  return bounds.contains(marker.getPosition());
};

我使用的代码是相当标准的谷歌地图的东西,其主要功能是:

function initialize(items,loop,zoom) {
  geocoder = new google.maps.Geocoder();
  if (items.length > 0) {
    var latlng = new google.maps.LatLng(items[0].Lat, items[0].Lng);
    var myOptions = {
      zoom: zoom,
      center: latlng,
      //mapTypeControl: false,
      streetViewControl: false,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    map = new google.maps.Map(document.getElementById("map"), myOptions);
    map.setOptions({styles: stylez});

    for (var i = 0; i < items.length; i++) {
      var marker = new google.maps.Marker({
        position: new google.maps.LatLng(items[i].Lat, items[i].Lng),
        title: items[i].Title,
        icon: _iconCenter,
        shadow: shadow,
        infocontent: items[i].Description
      });
      marker.setMap(map);
      markersArray.push(marker);
    }
    var markerCluster = new MarkerClusterer(map, items);
    google.maps.event.addListener(map, "tilesloaded", function () {
      if(loop == true){
        SetLoop();
      }
    });
  }
}

据我所知,我已经追溯了错误函数,它应该接收地图边缘的坐标以便能够确定边界,这应该只是标准行为,但显然有些不对劲。

我想知道是否有人可以对此有所了解?

谢谢各位大侠指点...

4

2 回答 2

5

事实证明,我在 google maps 脚本之前声明了 markerclusterer 脚本。调用地图脚本首先解决了它......现在很明显!

于 2012-08-15T12:21:44.423 回答
4

MarkerClusterer 需要一组标记。您创建一个,但将 items 数组传递给它的构造函数。改变:

var markerCluster = new MarkerClusterer(map, items);

到:

var markerCluster = new MarkerClusterer(map, markersArray);
于 2012-08-15T11:57:16.377 回答