Skip to main content
A newer version of this page is available. .

SourceCoordinateSystem.CoordinateConverter Property

Gets or sets the coordinate converter used by the SourceCoordinateSystem object.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v21.2.dll

NuGet Package: DevExpress.Wpf.Map

Declaration

public CoordinateConverterBase CoordinateConverter { get; set; }

Property Value

Type Description
CoordinateConverterBase

A CoordinateConverterBase class descendant object.

Example

View 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