1. Home >
  2. Documentation >
  3. Overlays >
  4. infowindow
 

infowindow

This function allows to add an infowindow

Usage

Parameters

Example

$("#test1").gmap3({
  infowindow:{
     address:"Pourrieres, France",
     options:{
       content: "Hello World !"
     },
     events:{
       closeclick: function(infowindow){
         alert("closing : " + infowindow.getContent());
       }
     }
  }
});
Close