百度地图自定义锚点,自定义泡泡View

案例图片-锚点.png
首先这是真实项目中的简单案例,锚点图片自定义,锚点上面带有数字并且锚点右侧需要有文字展示;
由于百度SDK自带锚点BMKAnnotationView展示方式并不符合我们的需求所以需要我们自定义,直接贴代码
@interface JKBAnnotationView : BMKAnnotationView

@property (nonatomic, assign) NSInteger     photoNum;

@property (nonatomic, strong) UILabel       *numLabel;

@end
@interface JKBAnnotationView ()

@end

@implementation JKBAnnotationView

- (id)initWithAnnotation:(id<BMKAnnotation>)annotation reuseIdentifier:(NSString *)reuseIdentifier {
    if (self = [super initWithAnnotation:annotation reuseIdentifier:reuseIdentifier]) {
        [self configUI];
    }
    return self;
}

- (void)configUI {

    [self addSubview:self.numLabel];
}

- (void)setPhotoNum:(NSInteger)photoNum {
    if (photoNum > 99) {
        self.numLabel.text = @"99+";
    } else {
        self.numLabel.text = [NSString stringWithFormat:@"%ld",photoNum];
    }
}

#pragma mark - lazy load

- (UILabel *)numLabel {
    if (!_numLabel) {
        _numLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 4, self.width, 14)];
        _numLabel.textColor = [UIColor whiteColor];
        _numLabel.textAlignment = NSTextAlignmentCenter;
        _numLabel.font = [UIFont fontWithName:@"PingFangSC-Regular" size:10];
    }
    return _numLabel;
}

@end
由于项目代码变更,右侧label同理于numLabel,这里不作展示;
-------这就解决了锚点上数字和右侧文字的视图自定义,锚点本身的图片一句话就可以搞定,找到此方法:
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id<BMKAnnotation>)annotation
修改annotaion即可:
annotationView.image = [UIImage imageNamed:@"你的图片"];
-------这是解决了锚点图片的自定义,那么问题来了

怎么替换系统本身的annotionView样式来展示我们自定义的View呢?视图数据的赋值又是怎么进行的?接下来我们首先解决视图数据赋值的问题:

百度SDK自带的annotion有两个属性,subtitle和title,他可以作为你初始化锚点传值的介质来给我们的'数字'和'右侧文字'赋值,如果你不愿意当然我们可以自定义自己的annotation(继承自BMKPointAnnotation),贴代码:

@interface JKBPointAnnotation : BMKPointAnnotation

@property (nonatomic, copy) NSString *xx;

@property (nonatomic, copy) NSString *xxxx;

@property (nonatomic, copy) NSString *xxxxxx;

@property (nonatomic, copy) NSString *xxxxxxxxxx;

@end
这样我们可以拓展n个属性来适应我们的自定义view >o< >o< 现在展示的view有了,给view赋值的介质有了,但是具体在哪里赋值呢,贴代码:
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id<BMKAnnotation>)annotation {
    if ([annotation isKindOfClass:[JKBPointAnnotation class]])
       {
           static NSString *reuseIndetifier = @"annotationReuseIndetifier";
           JKBAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:reuseIndetifier];
           if (annotationView == nil)
           {
               annotationView = [[JKBAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:reuseIndetifier];
           }
           annotationView.image = [UIImage imageNamed:@"icon_map"];
           annotationView.photoNum = [annotation.title integerValue];
           return annotationView;
       }
       return nil;
}
给annotationView.photoNum 赋值的时候用了annotation.title,这个title是我用的系统自带的属性,次数可以使用自己自定义的属性,可能需要进行annotation的类型强转,这里自行处理;

这样我们就完成了锚点自定义,接下来给大家介绍paopaoView样式自定义,也就是点击锚点弹出来的视图,上案例:

案例2-泡泡View.png
当我们点击锚点弹出这样一个视图的时候,百度SDK自带的泡泡View并不能满足我们的需求所以还是需要我们自定义样式(继承自UiView就可以),这里省略自定义过程,自定义泡泡View数据源依然使用我们上述使用的自定义annotation即可,赋值代码:
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id<BMKAnnotation>)annotation {
    if ([annotation isKindOfClass:[JKBPointAnnotation class]])
       {
           static NSString *reuseIndetifier = @"annotationReuseIndetifier";
           JKBAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:reuseIndetifier];
           if (annotationView == nil)
           {
               annotationView = [[JKBAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:reuseIndetifier];
           }
           annotationView.image = [UIImage imageNamed:@"icon_map"];
           annotationView.photoNum = [annotation.title integerValue];
           annotationView.canShowCallout = ((JKBPointAnnotation *)annotation).imageStr.length == 0 ? NO : YES;
           annotationView.numLabel.width = annotationView.width;
           JKBPaoPaoView *customPopView = [[JKBPaoPaoView alloc] init];
           customPopView.frame = CGRectMake(0, 0, 320.0f, 250.0f);
           customPopView.imageStr =((JKBPointAnnotation *)annotation).imageStr;
           customPopView.serviceLocationStr = ((JKBPointAnnotation *)annotation).serviceLocationStr;
           customPopView.servicePeopelStr = ((JKBPointAnnotation *)annotation).servicePeopelStr;
           customPopView.locationStr = ((JKBPointAnnotation *)annotation).locationStr;

           BMKActionPaopaoView *pView = [[BMKActionPaopaoView alloc] initWithCustomView:customPopView];
           pView.layer.masksToBounds = YES;
           pView.layer.cornerRadius = 10;
           pView.backgroundColor = [UIColor whiteColor];
           pView.frame = customPopView.frame;
           annotationView.paopaoView = pView;
           return annotationView;
       }
       return nil;
}
简单粗糙,请勿见怪 0.0

可能还会有朋友们问,自定义的annotation那些属性是怎么拥有值得,这就需要我们在实际请求中从后台获取到位置消息,然后给annotion的属性赋值就好了,当给mapView添加一个annotaion时,便会执行我们的viewForAnnotation代理方法。

结束

(任何问题欢迎下方留言一起探讨!)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容