Tagged Questions
2
votes
2answers
97 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
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
109 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 ...
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
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).
...