Questions tagged [infowindow]

The InfoWindow is a standard class within the Google Maps JavaScript API; it is an overlay that displays content in a floating window above the map and is anchored at a specified location on the map.

The InfoWindow is a standard class within the Google Maps JavaScript API; it is an overlay that displays content in a floating window above the map. An info window looks like a comic-book word balloon; it has a content area, a tapered stem, and the tip of the stem is anchored at a specified location on the map.

Questions that are assigned to this tag should deal directly with InfoWindow creation, placing content within an InfoWindow, styling the content within an InfoWindow, displaying or hiding InfoWindows, or managing InfoWindows on a Google Map.

Google has published some very good material for those that want to learn more about InfoWindows:

1150 questions
6
votes
1 answer

How to add info window for clustering marker in android?

I would like to show an info window with an image for all markers in Android. I referred to this Google Map Cluster Tutorial.
Deva
  • 150
  • 2
  • 2
  • 17
6
votes
1 answer

Include open infowindows within bounds of map, when using fitbounds

I have a map which contains multiple markers with infowindows. The infowindows need to be open on page load. The map is being centered using setbounds to incorporate all of the markers, which works, but it also needs to include the infowindows…
Dan
  • 5,836
  • 22
  • 86
  • 140
6
votes
3 answers

Google Maps API v3 adding multiple markers w/ info windows w/ custom text

I am making a website over cyclists killed in Norway. For my project I have been using google maps api v3, but I have vague familiarity with javascript. You can see my result so far here: http://salamatstudios.com/googlemapstest/ Basicly I want to…
Nader S
  • 63
  • 1
  • 1
  • 4
6
votes
1 answer

Google Maps Android API v2 - InfoWindow with clickable buttons

I'm trying to put multiple buttons inside an GoogleMaps InfoWindos. I know that: "Info window is not a live View, rather the view is rendered as an image onto the map. As a result, any listeners you set on the view are disregarded and you cannot…
JACF
  • 117
  • 1
  • 5
5
votes
4 answers

markerclusterer info windows

Let me say I am still fairly new to google maps and javascript. i've been mixing together the google store locator tutorial with some other stuff. So far, I am using marker clusterer plus (link), basically the same as marker clusterer for google…
5
votes
2 answers

InfoWindow on Marker using MarkerClusterer

This is my html code. I've try anything to add an infowindow on the markers but it don't wanna work. My data is loading from the "Alle_Ortswahlen.page1.xml" file. Do anyone have an idea how can I add infoWindow to each marker?
user846290
  • 147
  • 1
  • 2
  • 10
5
votes
1 answer

Google maps API V3 - DirectionsRendererOptions and custom content in InfoWindow

I am trying to implement a map/direction based application using Google maps V3 API. So far I have been able to display the map and show directions for two locations selected. However I am unable to set custom content on the InfoWindow using…
indit
  • 305
  • 1
  • 5
  • 11
5
votes
2 answers

How to stop Google Maps closeclick event propagation

I have a click event binded on an element which contains a Google Map. When the user close an InfoWindow on the map clicking on the cross, the click event is fired and propagate all over the DOM. I want to stop this event propagation, so the…
Fla
  • 536
  • 6
  • 23
5
votes
3 answers

Hide shadow on infowindow in Google Map API V3

I want to hide the shadow on infowindow in Google Map API V3. I try to access the Floatshadow pane but I don't know how to do it.
Xasun
  • 267
  • 4
  • 16
5
votes
1 answer

Multiple polylines and infowindows with Google Maps V3

I have a map with multiple polylines and would like to open a line-specific-infowindow when clicking the line. So far my code only shows the content of the last iteration. I found two very nice examples of what I want but after hours of trying I am…
Christian Loncle
  • 1,584
  • 3
  • 20
  • 30
5
votes
4 answers

How to get image in infoWindow on Google Maps with glide - Android

I'm developing application using google map. and I need custominfowindow that has two of text, and image source. it's my infocontents() code. using firebase, Google map, Glide but it's does not work plz help. @Override public View…
wacki
  • 73
  • 1
  • 7
5
votes
1 answer

How to make google map multiple marker's infowindow stays opened android

I want to make the info Window opened on a marker to stay opened even when another marker is pointed on google map. here's my code. private void drawMarker(LatLng point, String pLoc){ // Creating an instance…
Sachin K Pissay
  • 683
  • 1
  • 11
  • 21
5
votes
1 answer

Google Maps v3 InfoWindow Too Wide

In Google Maps v3, I can't seem to get my infoWindow to a width smaller than 200px. Here is the code I'm using: var latlng = new google.maps.LatLng(-34.397, 150.644); var myOptions = { zoom: 15, center: latlng, mapTypeId:…
ryan
  • 2,311
  • 3
  • 22
  • 28
5
votes
1 answer

Angular google map window directive with templateParameter attribute

I'm using Angular-google-map library to show markers with windows like this :
5
votes
0 answers

iOS: Dynamic Marker Info Window

I'm trying to dynamically load an image into an infowindow. The issue is that SDWebImage doesn't ever complete. However, once I click the marker again the image shows and complete is called but never on the first time. My log for "run" shows on the…
user577732
  • 3,956
  • 11
  • 55
  • 76