A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developers.arcgis.com/swift/scenes-3d/add-graphics-to-a-scene-view/ below:

Add graphics to a scene view | ArcGIS Maps SDK for Swift

You can use graphics to display objects on top of the data in your scene view while your app is running. A graphic is a type of geoelement that has a shape (geometry) and attributes. A graphic can have its own symbol, or can be displayed using a renderer. Graphics are added to a graphics overlay for display in the scene view.

Graphics and graphics overlays allow you to do things like: How graphics work

A scene view has a graphics overlay collection that may contain zero or more graphics overlays. Each graphics overlay manages a collection of graphics that display on top of all data inside the scene view. The graphics you add to a graphics overlay can have a mix of geometry types and attribute fields. Because they offer so much flexibility, graphics and graphics overlays are ideal for working with temporary geoelements that you need to display as your app runs.

Topic

Feature layers and graphics overlays have dynamic and static rendering modes that can affect display behavior for the geoelements they contain. See the rendering modes discussion in the Performance considerations topic for more information.

Graphics in map views and scene views

The pattern for working with graphics is the same whether in a map view or scene view. In either case, the geoview has a collection of graphics overlays that contain a collection of graphics. When working with a scene view, additional 3D properties and symbol types are available that are not applicable when working with a map view.

Additional API and symbols for 3D display are discussed in the Render features and graphics in 3D topic.

Graphics overlays

A GraphicsOverlay is a container for temporary graphics that display in your geoview. Graphics you add to graphics overlays are created at run time and are not persisted when the application closes.

Note

Graphics overlays are visible only when the scene view contains a scene and always display above all layers in the scene view. Graphics overlays do not have a time extent and do not participate in time-based filtering when a time extent is set on a view.

The following code shows how to create a new graphics overlay and add it to your scene view.

Use dark colors for code blocks Copy

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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
    var body: some View {
        // Creates a scene view with the model's scene and graphics overlay.
        SceneView(scene: model.scene, graphicsOverlays: [model.graphicsOverlay])


    }

Unlike a feature layer, which always contains features of a single geometry type, a graphics overlay can contain graphics with a variety of geometry types (a mix of points, lines, and polygons, in other words). A feature layer has a consistent schema (the same set of attributes), while graphics in a graphics overlay can each have a distinct set of attributes.

For more information and a description of when to use each, see the Features and graphics topic.

Graphics

Graphics are created at run time and only persist for as long as the app is running. You can create them to show geocode candidates, routes, results from analysis operations, and so on. They are also commonly used to show input from the user, such as a click or touch on the display.

A Graphic uses the following to represent an object on the scene view:

Draw order (z-index)

A graphic's z-index defines the draw order of that graphic within its graphics overlay. It is primarily intended for use when working with graphics in a 2D map view. In the scene view, when the graphics overlay is displayed in dynamic rendering mode, display order of the graphics is determined by the distance from the camera rather than by z-index. In a scene view, the z-index is only applied when the graphics overlay is displayed in static rendering mode, where graphics are draped on the surface of the scene.

If using static rendering mode in a scene view and the z-index is not set, the graphics will render in the order in which they were added to the graphics overlay, the first graphic added is rendered lowermost and subsequent graphics on top. In rare cases, the rendering algorithm may change the display order to provide more efficient rendering. If ordering is important, set the z-index explicitly on each graphic. You can also place graphics of the same geometry type in their own graphics overlay and manage the order of the graphics overlays in the scene view.

Note

Controlling graphic rending order with z-index is not the same as setting a z-coordinate value (or z-value) for a 3D point. A graphic's z-index is interpreted relative to other graphics' z-index values to define a draw order. A point's z-coordinate defines a position in geographic space along the z-axis, such as elevation or altitude.

Work with graphics

Because they are both geoelements, you can work with graphics in much the same way as you would with features. Graphics can be symbolized using attribute values, identified using a tap or click from the user, and selected in the display. You can update graphics' geometry to move them on the view and update their attributes to reflect their current state. Unlike features, graphics are not persisted when the app closes.

Add a graphics overlay and a graphic

The following example shows how to create a graphics overlay, add a single graphic, and add the overlay to a scene view.

  1. Create a new GraphicsOverlay.

  2. Create a Geometry to define the graphic's shape and geographic location.

  3. Create a symbol to display the graphic.

  4. Create a new Graphic using the geometry and symbol.

  5. Add the graphic to the graphics overlay.

  6. Add the graphics overlay to the scene view.

Use dark colors for code blocks Copy

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
private class Model: ObservableObject {
    let scene = Scene(basemapStyle: .arcGISTopographic)
    let graphicsOverlay: GraphicsOverlay = {
        // Create a graphics overlay.
        let overlay = GraphicsOverlay()

        // Create a point for the graphic location.
        let pierLocation = Point(x: -118.4978, y: 34.0086, spatialReference: .wgs84)

        // Create a red sphere symbol.
        let redSphereSymbol = SimpleMarkerSceneSymbol(style: .sphere, color: .red, height: 500, width: 500, depth: 500, anchorPosition: .center)

        // Create a graphic using the point and the symbol.
        let pierGraphic = Graphic(geometry: pierLocation, symbol: redSphereSymbol)

        // Add the graphic to the graphics overlay.
        overlay.addGraphic(pierGraphic)

        return overlay
    }()
}

struct AddGraphic3DView: View {
    // Creates a `StateObject` of the `Model` class.
    @StateObject private var model = Model()

    var body: some View {
        // Creates a scene view with the model's scene and graphics overlay.
        SceneView(scene: model.scene, graphicsOverlays: [model.graphicsOverlay])
    }
}
Symbolize

A comprehensive API for creating and modifying symbols for every type of geometry is provided. Symbols define properties such as color, size, and style that define how the graphic is displayed. There are specialized symbols for representing objects with text or images and you can create advanced symbols that combine multiple symbol layers. See Styles and data visualization to learn about the available symbol types. You can use any of the 2D symbols to display graphics in a scene view as well as symbols designed exclusively for display in 3D.

There are two ways to symbolize a graphic.

  1. Apply a symbol directly to the graphic. Graphics expose a symbol property that you can use to define the symbol.
  2. Apply a renderer to the graphics overlay. A renderer is a collection of one or more symbols that are applied to all graphics in the graphics overlay. A renderer allows you to do things like control symbology based on attribute values.

If you define a renderer for a graphics overlay, you do not need to assign symbols to the individual graphics it contains. Assigning a symbol directly to a graphic overrides the symbology defined by the renderer of the graphics overlay.

Display text

To display text on the scene view as a graphic, create a graphic with a point, line, or polygon to define the location for your text. You can then provide a TextSymbol that defines the font, color, size, and text to display.

Use dark colors for code blocks Copy

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
private class Model: ObservableObject {

    let scene = ArcGIS.Scene(basemapStyle: .arcGISTopographic)

    let graphicsOverlay: GraphicsOverlay = {
        let overlay = GraphicsOverlay()
        // Creates a point for the graphic location.
        let pierLocation = Point(x: -118.4978, y: 34.0086, z: 500.0, spatialReference: .wgs84)

        // Defines a text symbol to show the name of the pier.
        let pierTextSymbol = TextSymbol(
            text: "Santa Monica Pier",
            color: .red,
            size: 10,
            horizontalAlignment: .left,
            verticalAlignment: .bottom
        )

        // Creates a graphic using the point and the symbol.
        let pierGraphic = Graphic(geometry: pierLocation, symbol: pierTextSymbol)

        // Adds the graphic to the graphics overlay.
        overlay.addGraphic(pierGraphic)

        return overlay
    }()
}

struct AddTextGraphicView: View {
    @StateObject private var model = Model()

    var body: some View {

        // Creates a scene view with the model's scene and graphics overlay.
        SceneView(scene: model.scene, graphicsOverlays: [model.graphicsOverlay])

    }
}
Identify

A graphic can contain descriptive information in the form of attributes. Attributes are a collection of pairs of keys (field names) and values that are defined when you create a graphic. Your app can identify a graphic in the view from a click or tap and return its attributes. You can then display these attributes in a suitable UI element, such as a callout, pop-up, or dialog.

Note

Because graphics overlays do not define a schema for attributes, you should not assume that every graphic in an overlay will have the same set of attributes.

The following example shows how you can identify a graphics overlay in response to a tap on the scene view.

Use dark colors for code blocks Copy

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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
        SceneViewReader { sceneView in
            SceneView(scene: model.scene, graphicsOverlays: [model.graphicsOverlay])
                .onSingleTapGesture { screenPoint, mapPoint in
                    // On a single tap gesture, identify the tapped point.
                    self.identifyPoint = screenPoint
                    self.mapPoint = mapPoint
                }
                .task(id: identifyPoint) {
                    guard let identifyPoint = identifyPoint else { return }
                    do {
                        // Identify the graphics closest to the tapped point.
                        results = try await sceneView.identify(
                            on: model.graphicsOverlay,
                            screenPoint: identifyPoint,
                            tolerance: 12,
                            maximumResults: 1
                        )
                    } catch {
                        // Presents an error message if needed.
                        self.error = error
                    }
                }
        }
Select

Select graphics to highlight them on the display. You can select zero, one, or several graphics in a graphics overlay. Each graphic's selection state is represented with an isSelected property that is either true or false.

Note

Selection display properties, such as the color used for selected geoelements, are defined for the scene view.

The following example finds all graphics in the graphics overlay that have a "type" attribute of "pier" and selects them on the display.

Use dark colors for code blocks Copy

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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
        // Selects all graphics with a "type" attribute of pier.
        let graphics = model.graphicsOverlay.graphics
        let pierGraphics = graphics.filter { $0.attributes["type"] as? String == "pier" }
        pierGraphics.forEach { graphic in
            graphic.isSelected = true
        }
Move

To move a graphic, you only need to update its geometry. This is much more efficient than creating a new graphic and replacing the existing one. Updating a graphic's geometry will cause it to immediately display at the new location. Use this technique to animate the display of moving geoelements.

See Follow a graphic in a scene view for more information about following a moving graphic with the camera.

Use dark colors for code blocks Copy

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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
        // Creates a new point a little north of the original position.
        guard let originalPosition = boatGraphic.geometry as? Point else { return }
        let newPosition = Point(x: originalPosition.x, y: originalPosition.y + 0.1, spatialReference: .wgs84)
        // Updates with the new geometry.
        boatGraphic.geometry = newPosition

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4