Skip to content

Instantly share code, notes, and snippets.

@ghostcode
Created July 13, 2014 22:54
Show Gist options
  • Save ghostcode/bbbe63f1009d6c0b514d to your computer and use it in GitHub Desktop.
Save ghostcode/bbbe63f1009d6c0b514d to your computer and use it in GitHub Desktop.
Web Mobile 获取地理位置

使用GeoLocation API获取地理位置:

navigator.geolocation.getCurrentPosition(GetLocation);
function GetLocation(location) {
    alert(location.coords.latitude);
    alert(location.coords.longitude);
    alert(location.coords.accuracy);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment