騰訊地圖仿微信發送位置功能

如下內容轉載自麪糊的文章《模仿微信發送位置功能》git

做者:麪糊微信

連接:https://www.jianshu.com/p/47b3ada2e36dide

來源:簡書ui

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

前言

微信的發送位置功能是一個十分方便的功能,他會定位用戶當前所在地點,而後請求用戶周邊的POI,而且還能夠經過拖動地圖來獲取其餘的位置發送給對方,本Demo是結合騰訊地圖SDK來實現相似的功能。orm

使用場景

拖動地圖選擇地圖的中心點,而後請求該點周邊的門店信息,能夠經過設置搜索分類來指定搜索門店的類型,如:美食、學校等。blog

準備

核心代碼:

一、設置大頭針,固定在地圖中央,並監聽地圖移動的時候大頭針跟隨移動:get

- (void)mapViewRegionChange:(QMapView *)mapView {
    // 更新位置
    _annotation.coordinate = mapView.centerCoordinate;
}

二、配置周邊檢索功能,將檢索類型設置爲"美食":string

- (void)searchCurrentLocationWithKeyword:(NSString *)keyword {
CLLocationCoordinate2D centerCoord = self.mapView.centerCoordinate;

    QMSPoiSearchOption *option = [[QMSPoiSearchOption alloc] init];
    if (keyword.length > 0) {
        option.keyword = keyword;
    }
    option.boundary = [NSString stringWithFormat:@"nearby(%f,%f,2000,1)", centerCoord.latitude, centerCoord.longitude];
    [option setFilter:@"category=美食"];
    [self.mapSearcher searchWithPoiSearchOption:option];
}

三、解析檢索結果,移動地圖視野,並將結果顯示在tableView上:it

- (void)searchWithPoiSearchOption:(QMSPoiSearchOption *)poiSearchOption didReceiveResult:(QMSPoiSearchResult *)poiSearchResult {
    NSLog(@"%@", poiSearchResult);

    if (poiSearchResult.count == 0) {
        return;
    }

    // 地圖移動到搜索結果的第一個位置
    if (_searchBar.text.length > 0) {
        _selectedIndex = 0;
        QMSPoiData *firstData = poiSearchResult.dataArray[0];
        _annotation.coordinate = firstData.location;
        [self.mapView setCenterCoordinate:firstData.location animated:YES];
    } else {
        _selectedIndex = -1;
    }

    _searchResultArray = poiSearchResult.dataArray;
    [_searchResultTableView reloadData];
}

以上就是核心代碼,在Demo中還添加了用於顯示地址的TableView以及搜索位置的SearchBar,有興趣的同窗能夠在文章最下方進入碼雲下載完整示例。

示例:搜索西二旗地鐵附近的美食

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

相關文章
相關標籤/搜索