对当前位置的描述?

时间:2011-08-15 12:33:12

标签: iphone android-mapview

有没有办法在注释的蓝点上显示一些文字?现在,当用户点击它时,它只显示“当前位置”。我希望它有点像注释来显示当前地址。哪里有标题和副标题属性可供使用。

我想用自己的注释替换它,但无法想办法。

请指教。 谢谢

1 个答案:

答案 0 :(得分:1)

您应该可以通过在MKMapView Delegate中实现mapView:didSelectAnnotationView:来实现...

- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view{
    if(view.annotation = mapView.userLocation){
        //reverse geocode mapview.userLocation.coordinate to get address
        //then set title
    }
}