如何获得iPhone地图应用程序蓝点与浅蓝色字段的当前位置?

时间:2015-10-19 21:14:21

标签: swift annotations mapkit

我认为标题非常自我解释。目前,当我为当前位置添加默认注释时:

let currentAnnot = MKPointAnnotation()
currentAnnot.coordinate = loc.coordinate
mainMap.addAnnotation(currentAnnot)

它给了我一个红色别针。我想要与Apple iPhone地图应用程序默认使用的浅蓝色字段相同的蓝点。是否有特殊名称,如何添加?

1 个答案:

答案 0 :(得分:7)

这是因为您正在添加注释(引脚)而不是用户位置。

使用以下

启用它
mapView.showsUserLocation = true

Also check out a tutorial which may help