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

GeoUtils.CalculateStrokeLength(MapShape) Method

Returns the map shape’s stroke length in meters.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.1.dll

Declaration

public static double CalculateStrokeLength(
    MapShape shape
)

Parameters

Name Type Description
shape MapShape

The map shape whose stroke length should be calculated.

Returns

Type Description
Double

The map shape stroke length in meters.

Remarks

You can use the CalculateStrokeLength method to determine the stroke length of the following vector items:

The following code computes a selected map item’s stroke length.

private void mapControl_SelectionChanged(object sender, MapSelectionChangedEventArgs e) {
    MapShape mapShape = vectorItemsLayer.SelectedItem as MapShape;
    double strokeLength = GeoUtils.CalculateStrokeLength(mapShape);           
    label.Text = $"StokeLength: {strokeLength / 1000:F2} km";
}
See Also