ArcGIS Runtime SDK for WPF - Library Reference
MapPointsToUtm Method
See Also 
ESRI.ArcGIS.Client.Geometry Namespace > CoordinateConversion Class : MapPointsToUtm Method

points
A IEnumerable of MapPoint representing the locations to be converted. Each MapPoint must share the same SpatialReference.
conversionMode
A UtmConversionMode value determining whether North and South Hemisphere indicators should be added to the each returned coordinate string.
addSpaces
true if spaces should be added to the returned USNG coordinate notation; otherwise false.
Converts a collection of MapPoint geometries to a collection of coordinate notation strings in the Universal Transverse Mercator (UTM) format.

Syntax

Visual Basic (Declaration) 
Public Shared Function MapPointsToUtm( _
   ByVal points As IEnumerable(Of MapPoint), _
   ByVal conversionMode As UtmConversionMode, _
   ByVal addSpaces As Boolean _
) As IList(Of String)
C# 
public static IList<string> MapPointsToUtm( 
   IEnumerable<MapPoint> points,
   UtmConversionMode conversionMode,
   bool addSpaces
)

Parameters

points
A IEnumerable of MapPoint representing the locations to be converted. Each MapPoint must share the same SpatialReference.
conversionMode
A UtmConversionMode value determining whether North and South Hemisphere indicators should be added to the each returned coordinate string.
addSpaces
true if spaces should be added to the returned USNG coordinate notation; otherwise false.

Return Value

A IList of System.String of coordinate notations representing the locations defined by the MapPoints.

Requirements

Target Platforms: Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7, Windows 8

See Also

© ESRI, Inc. All Rights Reserved.