154155156157158159160161
* * @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; }
* @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; }