-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
Sorry at first for my poor grammar.
I am writing a program in Java using geogoogle (Google Geocoder Java API) http://geo-google.sourceforge.net/
I need from two specific points to get the walking directions between these points and also these info to be exported in a KML file.
Do you know how…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a list of points with x, y coordinates. I know how to get the distance between points with sqrt(pow($x2 - $x1, 2) + pow($y2 - $y1, 2)) and the angle between points with atan2(y1 - y2, x1 - x2).
How can I calculate the relative angle between the points (left, right, straight)? So, if I'm at…
>>> More
-
as seen on Tech Dreams
- Search for 'Tech Dreams'
Summary: Wondering how to print driving directions on new version of Google Directions as there is no print icon on maps home page? Its buried under layers and you can access it by searching for required directions first and then click on List all steps to see Print icon on top right section.
The…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
I just started working using Google Maps API yesterday, and trying to set up drive directions to my map. My problem is: when I call the function load,
[...]
gdir = new GDirections(map, directionsPanel);
[...]
gdir.load("from: " + fromAddress + " to: " + toAddress);
it returns a map whose…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to mimic the functionality in Google Maps on Android. When you press the directions option on the options menu, and it shows "My Location, End Point" on top of the map and dims the map. Is that running in a separate activity, or is that somehow a modal dialog on top of the map?
>>> More