title , , .
InfoWindow, , :
map.data.addListener('click', function (event) {
if (areaInfoWindow != null) {
areaInfoWindow.close();
areaInfoWindow = null;
}
areaInfoWindow = new google.maps.InfoWindow({
content: event.feature.getProperty('name'),
position: event.latLng
});
areaInfoWindow.open(map);
});
, mouseover mouseout , , ...
, InfoWindow, - HTML - DIV? - .