[android-developers] Re: How to display route on Google map in Android

2010-09-08 Thread cool.manish
One more query is, Is there API to find out Lat Long for a zipcode or
city name supported in android.

On Sep 8, 6:19 pm, cool.manish mannishga...@gmail.com wrote:
 Hi All,

 How to display route on Google map in Android in between two lat long
 value?
 Does android supports it and are there any api available as there are
 for displaying map?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to display route on Google map in Android

2010-09-08 Thread viktor
Use geonames.

On 8 Вер, 16:26, cool.manish mannishga...@gmail.com wrote:
 One more query is, Is there API to find out Lat Long for a zipcode or
 city name supported in android.

 On Sep 8, 6:19 pm, cool.manish mannishga...@gmail.com wrote:



  Hi All,

  How to display route on Google map in Android in between two lat long
  value?
  Does android supports it and are there any api available as there are
  for displaying map?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to display route on Google map in Android

2010-09-08 Thread viktor
 Geocoder geoCoder = new Geocoder(context);
 ListAddress addressList = geoCoder.getFromLocationName(address, 1);

where address contain street or city, or zip

For displaying rout you can use standard Android Map, only call it
with specific Intent

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to display route on Google map in Android

2010-09-08 Thread Mathias Lin
Here's a complete code sample:
http://stackoverflow.com/questions/3109158/how-to-draw-a-path-on-a-map-using-kml-file/3109723#3109723
HTH

On Sep 8, 9:19 pm, cool.manish mannishga...@gmail.com wrote:
 Hi All,

 How to display route on Google map in Android in between two lat long
 value?
 Does android supports it and are there any api available as there are
 for displaying map?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to display route on Google map in Android

2010-09-08 Thread cool.manish
Hi Victor,

Isn't Android Map display only Map.
Is it also display route for some partcular arguments?


On Sep 8, 8:17 pm, viktor victor.scherb...@gmail.com wrote:
  Geocoder geoCoder = new Geocoder(context);
  ListAddress addressList = geoCoder.getFromLocationName(address, 1);

 where address contain street or city, or zip

 For displaying rout you can use standard Android Map, only call it
 with specific Intent

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to display route on Google map in Android

2010-09-08 Thread Mathias Lin
MapView only displays a map, no method do draw a route is explicitly
in there. You use your custom method. Please see my link earlier in
this thread, it gives you a complete code sample.


On Sep 8, 11:42 pm, cool.manish mannishga...@gmail.com wrote:
 Hi Victor,

 Isn't Android Map display only Map.
 Is it also display route for some partcular arguments?

 On Sep 8, 8:17 pm, viktor victor.scherb...@gmail.com wrote:



   Geocoder geoCoder = new Geocoder(context);
   ListAddress addressList = geoCoder.getFromLocationName(address, 1);

  where address contain street or city, or zip

  For displaying rout you can use standard Android Map, only call it
  with specific Intent

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en