Example usage for com.google.gwt.maps.client.base InfoWindow setContent

List of usage examples for com.google.gwt.maps.client.base InfoWindow setContent

Introduction

In this page you can find the example usage for com.google.gwt.maps.client.base InfoWindow setContent.

Prototype

@Override
    public void setContent(String html) 

Source Link

Usage

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;
}