ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Geometry Namespace / MapPoint Class
Members

In This Topic
    MapPoint Class
    In This Topic
    A MapPoint represents a single location in space. The location consists of X and Y values and optionally a Z and/or M value. To create a MapPoint use the MapPointBuilderEx object.
    Object Model
    MapPoint ClassGeometry ClassCoordinate2D StructureCoordinate3D StructureEnvelope ClassSpatialReference Class
    Syntax
    public sealed class MapPoint : Geometry 
    Public NotInheritable Class MapPoint 
       Inherits Geometry
    Remarks
    The interior of a point is the point itself, the boundary is the empty set, and the exterior is all other points.

    A MapPoint is based upon the parent Geometry class. The Geometry class is immutable which means that you can not change its shape once it is created. If you need to modify a MapPoint once it has been created, use the MapPointBuilderEx class instead. The MapPointBuilderEx.ToGeometry method will provide you with the MapPoint object.

    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.Geometry.Geometry
          ArcGIS.Core.Geometry.MapPoint

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also