我使用google maps api将地图拉入phonegap应用。地图效果很好,但我正在尝试设置自定义标记,并遵循以下内容:https://developers.google.com/maps/documentation/javascript/overlays#Icons
在设置图像的位置,代码使用“锚点”设置。这是javascript中的保留字,如果它留在代码中,则javascript失败。
我如何解决这个问题?
var image = {
url: 'images/beachflag.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(20, 32),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 32)
};
答案 0 :(得分:1)
因为什么时候锚定一个保留字?其次,如果您使用保留字作为对象中的键,只需将它们放在引号中,如
{
'anchor': new google.maps.Point(0,32)
}