我想在这段代码中使用 getPosition 方法:
alert("Tap location in this map");
google.maps.event.addListener(map, 'click', function(event) {
mArray[count] = new google.maps.Marker({
position: event.latLng,
map: map
});
});
mArray[count].getPosition();
但我不能调用 getPosition。
Uncaught TypeError: Cannot call method 'getPosition' of undefined
count
是一个全局变量。
var count=0;
var mArray = [];
有人可以解释一下吗?