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 mapsInfoWindow(polyline, content) {
    google.maps.event.addListener(polyline, 'click', function(event) {            
        infowindow.content = content;
        infowindow.position = event.latLng;
        infowindow.open(map);
    });
}

the problem comes when I click on the list(using the same function for that), event obviously doesn't have the latLng, but I'd like infowindow to show up in the middle of the polyline anyway, just like it does when you click on the list in the google maps link I mentioned before.

Tried LatLngBounds(); but that gives the actuall center of the area the polylines create, not the middle I need.

Any idea how to do it?

link|improve this question

I have no ready-to-use solution, but here is the clue: (rbrundritt.wordpress.com/2008/10/14/…) It would be appreciated if you post your solution as answer. Cheers. – confused-demon Oct 19 '11 at 10:08
Was really mainly wondering whether the api itself can help with it.. apparently it doesn't. I'll look into that link, thanks. – foxx Oct 19 '11 at 11:14
gis.stackexchange.com/questions/2128/… more clues – foxx Oct 19 '11 at 11:24
I think that it was meant to be some middle point in a polyline, rather than centroid of a polygon. It is not the same. – confused-demon Oct 19 '11 at 11:55
And, furthemore. I'm trying to maintain extensions for gmaps v3, your code for google.maps.Polyline.getMidPoint() would be useful. If you'll code it, of course :) – confused-demon Oct 19 '11 at 11:59
feedback

3 Answers

up vote 1 down vote accepted

So this is the(bit hacky) solution.

Use http://www.geocodezip.com/scripts/v3_epoly.js library, then count the total length of you polyline(various ways), divide it in half and call epoly's .GetPointsAtDistance() function upon it.

This should return LatLng point, but it acts a bit weird sometimes, returning two points or even turning that point somehow "broken". So the most secure thing you can do is probably this:

var pointInHalf = polyline.GetPointsAtDistance(polylineLength);
var pointCoordinate = new google.maps.LatLng(pointInHalf[0].lat(), pointInHalf[0].lng());

Well, better than nothing.

link|improve this answer
feedback

From http://www.geocodezip.com/v3_polyline_example_geodesic_proj.html

Without extensions and assuming the polyline is a straight line.

It is possible to convert the lat/lng coordinates to point plane (x,y) postions and calculate the average between the two. This is will give a central pixel position. You can then convert this position back to a latlng for map plotting.

var startLatLng = startMarker.getPosition(); 
var endLatLng = endMarker.getPosition(); 
var startPoint = projection.fromLatLngToPoint(startLatLng); 
var endPoint = projection.fromLatLngToPoint(endLatLng); 
// Average 
var midPoint = new google.maps.Point( 
    (startPoint.x + endPoint.x) / 2, 
    (startPoint.y + endPoint.y) / 2); 
// Unproject 
var midLatLng = projection.fromPointToLatLng(midPoint); 
var midMarker = createMarker(midLatLng, "text");

More information on changing the projection http://code.google.com/apis/maps/documentation/javascript/reference.html#Projection

link|improve this answer
it's far from a straight line.. g.co/maps/vfb9n – foxx Feb 3 at 12:23
Then try wording your question a little better. – Shane Best Feb 4 at 23:08
The very same link I just gave you is in the first post as well ;) it's also pointed out in most of the other post that it's not a straight line img62.imageshack.us/img62/2145/nonot.png – foxx Feb 7 at 9:19
feedback

So firstly you need to use the geometry library which calculates distances. Add libraries=geometry to your JS call, e.g.

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"></script>

Assuming you know the start point and end point for your polyline, you should be able to do this:

var inBetween = google.maps.geometry.spherical.interpolate(startLatlng, endLatlng, 0.5);  
infowindow.position = inBetween;

I guess if you don't already know the start and end points, you could work it out from polyline.getPath().

link|improve this answer
Nope, that's exactly the same as using the LatLngBounds().. perhaps that (centroid?) confused you? img62.imageshack.us/img62/2145/nonot.png – foxx Oct 19 '11 at 22:57
..and if I actually wanted to do this, not sure which would be better, this requires you to include another library, the LatLngBounds() on the other hand requires you to collect an array of all the latLngs and call a getCenter() function upon it, hard to say which is more effecient :) – foxx Oct 19 '11 at 23:16
I don't understand your screenshot – duncan Oct 20 '11 at 8:39
Look at this g.co/maps/fvm62 click on "Běžecká stopa Mílovská" on the left side, look where the infowindow appear, I want it to appear there as well, but using your code, or the LatLngBounds, it appears there img62.imageshack.us/img62/2145/nonot.png – foxx Oct 20 '11 at 8:50
try using computeLength() and pass it the full path of your polyline – duncan Oct 20 '11 at 9:02
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.