Package org.gwtopenmaps.openlayers.client.layer

Examples of org.gwtopenmaps.openlayers.client.layer.Layer


     *
     * @return Layer - the layer on the map or null if there is no layer with the given id
     */
    public Layer getLayer(String id) {
        JSObject jsObject = MapImpl.getLayer(id, getJSObject());
        Layer layer = Layer.narrowToLayer(jsObject);
        return layer;
    }
View Full Code Here


     * @return Layer - the layer on the map or null if there is no layer with
     * the given id
     */
    public Layer getLayer(String id) {
        JSObject jsObject = MapImpl.getLayer(id, getJSObject());
        Layer layer = Layer.narrowToLayer(jsObject);
        return layer;
    }
View Full Code Here

TOP

Related Classes of org.gwtopenmaps.openlayers.client.layer.Layer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.