Skip to content

Commit 69d88d8

Browse files
Display custom pin icons in Red Window search
1 parent 886fe4a commit 69d88d8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

MCMaps/Red Window/Views/Search/RedWindowSearchLandmarkResultCell.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,12 @@ struct RedWindowSearchLandmarkResultCell: View {
5151
Text(landmark.position.accessibilityReadout)
5252
.foregroundStyle(.secondary)
5353
} icon: {
54-
Image(systemName: landmarkType.symbol)
55-
.foregroundStyle(landmark.color?.swiftUIColor ?? .accent)
54+
Image(
55+
systemName: landmarkType == .pin
56+
? landmark.icon?.resolveSFSymbol(in: .pin) ?? "mappin"
57+
: landmarkType.symbol
58+
)
59+
.foregroundStyle(landmark.color?.swiftUIColor ?? .accent)
5660
}
5761
.onTapGesture {
5862
redWindowEnvironment.mapCenterCoordinate = landmark.position

0 commit comments

Comments
 (0)