WmtsMapServiceExtensionsStream Method |
Streams the logical extents of a bounding box.
This can be used check all values with a single Linq expression.
Namespace:
Ptv.XServer.Controls.Map.Layers.WmtsLayer
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public static IEnumerable<double> Stream(
this IBoundingBox bounds
)
<ExtensionAttribute>
Public Shared Function Stream (
bounds As IBoundingBox
) As IEnumerable(Of Double)
public:
[ExtensionAttribute]
static IEnumerable<double>^ Stream(
IBoundingBox^ bounds
)
[<ExtensionAttribute>]
static member Stream :
bounds : IBoundingBox -> IEnumerable<float>
Parameters
- bounds
- Type: Ptv.XServer.Controls.Map.Tools.ReprojectionIBoundingBox
The bounding box whose extents are to be streamed.
Return Value
Type:
IEnumerableDoubleThe bounding boxes' extents in enumerable form and in the order MinX, MinY, MaxX, MaxY.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IBoundingBox. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also