Example usage for com.google.gwt.maps.client TileLayer subclass-usage

List of usage examples for com.google.gwt.maps.client TileLayer subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.maps.client TileLayer subclass-usage.

Usage

From source file org.maps.client.GMapCreatorTileLayer.java

public class GMapCreatorTileLayer extends TileLayer {
    private double opacity = 0.5;
    private String urlPrefix;
    private String secondaryPrefix;

    public String getSecondaryPrefix() {

From source file org.sigmah.client.map.BaseMapLayer.java

/**
 * Implementation of GoogleMaps TileLayer for an ActivityInfo BaseMap
 */
class BaseMapLayer extends TileLayer {

    private BaseMap baseMap;

From source file org.sigmah.client.map.RgcTileLayer.java

class RgcTileLayer extends TileLayer {
    String baseUrl;

    public RgcTileLayer(String baseUrl, int minZoom, int maxZoom) {
        super(createCopyRights(), minZoom, maxZoom);
        this.baseUrl = baseUrl;