ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMBookmark Class
Members Example

In This Topic
    CIMBookmark Class
    In This Topic
    Represents a spatial bookmark.
    Object Model
    CIMBookmark ClassCIMViewCamera ClassCIMBookmark ClassCIMBookmark ClassEnvelope ClassCIMLayerRange ClassTimeExtent Class
    Syntax
    Example
    Add New Bookmark from CIMBookmark
    {
      // Note: Needs QueuedTask to run
      {
        //Set properties for Camera
        CIMViewCamera cimCamera = new()
        {
          X = camera.X,
          Y = camera.Y,
          Z = camera.Z,
          Scale = camera.Scale,
          Pitch = camera.Pitch,
          Heading = camera.Heading,
          Roll = camera.Roll
        };
    
        //Create new CIM bookmark and populate its properties
        var cimBookmark = new CIMBookmark() { Camera = cimCamera, Name = cameraName, ThumbnailImagePath = "" };
    
        //Add a new bookmark for the active map.
        mapView.Map.AddBookmark(cimBookmark);
      }
    }
    Update Extent for a Bookmark
    {
      // Note : Needs QueuedTask to run
      {
        //Get the bookmark's definition
        var bookmarkDef = oldBookmark.GetDefinition();
    
        //Modify the bookmark's location
        bookmarkDef.Location = envelope;
    
        //Clear the camera as it is no longer valid.
        bookmarkDef.Camera = null;
    
        //Set the bookmark definition
        oldBookmark.SetDefinition(bookmarkDef);
      }
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.CIM.CIMObject
          ArcGIS.Core.CIM.CIMBookmark

    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also