騰訊位置服務教你快速實現距離測量小工具

如下內容轉載自麪糊的文章《騰訊地圖SDK距離測量小工具》

做者:麪糊git

連接:https://www.jianshu.com/p/6e5...ide

來源:簡書工具

著做權歸做者全部。商業轉載請聯繫做者得到受權,非商業轉載請註明出處。ui

前言

爲了熟悉騰訊地圖SDK中的QGeometry幾何類,以及點和線之間的配合,編寫了這個能夠在地圖上面打點並獲取直線距離的小Demo。spa

使用場景

對於一些須要快速知道某段並非很長的路徑,而且須要本身來規劃路線的場景,使用騰訊地圖的路線規劃功能可能並非本身想要的結果,而且須要時刻聯網。
該功能主旨本身在地圖上面規劃路線,獲取這條路線的距離,而且能夠將其保存爲本身的路線。code

可是因爲只是經過經緯度來計算的直線距離,在精度上會存在必定的偏差。blog

準備

流程

一、在MapView上添加自定義長按手勢,並將手勢在屏幕上的點轉爲地圖座標,添加Marker:rem

- (void)setupLongPressGesture {
    self.addMarkerGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(addMarker:)];
    [self.mapView addGestureRecognizer:self.addMarkerGesture];
}

- (void)addMarker:(UILongPressGestureRecognizer *)gesture {
    if (gesture.state == UIGestureRecognizerStateBegan) {
        // 取點
        CLLocationCoordinate2D location = [self.mapView convertPoint:[gesture locationInView:self.mapView] toCoordinateFromView:self.mapView];
        QPointAnnotation *annotation = [[QPointAnnotation alloc] init];
        annotation.coordinate = location;
        
        // 添加到路線中
        [self.annotationArray addObject:annotation];
        
        [self.mapView addAnnotation:annotation];
        [self handlePoyline];
    }
}
  • 騰訊地圖的QMapView類中,提供了能夠將屏幕座標直接轉爲地圖座標的便利方法:- (CLLocationCoordinate2D)convertPoint: toCoordinateFromView:

二、使用添加的Marker的座標點,繪製Polyline:get

- (void)handlePoyline {
    [self.mapView removeOverlays:self.mapView.overlays];
    
    // 判斷是否有兩個點以上
    if (self.annotationArray.count > 1) {
        NSInteger count = self.annotationArray.count;
        CLLocationCoordinate2D coords[count];
        for (int i = 0; i < count; i++) {
            QPointAnnotation *annotation = self.annotationArray[i];
            coords[i] = annotation.coordinate;
        }
        
        QPolyline *polyline = [[QPolyline alloc] initWithCoordinates:coords count:count];
        [self.mapView addOverlay:polyline];
    }
    
    // 計算距離
    [self countDistance];
}
  • 這裏須要注意的是,每次從新添加Overlay的時候,須要將以前的Overlay刪除掉。目前騰訊地圖還不支持在同一條Polyline中繼續修改。

三、計算距離:QGeometry是SDK提供的有關幾何計算的類,在該類中提供了衆多工具方法,如"座標轉換、判斷相交、外接矩形"等方便的功能it

- (void)countDistance {
    _distance = 0;
    
    NSInteger count = self.annotationArray.count;
    
    for (int i = 0; i < count - 1; i++) {
        QPointAnnotation *annotation1 = self.annotationArray[i];
        QPointAnnotation *annotation2 = self.annotationArray[i + 1];
        _distance += QMetersBetweenCoordinates(annotation1.coordinate, annotation2.coordinate);
    }
    
    [self updateDistanceLabel];
}
  • QMetersBetweenCoordinates()方法接收兩個CLLocationCoordinate2D參數,並計算這兩個座標之間的直線距離

示例:經過打點連線的方式獲取路線的總距離

2081507-67548862167eee7c.jpg

連接

感興趣的同窗能夠在碼雲中下載Demo嘗試一下。

相關文章
相關標籤/搜索