Display a map

Learn how to create and display a with a .

display a map

A map contains of geographic data. A map contains a and, optionally, one or more . You can display a specific area of a map by using a and setting the and .

In this tutorial, you create and display a of the Santa Monica Mountains in California using the topographic .

The map and code will be used as the starting point for other 2D tutorials.

Prerequisites

Before starting this tutorial:

  1. You need an ArcGIS Location Platform or ArcGIS Online account.

  2. Your system meets the system requirements.

Steps

Create a new Xcode project

Use Xcode to create a single view iOS app and configure it to reference the API.

  1. Open Xcode. In the menu bar, click File > New > Project > iOS > Single View App > Next.

    • In the Choose options window, set the following properties:
      • Product Name: <your app name>
      • Language: Swift
      • User interface: Storyboard
      • Organization Identifier: <your organization>
    • Uncheck all other options.
    • Click Next > Create.
  2. Add a reference to the API by following the instructions in Get the API - Configure a project.

  3. If you downloaded the solution, get an access token and set the API key.

Add a map view to the UI

A is a UI component that displays a . It also handles user interactions with the map, including navigating with touch gestures. Use Xcode and the storyboard editor to add a map view to the UI and connect it to the view controller source code. Set the map view size to fill the entire iPhone display.

  1. In the Project Navigator, click ViewController.swift.

  2. In the editor, add an import statement to reference the API and add an @IBOutlet named mapView and of type AGSMapView. This will provide a reference to the that you will create in the storyboard.

    ViewController.swift
    16 17 18 19 20 21 22 23 24 25 26 27 28 29
    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
    46
    47
    48
    49
    import UIKit
    
    import ArcGIS
    
    class ViewController: UIViewController {
    
        @IBOutlet weak var mapView: AGSMapView!
    
        override func viewDidLoad() {
            super.viewDidLoad()
    
        }
    
    }
  3. In the Project Navigator, click Main.storyboard to open the storyboard editor.

  4. In the menu, click View > Show Library to display the object library.

  5. In the object library browser:

    • Type uiview or scroll down to find View.
    • Drag and drop a new view on to the storyboard's main view.
  6. At the bottom right of the storyboard editor, click Add New Constraints. In the panel:

    • Type 0 for the top, right, bottom, and left constraints.
    • Click Add 4 Constraints.

    The new view expands to fill the display.

  7. In the menu, click View > Inspectors > Show Identity Inspector. In the Inspectors panel, set Custom Class > Class to AGSMapView.

    This sets the type of the new view to AGSMapView.

  8. In the storyboard editor, right click on the yellow View Controller icon to display the Connections panel. Drag the mapView outlet connector to the new AGSMapView view on the storyboard.

    This connects the AGSMapView in the storyboard to the mapView outlet created earlier in the ViewController class.

Add a map

Use the to display a centered on the Santa Monica Mountains in California. The map will contain a topographic .

  1. In Xcode, in the Project Navigator, click ViewController.swift.

  2. In the editor, define a private method named setupMap(). In setupMap() create an AGSMap.

    ViewController.swift
    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
    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
    46
    47
    48
    49
    class ViewController: UIViewController {
    
        @IBOutlet weak var mapView: AGSMapView!
    
        private func setupMap() {
    
            let map = AGSMap(
                basemapStyle: .arcGISTopographic
            )
    
            mapView.setViewpoint(
                AGSViewpoint(
                    latitude: 34.02700,
                    longitude: -118.80500,
                    scale: 72_000
                )
            )
    
        }
    
        override func viewDidLoad() {
            super.viewDidLoad()
    
        }
    
    }
  3. Set the map property of the mapView outlet to the new AGSMap.

    ViewController.swift
    Expand
    24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    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
    46
    47
    48
    49
        private func setupMap() {
    
            let map = AGSMap(
                basemapStyle: .arcGISTopographic
            )
    
            mapView.map = map
    
            mapView.setViewpoint(
                AGSViewpoint(
                    latitude: 34.02700,
                    longitude: -118.80500,
                    scale: 72_000
                )
            )
    
        }
    
    Expand
  4. In the ViewController's viewDidLoad method, call setupMap() once the view has loaded.

    ViewController.swift
    Expand
    42 43 44 45 46 47
    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
    46
    47
    48
    49
        override func viewDidLoad() {
            super.viewDidLoad()
    
            setupMap()
    
        }
    
    Expand

Get an access token

You need an to use the used in this tutorial.

  1. Go to the Create an API key tutorial to obtain an using your or account.

  2. Ensure that the following is enabled: Location services > Basemaps > Basemap styles service.

  3. Copy the access token as it will be used in the next step.

To learn more about other ways to get an access token, go to Types of authentication.

Set your API key

  1. In the Project Navigator, click AppDelegate.swift.

  2. In the editor, add an import statement to reference the API and in the AppDelegate's application(_:didFinishLaunchingWithOptions:) method, set the apiKey property on the AGSArcGISRuntimeEnvironment with your .

    AppDelegate.swift
    Expand
    16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    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
    import UIKit
    
    import ArcGIS
    
    
    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate {
        var window: UIWindow?
    
        func application(_ application: UIApplication,
                         didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    
            AGSArcGISRuntimeEnvironment.apiKey = "YOUR_ACCESS_TOKEN"
    
            return true
        }
    
    }
  3. Press Command + R to run the app.

You should see a with the topographic centered on the Santa Monica Mountains in California. Pinch, drag, and double-tap 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.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close