forked from maplibre/swiftui-dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayers.swift
149 lines (130 loc) · 5.7 KB
/
Layers.swift
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
import CoreLocation
import MapLibre
import MapLibreSwiftDSL
import SwiftUI
// A collection of points with various
// attributes
@MainActor
let pointSource = ShapeSource(identifier: "points") {
// Uses the DSL to quickly construct point features inline
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 51.47778, longitude: -0.00139))
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 0, longitude: 0)) { feature in
feature.attributes["icon"] = "missing"
feature.attributes["heading"] = 45
}
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 39.02001, longitude: 1.482148)) { feature in
feature.attributes["icon"] = "club"
feature.attributes["heading"] = 145
}
}
@MainActor
let clustered = ShapeSource(identifier: "points", options: [.clustered: true, .clusterRadius: 44]) {
// Uses the DSL to quickly construct point features inline
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 48.2082, longitude: 16.3719))
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 48.3082, longitude: 16.3719))
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 48.2082, longitude: 16.9719))
MLNPointFeature(coordinate: CLLocationCoordinate2D(latitude: 48.0082, longitude: 17.9719))
}
#Preview("Rose Tint") {
MapView(styleURL: demoTilesURL) {
// Silly example: a background layer on top of everything to create a tint effect
BackgroundLayer(identifier: "rose-colored-glasses")
.backgroundColor(.systemPink.withAlphaComponent(0.3))
.renderAboveOthers()
}
.ignoresSafeArea(.all)
}
#Preview("Simple Symbol") {
MapView(styleURL: demoTilesURL) {
// Simple symbol layer demonstration with an icon
SymbolStyleLayer(identifier: "simple-symbols", source: pointSource)
.iconImage(UIImage(systemName: "mappin")!)
}
.ignoresSafeArea(.all)
}
#Preview("Rotated Symbols (Const)") {
MapView(styleURL: demoTilesURL) {
// Simple symbol layer demonstration with an icon
SymbolStyleLayer(identifier: "rotated-symbols", source: pointSource)
.iconImage(UIImage(systemName: "location.north.circle.fill")!)
.iconRotation(45)
}
.ignoresSafeArea(.all)
}
#Preview("Rotated Symbols (Dynamic)") {
MapView(styleURL: demoTilesURL) {
// Simple symbol layer demonstration with an icon
SymbolStyleLayer(identifier: "rotated-symbols", source: pointSource)
.iconImage(UIImage(systemName: "location.north.circle.fill")!)
.iconRotation(featurePropertyNamed: "heading")
}
.ignoresSafeArea(.all)
}
#Preview("Circles with Symbols") {
MapView(styleURL: demoTilesURL) {
// Simple symbol layer demonstration with an icon
CircleStyleLayer(identifier: "simple-circles", source: pointSource)
.radius(16)
.color(.systemRed)
.strokeWidth(2)
.strokeColor(.white)
SymbolStyleLayer(identifier: "simple-symbols", source: pointSource)
.iconImage(UIImage(systemName: "mappin")!.withRenderingMode(.alwaysTemplate))
.iconColor(.white)
}
.ignoresSafeArea(.all)
}
#Preview("Clustered Circles with Symbols") {
MapView(styleURL: demoTilesURL, camera: .constant(MapViewCamera.center(
CLLocationCoordinate2D(latitude: 48.2082, longitude: 16.3719),
zoom: 5,
direction: 0
))) {
// Clusters pins when they would touch
// Cluster == YES shows only those pins that are clustered, using .text
CircleStyleLayer(identifier: "simple-circles-clusters", source: clustered)
.radius(16)
.color(.systemRed)
.strokeWidth(2)
.strokeColor(.white)
.predicate(NSPredicate(format: "cluster == YES"))
SymbolStyleLayer(identifier: "simple-symbols-clusters", source: clustered)
.textColor(.white)
.text(expression: NSExpression(format: "CAST(point_count, 'NSString')"))
.predicate(NSPredicate(format: "cluster == YES"))
// Cluster != YES shows only those pins that are not clustered, using an icon
CircleStyleLayer(identifier: "simple-circles-non-clusters", source: clustered)
.radius(16)
.color(.systemRed)
.strokeWidth(2)
.strokeColor(.white)
.predicate(NSPredicate(format: "cluster != YES"))
SymbolStyleLayer(identifier: "simple-symbols-non-clusters", source: clustered)
.iconImage(UIImage(systemName: "mappin")!.withRenderingMode(.alwaysTemplate))
.iconColor(.white)
.predicate(NSPredicate(format: "cluster != YES"))
}
.onTapMapGesture(on: ["simple-circles-non-clusters"], onTapChanged: { _, features in
print("Tapped on \(features.first?.debugDescription ?? "<nil>")")
})
.expandClustersOnTapping(clusteredLayers: [ClusterLayer(
layerIdentifier: "simple-circles-clusters",
sourceIdentifier: "points"
)])
.ignoresSafeArea(.all)
}
// This example does not work within a package? But it does work when in a real app
// #Preview("Multiple Symbol Icons") {
// MapView(styleURL: demoTilesURL) {
// // Simple symbol layer demonstration with an icon
// SymbolStyleLayer(identifier: "simple-symbols", source: pointSource)
// .iconImage(featurePropertyNamed: "icon",
// mappings: [
// "missing": UIImage(systemName: "mappin.slash")!,
// "club": UIImage(systemName: "figure.dance")!,
// ],
// default: UIImage(systemName: "mappin")!)
// .iconColor(.red)
// }
// .ignoresSafeArea(.all)
// }