HowTo—— Swift2.0在视图中显示地图
东坡肘子 4 人赞同了该文章HowTo系列只提供代码和简单的说明,Xcode Version 12.0 beta 2 (12A6163b)
Swift2.0中,苹果添加了Map,让开发者可以非常容易的在View中添加需要的地图元素。
import SwiftUI
import MapKit
struct MapView: View{
//设置初始显示区域
@State private var region:MKCoordinateRegion = MKCoordinateRegion(
center: CLLocationCoordinate2D(latitude: 38.92083, longitude: 121.63917),
span: MKCoordinateSpan(latitudeDelta: 0.5, longitudeDelta: 0.5)
)
//设置是否持续跟踪用户当前位置
@State private var trackmode = MapUserTrackingMode.follow
//设置标记点信息
let dots:[MapDot] = [
MapDot(title:"point1",
coordinate:CLLocationCoordinate2D(latitude: 38.92083, longitude: 121.63917),
color:.red),
MapDot(title:"point2",
coordinate:CLLocationCoordinate2D(latitude: 38.92183, longitude: 121.62717),
color:.blue)
]
@StateObject var store = Store()
var body: some View {
ZStack(alignment:.bottom){
Map(coordinateRegion: $region,
interactionModes: .all, //.pan .zoom .all
showsUserLocation: true, //是否显示用户当前位置
userTrackingMode:$trackmode, //是否更新用户位置
annotationItems:dots //标记点数据
){item in
//标记点显示,也可以直接使用内置的MapPin,不过MapPin无法响应用户输入
MapAnnotation(coordinate: item.coordinate ){
//不知道是否是bug,目前iOS下无法显示Text,maxOS可以显示
Label(item.title, systemImage: "star.fill")
.font(.body)
.foregroundColor(item.color)
.onTapGesture {
print(item.title)
}
}
}
}
.edgesIgnoringSafeArea(.all)
}
}
//标记点数据,要求符合Identifiable
struct MapDot:Identifiable{
let id = UUID()
let title:String
let coordinate:CLLocationCoordinate2D
let color:Color
}
class Store:ObservableObject {
let manager = CLLocationManager()
init() {
//请求位置访问权限.需要在plist中设置 Privacy - Location When In Use Usage Description
//如果不需要显示当前用户位置,则无需申请权限
#if os(iOS)
manager.requestWhenInUseAuthorization()
#endif
}
}
发布于 2020-07-09 16:48 标签:title,MapDot,HowTo,视图,item,let,Swift2.0,coordinate From: https://www.cnblogs.com/sexintercourse/p/18546808