3

Well the question is in the title.

How can i obtain GPS location on a mobile device in Android Webkit or/and Opera Mobile 10?

So in iPhone Safari this is doable. How about those 2 browsers? I looked for such functionalities and found nothing. Is that doable via javascript as well?

1 Answers1

3

see http://html5demos.com/geo. Relevant bit of JS for HTML5 location:

if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(successCallback, errorCallback);
} else {
  error('not supported');
}

yep, it's that easy.

Yoni Samlan
  • 37,905
  • 5
  • 60
  • 62