iOS基於百度地圖的開發(2)——擷取POI

來源:互聯網
上載者:User

1. 首先進行搜尋

CLLocationDistance radiusMeters = 1000; //設定搜尋範圍BMKSearch* search = [[BMKSearch alloc] init]; //建立搜尋對象search.delegate = self; //代理設定為自身,搜尋之後會自動回調下一步中的函數[search poiSearchNearBy:"KFC" center:mapView.centerCoordinate radius:radiusMeters pageIndex:0]; //以螢幕中心位置來搜尋KFC//[search release];//注意,這裡不能release,否則無法搜尋。應該將search定義為成員變數

2. 處理搜尋結果

- (void)onGetPoiResult:(NSArray*)poiResultList searchType:(int)type errorCode:(int)error{if (error == BMKErrorOk) {BMKPoiResult* result = [poiResultList objectAtIndex:0];for (int i = 0; i < result.poiInfoList.count; ++i) {BMKPoiInfo* poi = [result.poiInfoList objectAtIndex:i];BMKPointAnnotation* item = [[BMKPointAnnotation alloc]init];item.coordinate = poi.pt;item.title = poi.name;[mapView addAnnotation:item];[item release];}}}

上邊會自動回調,將搜尋到的POI在地圖上通過Annotation顯示出來。

iOS基於百度地圖的開發(1)——使用者當前位置

iOS基於百度地圖的開發(2)——擷取POI

iOS基於百度地圖的開發(3)——地址搜尋

iOS基於百度地圖的開發(4)——路徑搜尋

iOS基於百度地圖的開發(5)——核心問題匯總

iOS基於百度地圖的開發(6)——google座標轉換成百度座標

iOS基於百度地圖的開發(7)——百度座標轉換成Google座標

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.