1
我正在研究從標記的MVCArray中拉取lat/lng的函數。該功能如下。但是,mapData數組中的每個對象都包含本地對象的原型以及lat/lng。我玩過hasOwnProperty,但沒有多少運氣。我在這裏做了明顯錯誤的事嗎?包含在數組中的對象原型
function prepareMarkers() {
var mapData = [];
// All we need from our markers list is the coordinates of the marker and title if it has one
markers.forEach(function(elem, index) {
mapData.push({
lat: elem.getPosition().lat(),
lng: elem.getPosition().lng()
});
});
return mapData;
}
是的,不知道我很擔心,感謝您的清晰度。 – Beor