navigator.geolocation.getCurrentPosition is working in the sense that I am able to get the latitude and longitude values when I do position.coords.latitude, position.coords.longitude.
However, when I try to access the position.address object to extract street, city, country information (i.e. position.address.street), the position.address object is always null.
Is there anything I need to do in my javascript code to have position.address populated? Below is my code:
function getLoc(){
if (navigator.geolocation) {
// Use method getCurrentPosition to get coordinates
navigator.geolocation.getCurrentPosition(
function(position) {
// Access them accordingly
alert("Latitude: " + position.coords.latitude + ", Longitude: " + position.coords.longitude);
if (position.address == null) {
alert("Address object is null.");
} else {
alert("Approx streetNumber: " + position.address.streetNumber);
alert("Approx street: " + position.address.street);
alert("Approx city: " + position.address.city);
alert("Approx country: " + position.address.country);
}
},
function errorCallback(error) {
switch(error.code)
{
case error.TIMEOUT:
alert ('Timeout');
break;
case error.POSITION_UNAVAILABLE:
alert ('Position unavailable');
break;
case error.PERMISSION_DENIED:
alert ('Permission denied');
break;
case error.UNKNOWN_ERROR:
alert ('Unknown error');
break;
}
},
{
requestAddress:true,
enableHighAccuracy:true,
maximumAge:30000,
timeout:50000
}
);
}
}
position.addressrequires at least the Gecko engine in version 1.9.2 (Firefox 3.6 / Thunderbird 3.1 / Fennec 1.0) or higher. developer.mozilla.org/en/Using_geolocation – Andreas Nov 18 '11 at 23:08