Tagged Questions

2
votes
2answers
128 views

Google Maps InfoWindow open on Click outside of Map

All, I have the following code to add a marker: function addPoints( points ) { for ( var p = 0; p < points.length; ++p ) { var pointData = points[p]; if ( pointData == null ) return; ...
2
votes
3answers
2k views

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

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 ...
2
votes
2answers
1k views

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 ...
1
vote
1answer
150 views

Increase Google Map Info Window Size

I have a google map. And there's an information window. Now the size is standard and there r loads of texts inside. So, my boss asked me to increase it. We are useing ektron CMS and thus I need to ...
1
vote
2answers
513 views

Google Maps API V3 InfoBox using jQuery fadeIn and fadeOut

I have searched the web high and low and have not been able to find a tutorial or example of using jQuery to fade an Infobox/Infowindow in Google Maps not the content the actual box/window. Here is ...
0
votes
0answers
36 views

is it possible to display a countdown timer in infowindow of google map?

I use a countdown timer in the infowindow of a map. I tried most of countdown timer, then I used a tecnhique from http://keith-wood.name/countdown.html. I attached the image below.
0
votes
0answers
193 views

Google Maps API - marker.openInfoWindowHtml() is not working

I am using a version 2 api and I don't understand that why is it on opening the information window on click even though I have written the handler correctly.Following is my code. $ret .= ...
0
votes
4answers
1k views

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], ...
0
votes
5answers
11k views

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). ...