vondip
vondip

Reputation: 14039

How can I highligh roads in android gps

I'm trying my strength in developing an application in android and I have the following question:

My android device comes with a built in google map (oddly enough it's called maps). I'd like to develop on top of that platform. The requirements are:

Does android's map support it? If not, is there any platform (free or commercial) that will make such a thing possible?

Thank you very much~!

Upvotes: 0

Views: 330

Answers (1)

Peter Knego
Peter Knego

Reputation: 80340

  1. Read basic Google Maps tutorial. For transforming street names to geo-locations and back use Geocoder.

  2. AFAIK there is no route calculation functionality in Google Maps for Android. Furthermore, live route calculations for navigation are not allowed by Google Maps terms of service, article 8.7.

    For alternative approach take a look at: J2ME/Android/BlackBerry - driving directions, route between two locations

Upvotes: 2

Related Questions