- Home >
- Documentation >
- Overlays >
- infowindow
infowindow
This function allows to add an infowindow
Usage
Parameters
- options {google.maps.InfoWindowOptions}
- open {bool} Open the InfoWindow (optional)
- anchor {Marker} Marker to associate the infowindow with (optional)
Example
$("#test1").gmap3({ infowindow:{ address:"Pourrieres, France", options:{ content: "Hello World !" }, events:{ closeclick: function(infowindow){ alert("closing : " + infowindow.getContent()); } } } });