Questions tagged [openinfowindowhtml]
16 questions
10
votes
5 answers
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 zone_up_montblanc = new GPolygon([
new…

legibe
- 552
- 2
- 6
- 19
8
votes
6 answers
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 my code, I'm not sure what I'm doing wrong, but…

intheblue25
- 201
- 2
- 7
2
votes
1 answer
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 mouseover info boxes to work...i have search but can't…

Steven Humphrey
- 31
- 1
- 6
2
votes
2 answers
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;
var point = new GLatLng( pointData.latitude,…

user1048676
- 9,756
- 26
- 83
- 120
2
votes
2 answers
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…

Peter Perháč
- 20,434
- 21
- 120
- 152
2
votes
0 answers
IE8 doesnt show open in new tab or window in context menu for anchor
Well, I have a menu that has a structure similar to
this link…
... and there in the page are other links like

Juan Jo
- 882
- 2
- 8
- 17
1
vote
1 answer
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 go into ektron workarea and edit map.js
Even if it…

william
- 7,284
- 19
- 66
- 106
1
vote
5 answers
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…

ceejayoz
- 176,543
- 40
- 303
- 368
1
vote
0 answers
javascript inside InfoWindow
I'm having this issue
I would like to open an InfoWindow to which I set a given html content as a string
but it happens that this html content has some JavaScript functions that needs to be executed when the HTML is rendered inside the…

Jose Avalis
- 11
- 2
1
vote
3 answers
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…

phalasz
- 13
- 1
- 4
0
votes
2 answers
google map - jquery window problem
When i click on marker always show the same data... why?
code:
function load()
{
var dialog = $('
').dialog({autoOpen:false});
var map = new google.maps.Map(document.getElementById("map"),
{
center: new…

Andrew
- 2,128
- 3
- 24
- 42
0
votes
1 answer
Add style for parent element
I want to write style for the parent element of the child class .gm-style .gm-style-iw. I used :parent as well but it is not working. These two class are dynamically appear in the DOM.
I am stuck here. Please help.

Swati
- 51
- 6
0
votes
4 answers
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,…

Evan
- 2,983
- 8
- 31
- 35
0
votes
1 answer
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 the window however id prefer a second method of a…

Lee
- 5,816
- 6
- 45
- 61
0
votes
1 answer
Auto-panning map so that infowindow is fully visible
i am setting marker to place center of screen when it click event is trigger by user from google map. but the issue arrived that info window content is not fully visible within view port as u can see in picture below. How can i Auto-panning map by…

Jd Akram
- 47
- 5