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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// Copyright 2022 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 ShowResultOfSpatialOperationsView: View {
/// The current spatial operation performed.
@State private var spatialOperation = SpatialOperation.none
/// A map with a topographic basemap style and initial viewpoint.
@StateObject private var map = makeMap()
/// A graphics overlay for the map view.
@StateObject private var graphicsOverlay = makeGraphicsOverlay()
/// A graphic representing the result of the spatial operation.
private var resultGraphic: Graphic {
return graphicsOverlay.graphics.last!
}
/// An enum of spatial operations.
private enum SpatialOperation: CaseIterable {
case intersection, symmetricDifference, difference, union, none
/// A human-readable label for each spatial operation.
var label: String {
switch self {
case .none: return "None"
case .union: return "Union"
case .difference: return "Difference"
case .symmetricDifference: return "Symmetric Difference"
case .intersection: return "Intersection"
}
}
}
/// Creates a map.
private static func makeMap() -> Map {
let map = Map(basemapStyle: .arcGISTopographic)
map.initialViewpoint = Viewpoint(
center: Point(x: -13453, y: 6710127, spatialReference: .webMercator),
scale: 30_000
)
return map
}
/// Creates the graphics overlay.
private static func makeGraphicsOverlay() -> GraphicsOverlay {
// Creates the graphics for the two polygons and result.
let polygonOneGraphic = Graphic(
geometry: .polygon1,
symbol: SimpleFillSymbol(color: .blue, outline: .simple)
)
let polygonTwoGraphic = Graphic(
geometry: .polygon2,
symbol: SimpleFillSymbol(color: .green, outline: .simple)
)
let resultGraphic = Graphic(
symbol: SimpleFillSymbol(color: .red, outline: .simple)
)
// Adds the graphics to the overlay.
return GraphicsOverlay(graphics: [polygonOneGraphic, polygonTwoGraphic, resultGraphic])
}
/// Updates the result graphic based on the spatial operation.
private func performOperation() {
let resultGeometry: Geometry?
// Updates the geometry based on the selected spatial operation.
switch spatialOperation {
case .none:
resultGeometry = nil
case .union:
resultGeometry = GeometryEngine.union(.polygon1, .polygon2)
case .difference:
resultGeometry = GeometryEngine.difference(.polygon1, .polygon2)
case .symmetricDifference:
resultGeometry = GeometryEngine.symmetricDifference(.polygon1, .polygon2)
case .intersection:
resultGeometry = GeometryEngine.intersection(.polygon1, .polygon2)
}
// Updates the result graphic geometry.
resultGraphic.geometry = resultGeometry
}
var body: some View {
MapView(map: map, graphicsOverlays: [graphicsOverlay])
.onChange(of: spatialOperation) { _ in
performOperation()
}
.toolbar {
ToolbarItem(placement: .bottomBar) {
Picker("Spatial Operation", selection: $spatialOperation) {
ForEach(SpatialOperation.allCases, id: \.self) { operation in
Text(operation.label)
}
}
}
}
}
}
private extension LineSymbol {
/// A solid, thin, black line.
static var simple: LineSymbol {
SimpleLineSymbol(style: .solid, color: .black, width: 1)
}
}
private extension Geometry {
/// The geometry for polygon one.
static var polygon1: Geometry {
Polygon(
points: [
Point(x: -13960, y: 6709400),
Point(x: -14660, y: 6710000),
Point(x: -13760, y: 6710730),
Point(x: -13300, y: 6710500),
Point(x: -13160, y: 6710100)
],
spatialReference: .webMercator
)
}
/// The geometry for polygon two.
static var polygon2: Geometry {
Polygon(
parts: [
// The outer ring.
MutablePart(
points: [
Point(x: -13060, y: 6711030),
Point(x: -12160, y: 6710730),
Point(x: -13160, y: 6709700),
Point(x: -14560, y: 6710730),
Point(x: -13060, y: 6711030)
],
spatialReference: .webMercator
),
// The inner ring.
MutablePart(
points: [
Point(x: -13060, y: 6710910),
Point(x: -14160, y: 6710630),
Point(x: -13160, y: 6709900),
Point(x: -12450, y: 6710660),
Point(x: -13060, y: 6710910)
],
spatialReference: .webMercator
)
]
)
}
}