Uses of Class
org.geotools.map.Layer

Packages that use Layer
org.geotools.map List of layers to be rendered. 
org.geotools.map.direct   
org.geotools.map.event A set of events fired by map interfaces. 
org.geotools.swing Simple Swing widgets for map display. 
org.geotools.swing.tool Cursor tools for zooming and panning; subclass to implement additional mouse-driven tools. 
org.geotools.swt Simple SWT widgets for map display. 
org.geotools.swt.control SWT controls, wizards and dialogs used to do common tasks. 
org.geotools.swt.styling Dialogs to create basic rendering styles. 
org.geotools.swt.tool Cursor tools for zooming and panning; subclass to implement additional mouse-driven tools. 
org.geotools.swt.utils Helper classes for swt module components 
 

Uses of Layer in org.geotools.map
 

Subclasses of Layer in org.geotools.map
 class DirectLayer
          A Layer directly responsible for its own rendering.
 class FeatureLayer
          Layer responsible for rendering vector information provided by a FeatureSource.
 class GridCoverageLayer
          Layer used to draw a raster GridCoverage.
 class GridReaderLayer
          Layer used to draw a raster GridCoverage2DReader.
 class RasterLayer
          Layer responsible for raster content.
 class StyleLayer
          Layer responsible for rendering under control of a user supplied Style object.
 class WMSLayer
          Wraps a WMS layer into a MapLayer for interactive rendering usage TODO: expose a GetFeatureInfo that returns a feature collection TODO: expose the list of named styles and allow choosing which style to use
 

Fields in org.geotools.map declared as Layer
protected  Layer MapLayer.internal
          Deprecated. This is the internal delegate
 

Methods in org.geotools.map that return Layer
 Layer MapLayer.toLayer()
          Deprecated. Access to raw layer object used for rendering.
 

Methods in org.geotools.map that return types with arguments of type Layer
 List<Layer> MapContent.layers()
          Gets the list of layers for this map content.
protected  List<Layer> MapContext.toLayerList(MapLayer[] array)
          Deprecated.  
 

Methods in org.geotools.map with parameters of type Layer
 boolean MapContent.addLayer(Layer layer)
          Add a new layer (if not already present).
protected  void MapContent.fireLayerAdded(Layer element, int fromIndex, int toIndex)
           
protected  void MapContent.fireLayerEvent(Layer element, int index, MapLayerEvent layerEvent)
           
protected  void MapContent.fireLayerMoved(Layer element, int toIndex)
           
protected  void MapContent.fireLayerPreDispose(Layer element, int toIndex)
           
protected  void MapContent.fireLayerRemoved(Layer element, int fromIndex, int toIndex)
           
 boolean MapContent.removeLayer(Layer layer)
          Removes the given layer, if present, and publishes a MapLayerListEvent.
 

Method parameters in org.geotools.map with type arguments of type Layer
 int MapContent.addLayers(Collection<? extends Layer> layers)
          Adds all layers from the input collection that are not already present in this map content.
 

Constructors in org.geotools.map with parameters of type Layer
DefaultMapLayer(Layer layer)
          Deprecated. Wrap up a layer in a DefaultMapLayer; generally used to ensure layer is shown to the world as a feature source even if it happens to be a WMS or something.
MapLayer(Layer layer)
          Deprecated. Wrap up a layer in a DefaultMapLayer; generally used to ensure layer is shown to the world as a feature source even if it happens to be a WMS or something.
 

Uses of Layer in org.geotools.map.direct
 

Subclasses of Layer in org.geotools.map.direct
 class MessageDirectLayer
          This is a simple watermark used to place a message (such as copyright information) onto a map.
 

Uses of Layer in org.geotools.map.event
 

Methods in org.geotools.map.event that return Layer
 Layer MapLayerListEvent.getElement()
          Returns the layer involved in the change
 

Constructors in org.geotools.map.event with parameters of type Layer
MapLayerListEvent(MapContent map, Layer element, int index)
           
MapLayerListEvent(MapContent map, Layer element, int fromIndex, int toIndex)
           
MapLayerListEvent(MapContent map, Layer element, int index, MapLayerEvent mapLayerEvent)
           
 

Uses of Layer in org.geotools.swing
 

Methods in org.geotools.swing that return Layer
 Layer RenderingOperands.getLayer()
           
 

Methods in org.geotools.swing with parameters of type Layer
 boolean SingleLayerMapContent.addLayer(Layer layer)
          Throws an UnsupportedOperationException if called.
 void MapLayerTable.onAddLayer(Layer layer)
          Add a new layer to those listed in the table.
 boolean SingleLayerMapContent.removeLayer(Layer layer)
          Throws an UnsupportedOperationException if called.
 void MapLayerTable.repaint(Layer layer)
          Repaint the list item associated with the specified MapLayer object
 

Constructors in org.geotools.swing with parameters of type Layer
RenderingOperands(Layer layer, Graphics2D graphics)
           
RenderingOperands(Layer layer, Graphics2D graphics, GTRenderer renderer)
           
SingleLayerMapContent(Layer layer)
          Creates a new instance to hold the given layer.
 

Uses of Layer in org.geotools.swing.tool
 

Fields in org.geotools.swing.tool with type parameters of type Layer
protected  WeakReference<Layer> InfoToolHelper.layerRef
           
 

Methods in org.geotools.swing.tool that return Layer
 Layer InfoToolHelper.getLayer()
          Gets the map layer associated with this helper.
 

Methods in org.geotools.swing.tool with parameters of type Layer
abstract  boolean InfoToolHelper.isSupportedLayer(Layer layer)
          CAlled by the helper lookup system when selecting a helper for a given layer.
 boolean FeatureLayerHelper.isSupportedLayer(Layer layer)
           
 boolean GridCoverageLayerHelper.isSupportedLayer(Layer layer)
           
 boolean GridReaderLayerHelper.isSupportedLayer(Layer layer)
           
 void InfoToolHelper.setLayer(Layer layer)
          Sets the map layer for this helper.
 void FeatureLayerHelper.setLayer(Layer layer)
          Sets the map layer for this helper.
 void GridCoverageLayerHelper.setLayer(Layer layer)
           
 void GridReaderLayerHelper.setLayer(Layer layer)
           
 

Uses of Layer in org.geotools.swt
 

Methods in org.geotools.swt with parameters of type Layer
 void MapLayerComposite.onAddLayer(Layer layer)
          Add a new layer to those listed in the table.
 void MapLayerComposite.onRemoveLayer(Layer layer)
          Remove a layer from those listed in the table.
 void MapLayerComposite.repaint(Layer layer)
          Repaint the list item associated with the specified MapLayer object
 

Uses of Layer in org.geotools.swt.control
 

Methods in org.geotools.swt.control that return Layer
 Layer MaplayerTableViewer.getSelectedMapLayer()
          Getter for the selected Layer.
 

Methods in org.geotools.swt.control that return types with arguments of type Layer
 List<Layer> MaplayerTableViewer.getLayersList()
          Getter for the loaded MapLayers list.
 

Methods in org.geotools.swt.control with parameters of type Layer
 void MaplayerTableViewer.addLayer(Layer layer)
          Adds a Layer to the viewer and updates.
 void MaplayerTableViewer.removeLayer(Layer layer)
          Removes a Layer from the viewer and updates.
 

Uses of Layer in org.geotools.swt.styling
 

Methods in org.geotools.swt.styling with parameters of type Layer
static Style SimpleStyleConfigurator.showDialog(Shell parent, Layer layer)
           
 

Uses of Layer in org.geotools.swt.tool
 

Methods in org.geotools.swt.tool that return Layer
 Layer VectorLayerHelper.getMapLayer()
          Get the MapLayer that this helper is working with.
 

Constructors in org.geotools.swt.tool with parameters of type Layer
GridLayerHelper(MapContent content, Layer layer)
          Create a new helper to work with the given raster data source.
VectorLayerHelper(MapContent context, Layer layer)
          Create a new helper to work with a MapLayer that has vector feature data.
 

Uses of Layer in org.geotools.swt.utils
 

Methods in org.geotools.swt.utils with parameters of type Layer
static String Utils.getGridAttributeName(Layer layer)
           
static boolean Utils.isGridLayer(Layer layer)
          Check if the given map layer contains a grid coverage or a grid coverage reader.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.