Change map view background

View on GitHub

Customize map view's background by changing its grid properties.

Image of change map view background

Use case

A background grid defines the default color and grid for display behind a map or scene surface. Set properties on the background grid to highlight and give context to your map view or scene view.

How to use the sample

Tap the "Background Grid Settings" button in the toolbar to open the settings view. Tap the color next to "Color" and "Line Color" rows to change the background color and the grid's line color respectively. Use the sliders to change the grid line width and grid size.

How it works

  1. Create a Map object.
  2. Display the map in a MapView.
  3. Set the backgroundGrid on the MapView using the view modifier.
  4. Update the background grid properties from the settings view. The following BackgroundGrid properties are updated:
    • backgroundColor: fill color
    • lineColor: color of background grid lines
    • lineWidth: width (in points) of background grid lines
    • size: size (in points) of the background grid

Relevant API

  • BackgroundGrid
  • Map
  • MapView

Tags

background, grid, map

Sample Code

ChangeMapViewBackgroundView.swiftChangeMapViewBackgroundView.swiftChangeMapViewBackgroundView.Model.swiftChangeMapViewBackgroundView.SettingsView.swift
Use dark colors for code blocksCopy
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
// Copyright 2023 Esri
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//   https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

import SwiftUI
import ArcGIS

struct ChangeMapViewBackgroundView: View {
    /// The view model for the sample.
    @StateObject private var model = Model()

    /// A Boolean value indicating whether the settings view should be presented.
    @State private var isShowingSettings = false

    var body: some View {
        // Creates a map view to display the map.
        MapView(map: model.map)
            .backgroundGrid(model.backgroundGrid)
            .toolbar {
                ToolbarItem(placement: .bottomBar) {
                    Button("Background Grid Settings") {
                        isShowingSettings = true
                    }
                    .sheet(isPresented: $isShowingSettings, detents: [.medium], dragIndicatorVisibility: .visible) {
                        SettingsView(model: model)
                    }
                }
            }
    }
}

#Preview {
    NavigationView {
        ChangeMapViewBackgroundView()
    }
}

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