List of usage examples for com.google.gwt.maps.client.base InfoWindow setContent
@Override
public void setContent(String html)
From source file:es.uem.geoparser.client.view.MapViewImpl.java
License:Apache License
@Override public HasInfoWindow createInfoWindow(String content) { final InfoWindow infoWindow = new InfoWindow(); infoWindow.setContent(content); return infoWindow; }