0
我無法弄清楚如何使用W3C GeoLocation API來查看用戶的位置。最簡單的方法是什麼?我只需要更新用戶的經度和緯度。使用W3C GeoLocation API的watchPosition函數
我無法弄清楚如何使用W3C GeoLocation API來查看用戶的位置。最簡單的方法是什麼?我只需要更新用戶的經度和緯度。使用W3C GeoLocation API的watchPosition函數
我剛剛在一個項目中使用了它,我使用Ben Nadel's blogpost和API本身來解決它。
navigator.geolocation.watchPosition(function(position){
// These variables update every time the location changes
var Latitude = position.coords.latitude;
var Longitude = position.coords.longitude;
}, function(error){
// You can detect the reason and alert it; I chose not to.
alert('We could not get your location');
},{
// It'll stop looking after an hour. Enabling high accuracy tells it to use GPS if it's available
timeout: 5000,
maximumAge: 600000,
enableHighAccuracy: true
});
希望這會有所幫助!
如果你已經有一些代碼給我們看,請提供它。 – XIII