ReprojectionTileProvider Constructor |
Creates and initializes an instance of ReprojectionTileProvider. The given map service will internally be wrapped in a ReprojectionService which is capable
to map any source CRS to our EPSG:76131 using image reprojection.
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 ReprojectionTileProvider(
MapService mapService,
ReprojectionServiceOptions reprojectionServiceOptions = null
)
Public Sub New (
mapService As MapService,
Optional reprojectionServiceOptions As ReprojectionServiceOptions = Nothing
)
public:
ReprojectionTileProvider(
MapService^ mapService,
ReprojectionServiceOptions^ reprojectionServiceOptions = nullptr
)
new :
mapService : MapService *
?reprojectionServiceOptions : ReprojectionServiceOptions
(* Defaults:
let _reprojectionServiceOptions = defaultArg reprojectionServiceOptions null
*)
-> ReprojectionTileProvider
Parameters
- mapService
- Type: Ptv.XServer.Controls.Map.Tools.ReprojectionMapService
A map service that is capable to render map images, given the bounding box and the pixel size of the map section to render. - reprojectionServiceOptions (Optional)
- Type: Ptv.XServer.Controls.Map.Tools.ReprojectionReprojectionServiceOptions
Additional options that are passed to the ReprojectionService. Optional, defaults to null.
See Also