Skip to content

Commit ca5e1a0

Browse files
committed
Remove beta mark for map
1 parent 6ceb7f2 commit ca5e1a0

File tree

4 files changed

+9
-35
lines changed

4 files changed

+9
-35
lines changed

SNUTT-2022/SNUTT/Assets/Assets.xcassets/Icons/map.beta.imageset/Contents.json

Lines changed: 0 additions & 22 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.

SNUTT-2022/SNUTT/Views/Components/LectureMapView.swift

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,14 @@ struct LectureMapView: View {
1616
@Environment(\.colorScheme) var colorScheme
1717

1818
var body: some View {
19-
ZStack(alignment: .topTrailing) {
20-
KakaoMapView(showMapView: $showMapView,
21-
isMapNotInstalledAlertPresented: $isMapNotInstalledAlertPresented,
22-
colorScheme: colorScheme,
23-
buildings: buildings)
24-
.onDisappear {
25-
showMapView = false
26-
}
27-
.frame(maxWidth: .infinity, maxHeight: .infinity)
28-
29-
Image("map.beta")
30-
}
31-
.alert("실행 가능한 지도 어플리케이션이 없습니다.", isPresented: $isMapNotInstalledAlertPresented, actions: {})
19+
KakaoMapView(showMapView: $showMapView,
20+
isMapNotInstalledAlertPresented: $isMapNotInstalledAlertPresented,
21+
colorScheme: colorScheme,
22+
buildings: buildings)
23+
.onDisappear {
24+
showMapView = false
25+
}
26+
.frame(maxWidth: .infinity, maxHeight: .infinity)
27+
.alert("실행 가능한 지도 어플리케이션이 없습니다.", isPresented: $isMapNotInstalledAlertPresented, actions: {})
3228
}
3329
}

0 commit comments

Comments
 (0)