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 ?!

link|improve this question

60% accept rate
feedback

1 Answer

Firstly you will need to calculate the middle/center of the polyline. This has been discussed and answered here; http://stackoverflow.com/a/9090409/787921

Then you will have to open the infowindow;

var infowindow = new google.maps.InfoWindow({
             content: "infowindow text content"});
infowindow.position = midLatLng;
infowindow.open(map);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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