Example usage for com.google.gwt.maps.client MapWidget setMapTypeId

List of usage examples for com.google.gwt.maps.client MapWidget setMapTypeId

Introduction

In this page you can find the example usage for com.google.gwt.maps.client MapWidget setMapTypeId.

Prototype

public final void setMapTypeId(String mapTypeId) 

Source Link

Document

set MapTypeId (custom id if not in standard enum)

Usage

From source file:pl.itrack.client.local.services.maps.TricitySchemaService.java

License:Apache License

private void initialize(MapWidget assignedMapWidget) {
    assignedMapWidget.getMapTypeRegistry().set(MAP_TYPE_ID, getCitySchemaMapType());
    assignedMapWidget.setMapTypeId(MAP_TYPE_ID);
}