ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / Map Class / LayerTemplatePackages Property
Example

In This Topic
    LayerTemplatePackages Property
    In This Topic
    Gets the collection of layer template packages installed with Pro for use with maps
    Syntax
    public IReadOnlyList<Item> LayerTemplatePackages {get;}
    Public ReadOnly Property LayerTemplatePackages As IReadOnlyList(Of Item)
    Remarks
    Currently, these include the set of packages defined for Map Notes. To add one of the templates to the map use LayerFactory.CreateLayer<T>. Use the LayerCreationParams overload: LayerCreationParams.LayerCreationParams Constructor(Item)
    Example
    Add MapNotes to the active map
    //Gets the collection of layer template packages installed with Pro for use with maps
    var items = MapView.Active.Map.LayerTemplatePackages;
    //Iterate through the collection of items to add each Map Note to the active map
    foreach (var item in items)
    {
      //Create a parameter item for the map note
      var layer_params = new LayerCreationParams(item);
      layer_params.IsVisible = false;
      await QueuedTask.Run(() =>
      {
        //Create a feature layer for the map note
        var layer = LayerFactory.Instance.CreateLayer<Layer>(layer_params, MapView.Active.Map);
      });
    }
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also