gpt4 book ai didi

google-maps-api-3 - google.maps.MarkerShape 未加载

转载 作者:行者123 更新时间:2023-12-04 23:06:31 26 4
gpt4 key购买 nike

我正在尝试使用 google maps api(最后一个版本,3.9.2)创建一个 MarkerShape 对象。不幸的是,似乎没有加载 MarkerShape api:这是 firebug 的控制台向我显示的内容:

>>> google.maps.version

"3.9.2"

>>> google.maps.MarkerShape

undefined


难道我做错了什么 ? MarkerShape 的最新版 gmaps 文档在这里: https://developers.google.com/maps/documentation/javascript/reference#MarkerShape
谢谢
编辑:这是一个关于 jsfiddle 的例子: http://jsfiddle.net/vszHk/6/或者只是转到像这里这样的官方示例 https://google-developers.appspot.com/maps/documentation/javascript/examples/map-simple并打开 Firebug

最佳答案

我认为您的问题是您试图将 google.maps.MarkerShape 视为构造函数。它只是一个对象,而不是构造函数。

所以做类似以下的事情 错了因为 google.maps 对象中没有 MarkerShape 方法:

var marker_shape = new google.maps.MarkerShape(); 

要创建 MarkerShape,您只需创建一个对象文字:
var marker_shape = {coords: [0,0,50,50], type: "rect"}

然后,您可以将其添加到传递给 google.maps.Marker 构造函数的对象文字中。例如。
marker = new google.maps.Marker({
position: lat_lng_object,
map: map,
shape: marker_shape
});

关于google-maps-api-3 - google.maps.MarkerShape 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11000178/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com