3

I want to get latitude and longitude in my android application. Please provide me a code for my android application to get latitude and longitude with out using internet..thanks

Sangeeta Rawat
  • 199
  • 1
  • 1
  • 15

1 Answers1

2

Well, you have GPS Provider and Network Provider.

Without internet you can use only GPS Provider

Here is snippets of code:

private final float MIN_DISTANCE = 6; // 6 meters

LocationManager locationManager = (LocationManager) 
                          m_context.getSystemService(Context.LOCATION_SERVICE);
locationManager.addGpsStatusListener(this);


LocationListener listener = this;   

    locationManager.requestLocationUpdates
           (LocationManager.GPS_PROVIDER, 0, MIN_DISTANCE, listener);

...

      public void onLocationChanged(Location location) {
    /* your code  */
}
Maxim Shoustin
  • 77,483
  • 27
  • 203
  • 225