Layer.GetDataBounds Method
Calculates the bounds of all dataset coverages in the layer.
GetDataBounds(Crs crs)
Calculates the bounds of all dataset coverages in the layer.Syntax
public Rectangle GetDataBounds (
Crs crs
)
Parameters
The coordinate reference system that the result is defined in.
Return Value
The bounds of all dataset coverages in the layer.
Remarks
Datasets returning empty or infinite data coverages are excluded.
Example
// Get data coverage of all DataSets in the Layer in Wgs84LongLat
public static Rectangle GetDataCoverageInWgs84LongLat(Layer layer)
{
// Get the data coverage in Wgs84LongLat of all DataSets in the Layer
return layer.GetDataBounds(Crs.Wgs84LongLat);
}
Platforms
Windows, Linux, Android