XMapTiledProviderBaseGetStream Method |
Retrieves the image stream for a certain map rectangle.
Namespace:
Ptv.XServer.Controls.Map.TileProviders
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public Stream GetStream(
double left,
double top,
double right,
double bottom,
int width,
int height,
int border,
out IEnumerable<IMapObject> mapObjects
)
Public Function GetStream (
left As Double,
top As Double,
right As Double,
bottom As Double,
width As Integer,
height As Integer,
border As Integer,
<OutAttribute> ByRef mapObjects As IEnumerable(Of IMapObject)
) As Stream
public:
Stream^ GetStream(
double left,
double top,
double right,
double bottom,
int width,
int height,
int border,
[OutAttribute] IEnumerable<IMapObject^>^% mapObjects
)
member GetStream :
left : float *
top : float *
right : float *
bottom : float *
width : int *
height : int *
border : int *
mapObjects : IEnumerable<IMapObject> byref -> Stream
Parameters
- left
- Type: SystemDouble
Left coordinates. - top
- Type: SystemDouble
Top coordinates. - right
- Type: SystemDouble
Right coordinates. - bottom
- Type: SystemDouble
Bottom coordinates. - width
- Type: SystemInt32
Width of the image. - height
- Type: SystemInt32
Height of the image. - border
- Type: SystemInt32
Border width. - mapObjects
- Type: System.Collections.GenericIEnumerableIMapObject
Set of map objects.
Return Value
Type:
Stream The image as a stream.
See Also