1

我试图实例化 google.maps.Icon,

var icon = new google.maps.Icon({
    anchor:new google.maps.Point(0,0),
    origin:new google.maps.Point(0,0),
    scaledSize: new google.maps.Size(10,10),
    size: new google.maps.Size(10,10),
    url:"http://maps.google.com/mapfiles/kml/paddle/purple-square.png"
});

但我得到了错误,

Uncaught TypeError: undefined is not a function 
4

2 回答 2

11

我无法让它工作:什么是构造接口`google.maps.Icon`示例

对我来说,它适用于匿名对象:

    var image = {url: 'https://developers.google.com/maps/documentation/javascript/examples/images/beachflag.png',
        size: new google.maps.Size(20, 32),
        origin: new google.maps.Point(0,0),
        anchor: new google.maps.Point(0, 32)};

      var marker = new google.maps.Marker({
          position: myLatLng,
          map: map,
          icon: image,
      });

文档中的示例

带有图标的示例

代码片段:

function initialize() {
  var mapOptions = {
    zoom: 10,
    center: new google.maps.LatLng(-33.9, 151.2),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById('map_canvas'),
    mapOptions);

  setMarkers(map, beaches);
}

/**
 * Data for the markers consisting of a name, a LatLng and a zIndex for
 * the order in which these markers should display on top of each
 * other.
 */
var beaches = [
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.923036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 151.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.259302, 1]
];

function setMarkers(map, locations) {
  // Add markers to the map

  // Marker sizes are expressed as a Size of X,Y
  // where the origin of the image (0,0) is located
  // in the top left of the image.

  // Origins, anchor positions and coordinates of the marker
  // increase in the X direction to the right and in
  // the Y direction down.
  var image = {
    anchor: new google.maps.Point(16, 32),
    origin: new google.maps.Point(0, 0),
    scaledSize: new google.maps.Size(32, 32),
    size: new google.maps.Size(64, 64),
    url: "http://maps.google.com/mapfiles/kml/paddle/purple-square.png"
  };

  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
      position: myLatLng,
      map: map,
      icon: image,
      title: beach[0],
      zIndex: Math.round(myLatLng.lat() * -100000) << 5
    });
  }
}

google.maps.event.addDomListener(window, 'load', initialize);
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#map_canvas {
  height: 100%;
}
@media print {
  html,
  body {
    height: auto;
  }
  #map_canvas {
    height: 650px;
  }
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="map_canvas"></div>

于 2013-02-04T04:27:20.307 回答
4

google.maps.Icon 是一个 Javascript 对象文字,而不是一个类。直到 5 分钟前,当我试图解决同样的问题时,我才知道这一点。

谷歌地图 API 文档:

https://developers.google.com/maps/documentation/javascript/overlays#ComplexIcons

举一个从不推荐使用的 MarkerImage (v3.9) 转换为 Icon (v3.10+) 的示例

var image = new google.maps.MarkerImage(
    place.icon,
    new google.maps.Size(71, 71),
    new google.maps.Point(0, 0),
    new google.maps.Point(17, 34),
    new google.maps.Size(25, 25));

变成

var image = {
    url: place.icon,
    size: new google.maps.Size(71, 71),
    origin: new google.maps.Point(0, 0),
    anchor: new google.maps.Point(17, 34),
    scaledSize: new google.maps.Size(25, 25)
};

所以艾伦(和我)试图使用一个new google.maps.Icon()不存在的构造函数。只需删除该文本离开var icon = {<list of properties>};,一切都应该工作。

谷歌 API 参考:

https://developers.google.com/maps/documentation/javascript/reference#Icon

并没有使这很明显。

我还自学了对象文字 - 你可以在 mozilla 找到解释 - 搜索 javascript 对象文字 - 我无法发布链接,因为这是我在堆栈交换上给出的第一个答案,我需要更多点来添加两个以上的链接!

于 2013-09-30T05:55:56.847 回答