本文主要是介绍百度地图使用(二)自定义大头针和弹出气泡,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
// 根据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
这篇关于百度地图使用(二)自定义大头针和弹出气泡的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!