Jakobbbb
Jakobbbb

Reputation: 545

Different between Location and Geopoint in Android

Can anyone tell me whats the different is between Location and Geopoint in Android.

It seems that both is a Location with longitude and latitude.

Regards jakob

Upvotes: 0

Views: 314

Answers (1)

Gabe Sechan
Gabe Sechan

Reputation: 93678

They're different classes. Location is used by the base Android gps and network location API. Geopoint is used by Google Maps. They both encapsulate the same idea (a location in latitude and logitude) but have a different api and are used by different libraries.

Upvotes: 2

Related Questions