显示没有引脚的当前位置

时间:2015-09-28 14:51:25

标签: ios objective-c

如何显示没有引脚(或模糊点)的当前位置并使用引脚显示所有其他位置?

我的代码:http://pastebin.com/dJzEZMHv

1 个答案:

答案 0 :(得分:1)

将以下代码添加到

-(MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation method

    if([annotation isKindOfClass:[MKUserLocation class]])
        return nil; 

}