XMapTiledProviderTryGetStreamInternal Method |
Retrieves the map image from the xMapServer as stream.
Namespace:
Ptv.XServer.Controls.Map.TileProviders
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public override byte[] TryGetStreamInternal(
double left,
double top,
double right,
double bottom,
int width,
int height,
out IEnumerable<IMapObject> mapObjects
)
Public Overrides Function TryGetStreamInternal (
left As Double,
top As Double,
right As Double,
bottom As Double,
width As Integer,
height As Integer,
<OutAttribute> ByRef mapObjects As IEnumerable(Of IMapObject)
) As Byte()
public:
virtual array<unsigned char>^ TryGetStreamInternal(
double left,
double top,
double right,
double bottom,
int width,
int height,
[OutAttribute] IEnumerable<IMapObject^>^% mapObjects
) override
abstract TryGetStreamInternal :
left : float *
top : float *
right : float *
bottom : float *
width : int *
height : int *
mapObjects : IEnumerable<IMapObject> byref -> byte[]
override TryGetStreamInternal :
left : float *
top : float *
right : float *
bottom : float *
width : int *
height : int *
mapObjects : IEnumerable<IMapObject> byref -> byte[]
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. - mapObjects
- Type: System.Collections.GenericIEnumerableIMapObject
Set of map objects.
Return Value
Type:
Byte The map image as stream.
See Also