編輯︰它現在可以工作,但不會加載如果用戶不允許或具有基於位置的服務。查看jsfiddle示例的已接受答案評論。Google Maps API(v3)添加/更新標記
我已經看過了幾個教程和問題,但我無法安靜地瞭解發生了什麼(或在這種情況下,沒有發生)。當用戶點擊鏈接時,我正在加載我的地圖。這會將用戶當前位置放置在中心的地圖以及用戶位置的標記。但是,if (navigation.location)
之外的任何標記似乎都不會加載。以下是我當前的代碼:
function initialize() {
// Check if user support geo-location
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var point = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
var userLat = position.coords.latitude;
var userLong = position.coords.longitude;
var mapOptions = {
zoom: 8,
center: point,
mapTypeId: google.maps.MapTypeId.HYBRID
}
// Initialize the Google Maps API v3
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
// Place a marker
new google.maps.Marker({
position: point,
map: map,
title: 'Your GPS Location'
});
});
} else {
var userLat = 53;
var userLong = 0;
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(userLat, userLong),
mapTypeId: google.maps.MapTypeId.HYBRID
}
// Place a marker
new google.maps.Marker({
position: point,
map: map,
title: 'Default Location'
});
// Initialize the Google Maps API v3
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
}
<?
for ($i = 0; $i < sizeof($userLocations); $i++) {
?>
var userLatLong = new google.maps.LatLng(<? echo $userLocations[$i]['lat']; ?>, <? echo $userLocations[$i]['long']; ?>);
new google.maps.Marker({
position: userLatLong,
map: map,
title:"<? echo $userLocations[$i]['displayName'] . ', ' . $userLocations[$i]['usertype']; ?>"
});
<?
}
?>
}
function loadMapScript() {
if (typeof(loaded) == "undefined") {
$("#showMap").css("display", "none");
$("#showMapLink").removeAttr("href");
$("#map").css("height", "600px");
$("#map").css("width", "600px");
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://maps.googleapis.com/maps/api/js?key=MY_API_KEY&sensor=true&callback=initialize";
document.body.appendChild(script);
loaded = true;
} else {
alert("Map already loaded!");
}
}
loadMapScript()在用戶單擊鏈接時調用。 php for循環通過預先創建的數組與所有信息進行循環。
我猜我不完全理解,因爲當如果我把:
var userLatLong = new google.maps.LatLng(53, 0);
new google.maps.Marker({
position: userLatLong,
map: map,
title:"Title"
});
到控制檯(谷歌瀏覽器),我得到的錯誤:
Error: Invalid value for property <map>: [object HTMLDivElement]
我不噸,但是,否則會得到任何錯誤。任何幫助將非常感激! :)
如何調用loadMapScript()? –
當用戶點擊的鏈接'loadMapScript()' –