Android中,也就是说java实现,在百度地图定位位置后,怎么根据定位位置(可以有经纬度)获取附近的道路数据
1 回答
萧十郎
TA贡献1815条经验 获得超13个赞
要先设置代理的
self.mapView.delegate = self;
[self.mapView setShowsUserLocation:YES];
这样以后你再看就可以在 - (void)mapViewDidStopLocatingUser:(BMKMapView *)mapView{} 监听了
比如移动到当前位置:
//定位完成后,移动到当前位置
- (void)mapView:(BMKMapView *)mapView didUpdateUserLocation:(BMKUserLocation *)userLocation{
CLLocationCoordinate2Dcoor;
coor.latitude = self.mapView.userLocation.coordinate.latitude;
coor.longitude = self.mapView.userLocation.coordinate.longitude;
[self.mapViewsetCenterCoordinate:coor animated:YES];
}
添加回答
举报
0/150
提交
取消