Add a feature layer from a portal item

Learn how to use an ArcGIS portal item to access and display a feature layer in a map.

add a feature layer from a portal item

You can host a variety of geographic data and other resources using ArcGIS Online. These portal items can also define how the data is presented. A web map or web scene, for example, not only defines the layers for a map or scene, but also how layers are symbolized, the minimum and/or maximum scales at which they display, and several other properties. Likewise, a hosted feature layer contains the data for the layer and also defines the symbols and other display properties for how it is presented. When you add a map, scene, or layer from a portal item to your app, everything that has been saved with the item is applied in your app. Adding portal items to your app rather than creating them programmatically saves you from writing a lot of code, and can provide consistency across apps that use the same data.

In this tutorial, you will add a hosted feature layer to display trailheads in the Santa Monica Mountains of Southern California. The hosted layer defines the trailhead locations (points) as well as the symbols used to display them.

Prerequisites

The following are required for this tutorial:

  1. An ArcGIS account to access your API keys. If you don't have an account, sign up for free.
  2. Your system meets the system requirements.

Steps

Open the Xcode project

  1. To start the tutorial, complete the Display a map tutorial or download and unzip the solution.

  2. Open the .xcodeproj file in Xcode.

  3. If you downloaded the solution project, set your API key.

Add a feature layer to the map

  1. Open the ContentView.swift file and update the map object. Create a PortalItem object referencing the feature layer by passing in the portal and item ID.

    ContentView.swift
    Expand
    Use dark colors for code blocks
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
        @State private var map = {
            // Creates a map with the topographic basemap style.
            let map = Map(basemapStyle: .arcGISTopographic)
            // Sets the initial viewpoint to Malibu, California.
            map.initialViewpoint = Viewpoint(latitude: 34.027, longitude: -118.805, scale: 72_000)
    
            // Creates an anonymous portal item pointing to https://www.arcgis.com with an item ID.
            let portalItem = PortalItem(
                portal: .arcGISOnline(connection: .anonymous),
                id: Item.ID("2e4b3df6ba4b44969a3bc9827de746b3")!
            )
    
            return map
        }()
    
    Expand
  2. Create a FeatureLayer object from the portal item and a layer ID. The layer ID uniquely identifies one of the layers from the portal item. Add the layer to the map's operational layers.

    ContentView.swift
    Expand
    Use dark colors for code blocks
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
        @State private var map = {
            // Creates a map with the topographic basemap style.
            let map = Map(basemapStyle: .arcGISTopographic)
            // Sets the initial viewpoint to Malibu, California.
            map.initialViewpoint = Viewpoint(latitude: 34.027, longitude: -118.805, scale: 72_000)
    
            // Creates an anonymous portal item pointing to https://www.arcgis.com with an item ID.
            let portalItem = PortalItem(
                portal: .arcGISOnline(connection: .anonymous),
                id: Item.ID("2e4b3df6ba4b44969a3bc9827de746b3")!
            )
    
            // Creates a feature layer from the portal item and a layer ID.
            let layer = FeatureLayer(featureServiceItem: portalItem, layerID: 0)
            // Adds the layer to the map's operational layers.
            map.addOperationalLayer(layer)
    
            return map
        }()
    
    Expand
  3. Press Command + R to run the app.

You should see a map of trail heads in the Santa Monica mountains. Tap, drag, and zoom on the map view to explore the map.

What's next?

Learn how to use additional API features, ArcGIS location services, and ArcGIS tools in these tutorials:

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.