欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ios百度地图开发之显示标注

程序员文章站 2022-06-10 13:15:16
...

demo 地址

MyAnnotation.h文件

#import <Foundation/Foundation.h>
#import <BaiduMapAPI_Map/BMKPointAnnotation.h>
@interface MyAnnotation : BMKPointAnnotation
/** 
 * 图标 
 */
@property (nonatomic, copy) NSString *icon;
@end

MyAnnotation.m文件

#import "MyAnnotation.h"
@implementation MyAnnotation

@end

MyAnnotationView.h文件

#import <BaiduMapAPI_Map/BMKMapView.h>
#import <BaiduMapAPI_Map/BMKAnnotationView.h>
@interface MyAnnotationView : BMKAnnotationView
/**
 * 创建方法 
 *
 *  @param mapView 地图
 *
 *  @return 大头针 
*/
+ (instancetype)annotationViewWithMap:(BMKMapView *)mapView;
@end

MyAnnotationView.m文件

#import "MyAnnotationView.h"
#import "MyAnnotation.h"@implementation MyAnnotationView
- (instancetype)initWithAnnotation:(id<BMKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier{ 
  if (self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]) { 
  }
  return self;
}
+ (instancetype)annotationViewWithMap:(BMKMapView *)mapView{ 
  static NSString *identifier = @"anno"; 
  // 从缓存池中取 MyAnnotationView *annoView = (HXAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier]; 
  // 如果缓存池中没有, 创建一个新的 
  if (annoView == nil) { 
    annoView = [[MyAnnotationView alloc] initWithAnnotation:nil reuseIdentifier:identifier]; 
  } 
  return annoView;
}
- (void)setAnnotation:(MyAnnotation *)annotation{ 
  [super setAnnotation:annotation]; 
  //设置图标 
  self.image = [UIImage imageNamed:@"icon_green"];
}
@end

之后在控制器文件中,首先要先从服务器获取数据,取到数据后,根据经纬度坐标,也就是一个个的Annotation显示到地图上.

//可以使用,anno是标注
[_mapView addAnnotation:_mapView.annotations];
//或者使用,annos是标注数组
[_mapView addAnnotations:_mapView.annotations];

之后在调用BMKMapViewDelegate的方法:

#pragma mark -BMKMapViewDelegate
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation{ 
    // 对用户当前的位置的大头针特殊处理 
    if ([annotation isKindOfClass:[HXAnnotation class]] == NO) {
    return nil;
 }
  // 创建大头针 
  MyAnnotationView *annoView = [MyAnnotationView annotationViewWithMap:mapView]; 
  // 设置模型 
  annoView.annotation = annotation; 
  self.anno = annotation; 
  //初始化泡泡视图 
  DetailsView *detailView = [[[NSBundle mainBundle]loadNibNamed:@"HXDetailsView" owner:nil options:nil] lastObject]; 
  //显示到paopaoView上 
  annoView.paopaoView = [[BMKActionPaopaoView alloc] initWithCustomView:detailView]; 
  // 返回大头针
  return annoView;
}

才能将annoView显示到地图上.
如果是自定义的paopaoView,BMKMapViewDelegate会有如下方法:

-(void)mapView:(BMKMapView *)mapView didSelectAnnotationView:(BMKAnnotationView *)

我在开发过程中,调用上面的方法并没有作用,所以我在自定义的paopaoView里添加了一个按钮,盖满整个paopaoView,之后添加一个按钮的点击事件,以此来响应泡泡的点击,但是如果有很多的标注,需要最点击的泡泡遍历,否则则不能知道点击的是哪个泡泡. 我根据从服务器获取的数据,服务器返回了有关标注的ID,把这个ID设置为paopaoView上按钮的tag值,然后根据按钮tag值来判断点击的是哪个paopaoView.如下代码:

#pragma mark paopao按钮点击
- (void)detailBtnClick:(UIButton *)button{
 //self.annotations是标注数组
 for (int i = 0; i < self.annotations.count; i++) {
   HXMenDList *menDList = self.annotations[i];
   if (button.tag == [menDList.shopId integerValue]) {
   HXDetailsController *detailsV = [[HXDetailsController alloc] init];
 detailsV.menDList = menDList;
   detailsV.coordinate = self.userLocation.location.coordinate;
   [self.navigationController pushViewController:detailsV animated:YES];
   }
 }
}