Package com.vividsolutions.wms
Class MapLayer
- java.lang.Object
-
- com.vividsolutions.wms.MapLayer
-
public class MapLayer extends Object
Represents a WMS Layer.- Author:
- Chris Hodgson chodgson@refractions.net, Uwe Dalluege, uwe.dalluege@rzcn.haw-hamburg.de, Michael Michaud m.michael.michaud@orange.fr
-
-
Constructor Summary
Constructors Constructor Description MapLayer(String name, String title, Collection<String> srsList, Collection<MapLayer> subLayers, BoundingBox bbox, List<BoundingBox> boundingBoxList, List<MapStyle> styles)
Creates a new instance of MapLayer with boundingBoxList [uwe dalluege]MapLayer(String name, String title, Collection<String> srsList, Collection<MapLayer> subLayers, BoundingBox bbox, List<MapStyle> styles)
Creates a new instance of MapLayer
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BoundingBox>
getAllBoundingBoxList()
BoundingBox
getBoundingBox()
Gets the LatLonBoundingBox for this layer.BoundingBox
getBoundingBox(String srs)
Return the bounding box defined for this MapLayer in this SRS.static org.locationtech.jts.geom.Envelope
getBoundingBox(String srs, MapLayer lyr, org.locationtech.jts.geom.Envelope env)
Return the envelope of this layer in the wished srs if a BoundingBox in this srs exists.List<BoundingBox>
getBoundingBoxList()
Gets the BoundingBoxList for this LayerCollection<String>
getFullSRSList()
BoundingBox
getLatLonBoundingBox()
I think this name is better [uwe dalluege] Gets the LatLonBoundingBox for this layer.List<MapLayer>
getLayerList()
Returns a list of all the layers in order of a root-left-right traversal of the layer tree.String
getName()
Gets the name of this Layer.MapLayer
getParent()
Gets the parent MapLayer of this MapLayer.List<String>
getSRSList()
Returns a copy of the list of supported SRS's.MapStyle
getStyle(String styleName)
Gets the WMS layer style by nameList<MapStyle>
getStyles()
MapLayer
getSubLayer(int n)
Returns the sub-layer at the specified index.List<MapLayer>
getSubLayerList()
Gets a copy of the list of the sublayers of this layer.String
getTitle()
Gets the title of this MapLayer.void
setSelectedStyle(MapStyle selectedStyle)
Sets the selected WMS layer stylevoid
setStyles(List<MapStyle> newStyles)
void
setSublayer(ArrayList<MapLayer> sublayer)
String
toString()
Returns a somewhat nicely-formatted string representing all of the details of this layer and its sub-layers (recursively).
-
-
-
Constructor Detail
-
MapLayer
public MapLayer(String name, String title, Collection<String> srsList, Collection<MapLayer> subLayers, BoundingBox bbox, List<MapStyle> styles)
Creates a new instance of MapLayer
-
MapLayer
public MapLayer(String name, String title, Collection<String> srsList, Collection<MapLayer> subLayers, BoundingBox bbox, List<BoundingBox> boundingBoxList, List<MapStyle> styles)
Creates a new instance of MapLayer with boundingBoxList [uwe dalluege]
-
-
Method Detail
-
getAllBoundingBoxList
public List<BoundingBox> getAllBoundingBoxList()
- Returns:
- All BoundingBoxes If there is no BoundingBox for this MapLayer the parent-BoundingBox will be taken. [uwe dalluege]
-
getSubLayer
public MapLayer getSubLayer(int n)
Returns the sub-layer at the specified index.- Parameters:
n
- the index of the sub-layer to return- Returns:
- the MapLayer sub-layer at the specified index
-
getSubLayerList
public List<MapLayer> getSubLayerList()
Gets a copy of the list of the sublayers of this layer.- Returns:
- a copy of the Arraylist containing all the sub-layers of this layer
-
getLayerList
public List<MapLayer> getLayerList()
Returns a list of all the layers in order of a root-left-right traversal of the layer tree.- Returns:
- a list of all the layers in order of a root-left-right traversal of the layer tree.
-
getTitle
public String getTitle()
Gets the title of this MapLayer. The title of a layer should be used for display purposes.- Returns:
- the title of this Layer
-
getName
public String getName()
Gets the name of this Layer. The name of a layer is its 'back-end', ugly name, which generally shouldn't need to be used by others but is available anyway. Layers which do not have any data associated with them, such as container or grouping layers, might not have a name, in which case null will be returned.- Returns:
- the name of the layer, or null if it doesn't have a name
-
getParent
public MapLayer getParent()
Gets the parent MapLayer of this MapLayer.- Returns:
- the parent layer of this MapLayer, or null if the layer has no parent.
-
getBoundingBox
public BoundingBox getBoundingBox()
Gets the LatLonBoundingBox for this layer. If this layer doesn't have a LatLonBoundingBox specified, we recursively ask the parent layer for its bounding box. The WMS spec says that each layer should either have its own LatLonBoundingBox, or inherit one from its parent, so this recursive call should be successful. If not, null is returned. However, if a bounding box is returned, it will have the SRS string "LatLon". Note that the BoundingBox is not necessarily "tight".- Returns:
- the BoundingBox for this layer, or null if the BBox is unknown
-
getBoundingBox
public BoundingBox getBoundingBox(String srs)
Return the bounding box defined for this MapLayer in this SRS. If not found, the bounding box is searched in this Layer's children, then in its parents. If not found, return the whole earth in LonLat SRS.
-
getBoundingBox
public static org.locationtech.jts.geom.Envelope getBoundingBox(String srs, MapLayer lyr, org.locationtech.jts.geom.Envelope env)
Return the envelope of this layer in the wished srs if a BoundingBox in this srs exists. Else if, layer's children are scanned recursively.
-
getLatLonBoundingBox
public BoundingBox getLatLonBoundingBox()
I think this name is better [uwe dalluege] Gets the LatLonBoundingBox for this layer. If this layer doesn't have a LatLonBoundingBox specified, we recursively ask the parent layer for its bounding box. The WMS spec says that each layer should either have its own LatLonBoundingBox, or inherit one from its parent, so this recursive call should be successful. If not, null is returned. However, if a bounding box is returned, it will have the SRS string "LatLon". Note that the BoundingBox is not necessarily "tight".- Returns:
- the BoundingBox for this layer, or null if the BBox is unknown
-
getBoundingBoxList
public List<BoundingBox> getBoundingBoxList()
Gets the BoundingBoxList for this Layer- Returns:
- the BoundingBoxList containing the BoundingBoxes
-
getSRSList
public List<String> getSRSList()
Returns a copy of the list of supported SRS's. Each SRS is a string in the format described by the WMS specification, such as "EPSG:1234".- Returns:
- a copy of the list of supported SRS's
-
getFullSRSList
public Collection<String> getFullSRSList()
- Returns:
- a list of the SRS list of this MapLayer and its ancestors
-
setSelectedStyle
public void setSelectedStyle(MapStyle selectedStyle)
Sets the selected WMS layer style- Parameters:
selectedStyle
- set the WMS Style for this MapLayer
-
getStyle
public MapStyle getStyle(String styleName)
Gets the WMS layer style by name- Parameters:
styleName
- name of the WMS layer style- Returns:
- a MapStyle associated with this Layer
-
setSublayer
public void setSublayer(ArrayList<MapLayer> sublayer)
- Parameters:
sublayer
- WMS subLayers contained in this MapLayer
-
setStyles
public void setStyles(List<MapStyle> newStyles)
- Parameters:
newStyles
- WMS MapStyles to be associated to this MapLayer
-
toString
public String toString()
Returns a somewhat nicely-formatted string representing all of the details of this layer and its sub-layers (recursively).
-
-