openinfowindowhtml

Google Maps API - GMarker.openInfoWindowHtml() stopped working

I have a Google Map that suddenly stopped working for no apparent reason (I hadn't touched the code for months, but the wrapper code from our CMS may have changed without Corporate telling me). http://www.democratandchronicle.com/section/builder (sorry about the nasty HTML outside the map, most of that comes from our corporate parent.....

Google Maps API--Can't get info window data to load properly

I have this code that generates markets I want to be clickable with a pop up info window. for (i = 0; i < marker_array.length; i++) { var point = new GLatLng(marker_array[i][0], marker_array[i][1]); var marker = new GMarker(point, markerOptions); GEvent.addListener(marker, "click", function() { marker.openInfoWindowH...

How to force the GInfoWindow to shorten its tail?

In my Google Maps application, which is supposed to be run on mainly on iPhones, hence the 480/320 window resolution, I am displaying some "stuff" in the GInfoWindow information bubbles. The problem is that, sometimes the bubble is too filled with contents that it doesn't fit onto the screen quite the way I'd like it to. Here's an examp...

Google maps infowindow height problem.

I've been searching the net for a solution. My problem is that the info window's height is not calculated properly. There are no images in there so it is not an issue with the image loading later and the size is not known when the bubble is created. Also if I fill it up with about 15 lines more text the size is starting to get alright....

Google maps : How to open an InfoWindow for a Polygon by clicking on it?

Hello ! I have a simple question, but i can't find the answer in the Google Maps API documentation... I have a map with 13 polygons drawed by the API. Here is an exemple of one of these polygons : var zone_up_montblanc = new GPolygon([ new GLatLng(46.21270329318585, 6.134903900311617), new GLatLng(46.20538443787925, ...

Google maps - info window closing with a timer

Hi guys, im having a little problem with the Google API maps, i was wondering if anyone could help. I am trying to get infowindows to open with some HTML in containing a HREF. Now i could use the "X" to close the window however id prefer a second method of a Javascript timer to close the info windows as shown below.. setTimeout('infowi...