我是新手..我对MapView和CoreLocation有疑问。如何使mapview显示“蓝点和圆圈动画”,如“地图”应用的“定位我”操作中所示?解决方案可能非常简单,但我对iPhone中的地图不太了解。帮助我,请。
答案 0 :(得分:3)
试试这个
yourMapView.showsUserLocation=YES;
将它放在viewforAnnotation Delegate
中if (annotation == mapView.userLocation)
{
//You can customize the blue dot current location annotation here
return nil;
}