Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am looking for a way to draw a route path on openstreetmap in my android app.
I only have the start and end points, however do not want just a straight line.
Any ideas on how I could do this?
For obtaining a route you can use one of the various online routers for OSM. Many of them offer a GPX export of the calculated route which you then can display in your application.
Have you looked at the Open Street Map wiki, including the Traveling Salesman example:
http://wiki.openstreetmap.org/wiki/Traveling_salesman
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm using the places API with Google Maps. I want that whenever I pick a country I am able to adjust the viewport to the size of the country.
Any idea on how to achieve this?
On the PlacesApi I can't get any information related to it (I guess)
I did a quick Google search and stumbled upon this stackoverflow answer:
It seems to answer your questions.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to get move direction accurately in my android app. using accelenometer and GPS I do not know how much it is possible to get by using accelenometer and GPS
please help me
Try reading tutorials in the android.developer website. You can begin from here
*Also try not to post questions that are incomplete and already answered. Happy coding .
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I understand I have to take latitudes and longitudes at a certain period of time using on location changed method but how will I draw a line between two points...
Thank you in advance
You can use this for drawing line between two points using maps v2:
https://developers.google.com/maps/documentation/android/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to develop an application with the use of offline map,But i have no any idea for doing the same, can anybody explain me how to integrate offline map in android for a particular country?
You have the option of using OpenStreet Map via osmdroid.
osmdroid is a (almost) full/free replacement for Android's MapView (v1
API) class. It also includes a modular tile provider system with
support for numerous online and offline tile sources and overlay
support with built-in overlays for plotting icons, tracking location,
and drawing shapes.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Is there any way to draw optimal route(considering traffic) between two geopoints using Android Google maps API?
Yes, but you'll need to do some work with the Google Maps API to get it going. Here's a link to a tutorial that explains how:
http://www.anddev.org/google_driving_directions_-_mapview_overlayed-t826.html
Alternatively you can just link from your app to the Maps app, and let Maps show the directions & route.
Launching Google Maps Directions via an intent on Android