我使用pod 'BaiduMapKit在代码中配置了百度地图,并在视图中显示地图。
如何在百度地图的当前位置设置标记并更改相机位置?

//现在,我解决了如何设置标记的问题,但实际上我的相机位置没有移动。

- (void)viewDidLoad {
           [super viewDidLoad];
           anotation = [[BMKPointAnnotation alloc]init];
           CLLocationCoordinate2D coor;

           coor.latitude  = 22.2593;
           coor.longitude  = 70.7777;
           anotation.coordinate = coor;
           anotation.title  = @"this is rajkot";
           [mapView addAnnotation:anotation];
           mapView.delegate = self;

     }

最佳答案

CLLocationCoordinate2D coor;
coor.latitude  = 22.2593;
coor.longitude  = 70.7777;
mapView.centerCoordinate = coor


试试这个换相机

10-08 16:56