// 根据anntation生成对应的View
- (BMKAnnotationView *)mapView:(BMKMapView *)mapView viewForAnnotation:(id <BMKAnnotation>)annotation
{
NSString *AnnotationViewID = [NSString stringWithFormat:@"renameMark%d",i];
newAnnotation = [[BMKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotationViewID];
// 设置颜色
((BMKPinAnnotationView*)newAnnotation).pinColor = BMKPinAnnotationColorPurple;
// 从天上掉下效果
((BMKPinAnnotationView*)newAnnotation).animatesDrop = YES;
// 设置可拖拽
((BMKPinAnnotationView*)newAnnotation).draggable = YES;
//设置大头针图标
((BMKPinAnnotationView*)newAnnotation).image = [UIImage imageNamed:@"zhaohuoche"];
UIView *popView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 60)];
//设置弹出气泡图片
UIImageView *image = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"wenzi"]];
image.frame = CGRect
百度地图使用(二)自定义大头针和弹出气泡
最新推荐文章于 2020-12-19 20:11:34 发布
这段代码展示了如何在百度地图(BMKMapView)中自定义大头针(BMKPinAnnotationView)的颜色、动画效果以及设置可拖拽。同时,详细说明了如何创建和配置弹出气泡(BMKActionPaopaoView),包括添加内容标签(如驾驶员姓名和车牌号),并将其与大头针关联。通过这种方法,可以为地图上的标注提供更加丰富的信息展示。
摘要由CSDN通过智能技术生成