XMapTiledProviderBaseGetImageStreamAndMapObjects Method |
Retrieves the image stream and the corresponding map objects belonging to the returned map image.
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 GetImageStreamAndMapObjects(
double left,
double top,
double right,
double bottom,
int width,
int height,
out IEnumerable<IMapObject> mapObjects
)
Public Function GetImageStreamAndMapObjects (
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 Stream
public:
virtual Stream^ GetImageStreamAndMapObjects(
double left,
double top,
double right,
double bottom,
int width,
int height,
[OutAttribute] IEnumerable<IMapObject^>^% mapObjects
) sealed
abstract GetImageStreamAndMapObjects :
left : float *
top : float *
right : float *
bottom : float *
width : int *
height : int *
mapObjects : IEnumerable<IMapObject> byref -> Stream
override GetImageStreamAndMapObjects :
left : float *
top : float *
right : float *
bottom : float *
width : int *
height : int *
mapObjects : IEnumerable<IMapObject> byref -> Stream
Parameters
- left
- Type: SystemDouble
Left coordinate. - top
- Type: SystemDouble
Top coordinate. - right
- Type: SystemDouble
Right coordinate. - bottom
- Type: SystemDouble
Bottom coordinate. - width
- Type: SystemInt32
Width of the image. - height
- Type: SystemInt32
Height of the image. - mapObjects
- Type: System.Collections.GenericIEnumerableIMapObject
Set of map objects belonging to the map image. These objects can be used to provide tool tips in an interactive map.
Return Value
Type:
Stream The image as a stream.
Implements
IUntiledProviderWithMapObjectsGetImageStreamAndMapObjects(Double, Double, Double, Double, Int32, Int32, IEnumerableIMapObject)See Also