Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
141 views

Google Maps 3 Redraw Polyline Flickering

I am drawing a Polyline with a fairly large number of lat/lng points (~ 1000). I have two sliders (start and end) that allow the user to adjust the time bounds which then updates the Polyline to show ...
2
votes
2answers
122 views

How to decode the Google Directions API polylines field into lat long points in objective-C for iPhone?

I want to draw routes on a map corresponding to directions JSON which I am getting through the Google Directions API: http://code.google.com/apis/maps/documentation/directions/ I have figured out ...
2
votes
2answers
204 views

Google maps api parallel path lines

I am working on a sort of itinerary mapper for packaged vacations, and I'm really happy with what I've done so far; I have the directions api implemented with a custom renderer, so I can take driving ...
2
votes
3answers
210 views

google maps middle of a polyline (centroid?)

I have a list of polylines, just like google maps does when I click on the polyline I want an infowindow to show up just where I clicked, and it works just fine with this function function ...
1
vote
1answer
41 views

goMap jquery plugin. Creating a polyline with coords held in JSON file

Good afternoon, im trying to pass the coordinates for 2 separate polylines from an array, so far the array gets populated from the coordinates held in the JSON file, its just I cant seem to then use ...
1
vote
1answer
73 views

Editable polyline connecting every point in Google Maps API V3

I am trying to draw editable polyline that connects all points I click on using Google Maps API V3. For example, after clicking on 4 different points on the map there should be 6 lines connecting all ...
1
vote
1answer
72 views

How to put a infowindow on polyline in Google Maps v3?

I want to know how to show infowindow on polyline in using Google Maps Api V3? and to appear in the middle of the polyline ?!
0
votes
4answers
93 views

Merging multiple encoded polylines into one encoded polyline

Long story short, I'm trying to merge a new encoded polyline with an existing polyline without decoding and reencoding the whole polyline. The new encoded polyline will be uploaded to a (linux) server ...
0
votes
0answers
46 views

How to find Polyline intersection with Google Maps JavaScript API V3?

I have two segments in my Google Map each one represented as a Polyline with just one path. Is there any nice way to find the intersection point? I have googled and stackedoverfloued it for two days ...
0
votes
1answer
43 views

Polyline Error Line

Hi guys I have a Google Maps and the coordinates are pulled via parse XML data. This script was based on econym's site I am using V3 of Google Maps. Now the thing is I was able to display the markers ...
0
votes
2answers
168 views

Iterating through a JSON file to display multiple polylines

I am trying to render a map with multiple polylines that are pulled from an external JSON resource. Each JSON record has a number of descriptive fields as well as a field containing an array of ...
0
votes
1answer
66 views

How to display Google Maps with both Markers and Polylines?

I can create a map that displays Polylines and a map that can display Markers, but I can not get them to show on one map. I need a basic map with two different coloured polylines and custom markers ...
0
votes
0answers
97 views

fitbounds for google maps api v3 doesn't center on my polylines

I want to be able to center zoom on all my polylines for my site. Also, I'd like to add markers to each of these new coordinate pairs. I've seen lots of examples for multiple markers and multiple ...
0
votes
1answer
82 views

Best practice to find if a coordinate is in a given polyline?

For a navigation app, i need to detect when the user deviated from a given driving path(represented as a list of coordinates), so what i want to do is whenever i get a new location update for the ...
0
votes
0answers
396 views

How to change polyline markers in drawing manager?

I test a new drawing library and has led me to question how to get from drawing manager polyline position and set another markers? As in this example: polyline-complex. My example: <!DOCTYPE ...
0
votes
0answers
38 views

Why long Google Maps V3 polyline doesn't appear on OpenstreetMap layer?

Sorry to re-post the question, but I want to activate it again The question is "Why long Google Maps V3 polyline doesn't appear on OpenstreetMap layer ?" original question
0
votes
1answer
187 views

How to draw a polyline with many points in Google Maps ( and appear the polyine)?

Why when I want to draw a polyline using Google maps V3.0 (JavaScript API) which has many points (more than about 7 points) the ployline doesn't appear , despite when trying to draw a plolyine with a ...
0
votes
0answers
133 views

How to draw a polyline in Google Maps V3 API based on street data?

I'm looking to create a polyline on Google maps by just passing Google a street name. Google would then highlight the entire street within that city. I know how to create polylines in general by ...
0
votes
1answer
91 views

Encode the polyline of latitude and longitude to ascii value

anyone can have code to encode the polyline(array of ) latitude and longitude value to the ascii string in java for e.g. my array was in java latlng{ {22296401,70797251}, {22296401,70797451}, ...