我认为标题非常自我解释。目前,当我为当前位置添加默认注释时:
let currentAnnot = MKPointAnnotation()
currentAnnot.coordinate = loc.coordinate
mainMap.addAnnotation(currentAnnot)
它给了我一个红色别针。我想要与Apple iPhone地图应用程序默认使用的浅蓝色字段相同的蓝点。是否有特殊名称,如何添加?
答案 0 :(得分:7)
这是因为您正在添加注释(引脚)而不是用户位置。
使用以下
启用它mapView.showsUserLocation = true