SourceCoordinateSystem.CoordinateConverter Property
Gets or sets the coordinate converter used by the SourceCoordinateSystem object.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v22.2.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Property Value
Type | Description |
---|---|
CoordinateConverterBase | A CoordinateConverterBase class descendant object. |
Example
<local:MapData FileUri="Shapefiles/TransverseMercator/israel.shp">
<local:MapData.CoordinateSystem>
<dxm:CartesianSourceCoordinateSystem>
<dxm:CartesianSourceCoordinateSystem.CoordinateConverter>
<dxm:UTMCartesianToGeoConverter UtmZone="36" Hemisphere="Northern"/>
</dxm:CartesianSourceCoordinateSystem.CoordinateConverter>
</dxm:CartesianSourceCoordinateSystem>
</local:MapData.CoordinateSystem>
</local:MapData>
See Also