你好,我不明白爲什麼我得到這個錯誤。'myFunction不是函數',JS和Google Maps v 3?
我有一個輸入列表,其中包含緯度/長/名稱/地址的輸入。
在地圖上打印標記時工作正常,使用infowin workED罰款,直到我意識到它只在所有窗口中打開相同的信息。很明顯,我需要附加this
(我剛剛點擊的標記)到eventListner。
但是,當這樣做時,我得到一個錯誤,說view.createMarkerHTML is not a function
。
問題:我應該如何在正確的標記上附上要打開的正確信息?
view = {
map: {
init: function init(){
view.map.initMap();
},
initMap: function initMap() {
if(navigator.geolocation) {
function hasPosition(position) {
var point = new google.maps.LatLng(position.coords.latitude, position.coords.longitude),
myOptions = {
zoom: 12,
center: point,
mapTypeId: google.maps.MapTypeId.ROADMAP
},
mapDiv = document.getElementById("map"),
map = new google.maps.Map(mapDiv, myOptions);
view.map.handleMarkers(map);
}
navigator.geolocation.getCurrentPosition(hasPosition);
}
},
handleMarkers: function handleMarkers(map) {
var list = $('#pois input'),
l = list.length,
i = 0, lat = '', long = '', marker = {}, theName = '', address = '', info = {};
for (i = 0; i < l; i += 1) {
info = $(list[i]).val().split('|');
lat = parseFloat(info[0], 10);
long = parseFloat(info[1], 10);
theName = info[2];
address = info[3];
marker = new google.maps.Marker({
position: new google.maps.LatLng(lat, long),
map: map,
icon: icon
});
google.maps.event.addListener(marker, 'click', function() {
currentMarker = this;view.map.createMarkerHTML(map, theName, address);
});
}
} ,
createMarkerHTML: function createMarkerHTML(map, theName, address) {
var contentString =
'<div id="gMapInfoWin">' +
'<h1>' + theName + '</h1>' +
'<ul>' +
'<li>' + address + '</li>' +
'</ul>' +
'</div>'
;
currentMarker.infowindow = new google.maps.InfoWindow({
content: contentString
});
currentMarker.infowindow.open(map, currentMarker);
}
}
};
我沒有在任何地方看到'view',這個問題很難回答。對於踢,雖然,嘗試'view.map.createMarkerHTML(地圖,theName,地址);' – 2010-10-22 09:35:45
尼克,你應該張貼作爲答案,因爲這是答案。 – patad 2010-10-22 09:44:29
當然它是view.map.function()我完全忘記了地圖對象。嘿嘿,盯着自己的代碼很容易。非常感謝。 – patad 2010-10-22 09:45:45