У меня есть некоторый код JavaScript в зависимости от геолокации.
http://jsfiddle.net/8D6vz/
var myLat = 0.0;
var myLng = 0.0;
function setCurrentPosition(position) {
myLat = position.coords.latitude;
myLng = position.coords.longitude;
}
function errorOccured() {
document.write("sorry, error occured :( ");
}
$(function() {
navigator.geolocation.getCurrentPosition(setCurrentPosition, errorOccured);
document.write(myLat + " " + myLng);
});
Однако, этот код просто производит
0 0
вместо
"client's latitude here" "client's longitude here"
Почему?
Я использую Google Chrome, который наверняка поддерживает геолокацию. Я также позволил своему браузеру отслеживать мое местоположение.