On a mobile site I am trying to get city name from google location api with coordinates provided by html5 location api. Can i I request city name with coordinates? Code below doesn't get city name and fails on findloc() as I couldn't find out how to provide coordinates to google location api
<script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="https://www.google.com/jsapi?key=mykey" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function () {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(success, error);
} else {
alert('not supported');
}
});
function success(position) {
var lat = position.coords.latitude;
var lon = position.coords.longitude;
google.load("maps", "2", { callback: findloc });
}
function error(msg) {
alert('failed to get coordinates');
}
function findloc() {
if (google.loader.ClientLocation) {
alert(google.loader.ClientLocation.address.city);
}
else {
alert('fail');
}
}
</script>
can anoyne help?
thanks