ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TinNode Class / ToMapPoint Method
Example

In This Topic
    ToMapPoint Method (TinNode)
    In This Topic
    Gets a ArcGIS.Core.Geometry.MapPoint with the X, Y and Z values. The spatial reference of the returned point is set to the spatial reference of the TIN. See TinDatasetDefinition.GetSpatialReference.
    Syntax
    Public Function ToMapPoint() As MapPoint
    public MapPoint ToMapPoint()

    Return Value

    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run
    Example
    TIN Nodes
    {
      // is the node "inside"
      var isInsideNode = node.IsInsideDataArea;
    
      // get all other nodes connected to "node" 
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinNode> adjNodes = node.GetAdjacentNodes();
    
      // get all edges that share "node" as a from node. 
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinEdge> edges = node.GetIncidentEdges();
    
      // get all triangles that share "node"
      IReadOnlyList<ArcGIS.Core.Data.Analyst3D.TinTriangle> triangles = node.GetIncidentTriangles();
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.2 or higher.
    See Also