Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
94 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
2answers
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
105 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
443 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 ...
1
vote
1answer
1k views

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 ...
0
votes
1answer
27 views

google maps api v3 multiple jumping location marks with info window

My goal is create a map with multiple locations with a map that jumps from marker to marker when a html tag was click elsewhere on the page i made the jumps work but, i can't seem to get the ...
0
votes
0answers
32 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
175 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
0answers
238 views

Need infobox instead of infowindow

Where am I wrong in this code? http://kuponik.adriamart.com/phpsqlajax_map_v3.html I want an infobox instead of infowindow but I don't know where I went wrong. Also i want to know how to add ...
0
votes
2answers
216 views

google map - jquery window problem

When i click on marker always show the same data... why? code: function load() { var dialog = $('<div>').dialog({autoOpen:false}); var map = new ...
0
votes
1answer
308 views

Google maps - info window closing with a timer

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