0

Mkmapview 内の 2 つの注釈を色付きの線で接続するにはどうすればよいですか?

4

3 に答える 3

1

そのためにGoogle方向APIが利用可能です..出発地と目的地の場所を渡します

//http://maps.googleapis.com/maps/api/directions/jsonorigin=origin_place&destination=destination_place&waypoints=Charlestown,MA|Lexington,MA&sensor=false

解析して座標を取得した JSON 応答が返されます。それと一線を画す

self.routeLine = [MKPolyline polylineWithPoints:arrPoints count:routeArray.count];
于 2012-11-07T12:35:38.450 に答える
0

UIImageViewここでは、オブジェクト routeView をクラスとして作成し、lineColor をUIColor.h ファイルのクラスとして作成します。

UIImageView* routeView;  
UIColor* lineColor; 

メソッドでこのコードを書いた後viewDidLoad:..

routeView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, mapView.frame.size.width, mapView.frame.size.height)];
routeView.userInteractionEnabled = NO;
lineColor = [UIColor magentaColor];
[mapView addSubview:routeView];

そして、線を描きたいときに更新します..また、そこroutesNSMutableArray保存しますCLLocation(緯度経度)

-(void) updateRouteView 
{
    CGContextRef context =  CGBitmapContextCreate(nil, 
                                                  routeView.frame.size.width, 
                                                  routeView.frame.size.height, 
                                                  8, 
                                                  4 * routeView.frame.size.width,
                                                  CGColorSpaceCreateDeviceRGB(),
                                                  kCGImageAlphaPremultipliedLast);

    CGContextSetStrokeColorWithColor(context, lineColor.CGColor);
    CGContextSetRGBFillColor(context, 0.0, 0.0, 1.0, 1.0);
    CGContextSetLineWidth(context, 3.0);

    for(int i = 0; i < routes.count; i++) 
    {
        CLLocation* location1 = [routes objectAtIndex:i];
        CGPoint point = [mapView convertCoordinate:location1.coordinate toPointToView:routeView];
        if(i == 0) 
        {
            CGContextMoveToPoint(context, point.x, routeView.frame.size.height - point.y);
        }
        else 
        {
            CGContextAddLineToPoint(context, point.x, routeView.frame.size.height - point.y);
        }
    }

    CGContextStrokePath(context);

    CGImageRef image = CGBitmapContextCreateImage(context);
    UIImage* img = [UIImage imageWithCGImage:image];

    routeView.image = img;
    CGContextRelease(context);

}

このリンクも参照してくださいiphone-how-to-draw-line- between-two-point-on-mapkits

于 2012-11-07T13:03:20.477 に答える
0

これは私には複雑に見えます。オンラインで別の解決策を見つけました。最初にオーバーレイを mapView に追加する必要がある場所

CLLocationCoordinate2D coordinateArray[2];
coordinateArray[0] = start_location;
coordinateArray[1] = end_location;
self.routeLine = [MKPolyline polylineWithCoordinates:coordinateArray count:2];
/***********************************************/

[_mapView addOverlay:self.routeLine];

次に、viewcontroller を mkmapviewdelegate として設定し、デリゲート メソッドを実装します。

-(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id<MKOverlay>)overlay{
if(overlay == self.routeLine)
{
    if(nil == self.routeLineView)
    {
        self.routeLineView = [[MKPolylineView alloc] initWithPolyline:self.routeLine];
        self.routeLineView.fillColor = [UIColor redColor];
        self.routeLineView.strokeColor = [UIColor redColor];
        self.routeLineView.lineWidth = 5;
    }
    return self.routeLineView;
}
return nil;}

しかし、まだ表示されません。何が間違っていますか?

于 2012-11-07T13:15:04.377 に答える