如何在MapView上表示持续移动的信号?

时间:2012-05-02 20:22:16

标签: ios mkmapview

我刚刚进入iOS上的MapViews,并希望将汽车连续移动为蓝点。这会被视为地图注释吗?

1 个答案:

答案 0 :(得分:2)

是。作为示例,请查看模拟器调试>位置>城市自行车骑。它绕旧金山做了一个慢圈(?)

收听Mapview委托中的更新工具

- (void)mapView:(MKMapView *)amapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
    NSLog(@"im here! - %f,%f",userLocation.location.coordinate.latitude,userLocation.location.coordinate.longitude); 


}

并调整注释工具

- (MKAnnotationView *) mapView:(MKMapView *)amapView viewForAnnotation:(id <MKAnnotation>) annotation{

    if ([annotation isKindOfClass:[MKUserLocation class]]) {
        return nil;
    }
    NSLog(@"annotation = %@",((NSObject *)annotation));
    MKAnnotationView *annView;

    annView = [amapView dequeueReusableAnnotationViewWithIdentifier:@"currentloc"];

    if(!annView)
    {
        annView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"] autorelease];
        ((MKPinAnnotationView *)annView).pinColor = MKPinAnnotationColorGreen;
        ((MKPinAnnotationView *)annView).animatesDrop=TRUE;
        annView.canShowCallout = YES;
        annView.calloutOffset = CGPointMake(-5, 5);
        annView.draggable = YES;
    }
    return annView;
}

我放入的剪辑使用默认蓝点和精度圆圈,返回nil MKUserLocation,但您的实现可能会有所不同。