iOS如何在百度地图添加多个标注

发布于 2022-08-26 19:36:23 字数 1101 浏览 14 评论 0

  - (void) viewDidAppear:(BOOL)animated {
for (int i = 0; i < 3; i++) {
    BMKPointAnnotation* annotation = [[BMKPointAnnotation alloc]init];
    CLLocationCoordinate2D coor;
    coor.latitude = 39.915 + i*10;
    coor.longitude = 116.404 + i*10;
    annotation.coordinate = coor;
    annotation.title = @"这里是北京";
     [_mapView   addAnnotation:annotation];   
 }     

}

- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id<BMKAnnotation>)annotation{
if ([annotation isKindOfClass:[BMKPointAnnotation class]]) {
    BMKPinAnnotationView *newAnnotationView = (BMKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"AnnotationView"];
    newAnnotationView = [[BMKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"AnnotationView"];
    newAnnotationView.pinColor = BMKPinAnnotationColorPurple;
    newAnnotationView.animatesDrop = YES;// 设置该标注点动画显示
    return newAnnotationView;
}
return nil;

}

上面的代码只显示一个标注,如果是调用系统MapKit的库就是显示多个标注,不知道百度地图是如何显示多个标注的。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰沐子 2022-09-02 19:36:23
coor.latitude = 39.915 + i*10;
coor.longitude = 116.404 + i*10;
这里把10改成小数就行了。希望新手有帮助
厌味 2022-09-02 19:36:23

[_mapView addAnnotation:annotation];

这个用 addAnnotations 方法
先把annotation加到数组里

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文