I am trying to get the driving direction between the two positions:
LatLng(12.917745600000000000,77.623788300000000000)
LatLng(12.842056800000000000,7.663096499999940000)
The code which i have tried:
Polyline line = mMap.addPolyline(new…
In the JSON output, there is a field "maneuver" within a "step". In this "turn-left", "turn-right", "turn-slight-left", etc. Example is here
Where could I find the definition of the "maneuver" field, and the list of possible values? There is no…
I am new to the Google Maps API (3.0). I would like to get stopover cities based on a direction query to the Maps API and did not find any documentation on this specific topic so…
Documentation says that waypoints limit is 8 points. But I have to find best waypoints order list from more than 50 waypoints. How to do that?
I am able to find waypoints order by using Start + Destination + 8 Waypoints But I need help for more than…
I am building an app that can open the Maps app with directions from the user's current position to another position. The code looks like this:
- (id)resolveDirectionsFromCoordinate:(CLLocationCoordinate2D)startCoordinate…
I'm using Google Maps JS API to search for nearby places, i.e. restaurants based on my LatLng :
var request = {
location: myLocation,
rankBy: google.maps.places.RankBy.DISTANCE,
types: ['bar', 'cafe', 'food', 'liquor_store',…
I am using this class to display a route on a map. The problem is that it only displays one route. What I want to do is display multiple alternate routes on the map. Even thought the server response has multiple routes, it only parses the first…
How do we get the shortest distance route from point A to B by default from Google Direction API suggested alternative routes? By default it gives us shortest duration routes depending upon the current traffic conditions. I have noticed that google…
I am using the following url to get driving directions from google maps.
http://maps.google.com/maps?f=d&hl=en&saddr=location1&daddr=location2&ie=UTF8&0&om=0&output=kml
I am getting only one route in my KML file. But when we searched same locations…
I am trying to build web app where you input your address and it will give you list of bus stops in your area. I want to use Google Maps for this, but i can't find the way to use them for this. Is there any way to get list of points on maps in, lets…
Right, so I'm currently using the Google Directions API in my app to retrieve the route between two locations.
When I send a request for a route directions, I retrieve a number of details in JSON regarding the route including the names of every road…
I want to make an Android App that loads a map that I have created of the inside of a building. I want it to provide directions between one room to another. And between floors if possible.
I would like the map to be zoomable, and clickable too. i.e.…
I am getting this error when trying to search a place on map. I tried other resolutions when searching, but no luck.
java.lang.IllegalStateException: no included points
on this line: LatLngBounds.Builder builder = new LatLngBounds.Builder();
The…
I am new to android. I want to draw routes between multiple markers. I a, getting latitude, longitude and datetime from server. Now i want to show route between the points. I have stored them in arraylist. Here is how i am getting the points in…