user3549948
user3549948

Reputation: 13

What should I use for real-time geocoding: Google APIs or Android APIs?

I'm in a very early stage of developing an android app that needs to make constant updates on the location of the user (near-exactly lat and long) while walking on the street. I'm not exactly sure if there is a class or method in Android that can help me (GPS?), or if I have to user something external, like Google Maps API (like geocoder).

So that's the question, Android can update my location or should i need the help of Google?

EDIT: I won't use this data to display it on a Google Map interface.

Upvotes: 1

Views: 488

Answers (1)

Clive Seebregts
Clive Seebregts

Reputation: 2024

The Android framework provides a location API - see Location Services and Location Strategies for more information.

To answer your question: Android can update your location.

Upvotes: 1

Related Questions