1

MKmapkit を使用して iOS マップ上にマップを動かさずに直線を描画したいと考えています。

たとえば、ユーザーがマップから指を離さずにマップ上の 2 つの場所の間に直線を描いた場合、ユーザーが線を描いている間、マップ ビューが動き回らないようにします。

Google で検索しましたが、回答/解決策が見つかりませんでした。
誰か助けてください。

4

2 に答える 2

2

マップキットのスクロールを無効にする

_mapView.scrollEnabled=NO;

そして、コアグラフィックスの助けを借りて線を引きます

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch *touch = [touches anyObject];


    if (drawImage==nil) {
        drawImage=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
        [self.view addSubview:drawImage];
    }

    lastPoint = [touch locationInView:self.view];
    lastPoint.y -= 20;
    }

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

    UITouch *touch = [touches anyObject];
    CGPoint currentPoint = [touch locationInView:drawImage];
    currentPoint.y -= 20;

    UIGraphicsBeginImageContext(drawImage.frame.size);
    [drawImage.image drawInRect:CGRectMake(0, 0, drawImage.frame.size.width,drawImage.frame.size.height)];
    CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
    CGContextSetLineWidth(UIGraphicsGetCurrentContext(), 5.0);
    CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), 0.0, 0.5, 0.6, 1.0);
    CGContextBeginPath(UIGraphicsGetCurrentContext());
    CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);
    CGContextStrokePath(UIGraphicsGetCurrentContext());
    drawImage.image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    lastPoint = currentPoint;

}
于 2013-02-25T08:50:50.007 に答える
0

2 つ以上のポイント/座標間にポリ ラインを描画できます。

ここに答えのある質問があります。出典: Xcode で 2 つの座標間にポリラインを描画する

以下のように MKOverlayView を使用する必要があります。

インターフェイスファイル内

MKPolyline* _routeLine;
MKPolylineView* _routeLineView;

実装ファイル内

すべての座標を

NSMutablrArray *routeLatitudes

それから

MKMapPoint* pointArr = malloc(sizeof(CLLocationCoordinate2D) * [routeLatitudes count]); 
for(int idx = 0; idx < [routeLatitudes count]; idx++)
{
    CLLocationCoordinate2D workingCoordinate;       
    workingCoordinate.latitude=[[routeLatitudes objectAtIndex:idx] doubleValue];
    workingCoordinate.longitude=[[routeLongitudes objectAtIndex:idx] doubleValue];  
    MKMapPoint point = MKMapPointForCoordinate(workingCoordinate);
    pointArr[idx] = point;      
}   
// create the polyline based on the array of points. 
routeLine = [MKPolyline polylineWithPoints:pointArr count:[routeLatitudes count]];
[mapViewHome addOverlay:self.routeLine];
free(pointArr);

およびオーバーレイ デリゲート

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay
  {
   MKOverlayView* overlayView = nil;

 if(overlay == routeLine)
{
    routeLineView = [[[MKPolylineView alloc] initWithPolyline:self.routeLine]  autorelease];
    routeLineView.fillColor = [UIColor colorWithRed:0.945 green:0.027 blue:0.957  alpha:1];
    routeLineView.strokeColor = [UIColor colorWithRed:0.945 green:0.027 blue:0.957 alpha:1];
    routeLineView.lineWidth = 4;

    overlayView = routeLineView;
}
return overlayView;
}
于 2013-02-25T06:47:25.290 に答える