Skip to content

Instantly share code, notes, and snippets.

@thampiman
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thampiman/9536279 to your computer and use it in GitHub Desktop.
Save thampiman/9536279 to your computer and use it in GitHub Desktop.
@Override
public void onLocationChanged(Location location) {
double lat = location.getLatitude();
double lon = location.getLongitude();
float accuracy = location.getAccuracy();
// Perform operations on latitude, longitude and accuracy
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment