我想从客户端获取地理位置,然后按 Ajax 加载位置,然后将它们显示到列表中。
我有FunctionsgetGeolocation
和.loadLocation
createList
getGeolocation
并且loadLocation
是异步函数,所以我需要回调或使用延迟对象。我在互联网上搜索了几个小时,但我仍然不明白如何处理这个问题的语法。
我知道可以loadLocations
在success
函数和函数createList
中调用,afterResponse
但我想在几个地方调用这个函数,所以它不是我的选择。
var lat = 0;
var long = 0;
var locations;
getGeolocation();
loadLocations();
createList();
$('#map').live("pageshow", function() {
google.maps.event.trigger(map, 'resize');
});
function getGeolocation(){
console.log("getGeolocation");
if (navigator.geolocation) {
// getCurrentPosition ruft die Funktion success auf und übermittelt die Position Werte
// error wird ausgeführt wenn es einen Fehler beim ermitteln der Position gibt
navigator.geolocation.getCurrentPosition(success, error);
} else {
alert("GeoLocation API ist NICHT verfügbar!");
}
}
function success(position) {
console.log("success");
lat = position.coords.latitude;
long = position.coords.longitude;
}
function error(msg) {
console.log(typeof msg == 'string' ? msg : "error");
}
function loadLocations(){
console.log("loadLocations");
return $.ajax({
type: "GET",
url: "http://www.example.at/api/getLocationsByGeodata_JSON",
success: afterResponse,
/*beforeSend: showPreloader,*/
data: {lat : lat, long: long},
dataType: 'json'
});
}
function afterResponse(response_objekt) {
console.log("afterResponse");
console.log(response_objekt['results']);
locations = response_objekt['results'];
}