iOS 百度地图自定义大头针。

// 其方法就是和一个代理方法即可实现

 // 添加一个PointAnnotation

    BMKPointAnnotation *pointAnnotation2 = [[BMKPointAnnotation alloc]init];

    

    CLLocationCoordinate2D coor2;

    coor2.latitude = 39.815;

    coor2.longitude = 116.504;

    pointAnnotation2.coordinate = coor2;

    

    [_mapView addAnnotation:pointAnnotation2];

- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation

{

    NSString *AnnotationViewID = [NSString stringWithFormat:@"renameMark%d",i];

    

    //if (newAnnotation == nil) {

    newAnnotation = [[BMKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotationViewID];

    // 设置颜色

    ((BMKPinAnnotationView*)newAnnotation).pinColor = BMKPinAnnotationColorPurple;

    // 从天上掉下效果

    ((BMKPinAnnotationView*)newAnnotation).animatesDrop = YES;

    // 设置可拖拽

    ((BMKPinAnnotationView*)newAnnotation).draggable = YES;

    //设置大头针图标

    for (BMKPointAnnotation * po in annotationArray) {

  

    }

    ((BMKPinAnnotationView*)newAnnotation).image = [UIImage imageNamed:@"櫃子定位_03"];

    

    UIView *popView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 60)];

    //设置弹出气泡图片

    UIImageView *image = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"lal"]];

    image.frame = CGRectMake(0, 0, 100, 60);

    [popView addSubview:image];

    //    UILabel *driverName = [[UILabel alloc]initWithFrame:CGRectMake(0, 3, 100, 20)];

    driverName.text = @"111";

    driverName.backgroundColor = [UIColor clearColor];

    driverName.font = [UIFont systemFontOfSize:14];

    driverName.textColor = [UIColor whiteColor];

    driverName.textAlignment = NSTextAlignmentCenter;

    [popView addSubview:driverName];

    

    //[newAnnotation addSubview:driverName];

    

    UILabel *carName = [[UILabel alloc]initWithFrame:CGRectMake(0, 25, 100, 20)];

    carName.text = @"123456";

    carName.backgroundColor = [UIColor clearColor];

    carName.font = [UIFont systemFontOfSize:14];

    carName.textColor = [UIColor whiteColor];

    carName.textAlignment = NSTextAlignmentCenter;

    [popView addSubview:carName];

    BMKActionPaopaoView *pView = [[BMKActionPaopaoView alloc]initWithCustomView:popView];

    pView.frame = CGRectMake(0, 0, 100, 60);

    ((BMKPinAnnotationView*)newAnnotation).paopaoView = nil;

    ((BMKPinAnnotationView*)newAnnotation).paopaoView = pView;

    //}

    return newAnnotation;

    

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值