iosiOS 地图 自定义以及添加锚点
Posted Yevgeni
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iosiOS 地图 自定义以及添加锚点相关的知识,希望对你有一定的参考价值。
- (void)clickLongPress:(UILongPressGestureRecognizer *)longPress {
CGPoint point = [longPress locationInView:mapView];
CLLocationCoordinate2D coord = [mapView convertPoint:point toCoordinateFromView:mapView];
CLLocation *location = [[CLLocation alloc] initWithLatitude:coord.latitude longitude:coord.longitude];
MKPointAnnotation *annocation = [[MKPointAnnotation alloc] init];
annocation.coordinate = coord;
annocation.title = @"我的锚点";
[mapView addAnnotation:annocation];
}
//代理方法 签协议
MKMapViewDelegate
-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation{
static NSString *annoid = @"str";
MKAnnotationView *annoView = [mapView dequeueReusableAnnotationViewWithIdentifier:annoid];
if (!annoView) {
annoView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annoid];
}
annoView.image = [UIImage imageNamed:@"1"];
return annoView;
}
以上是关于iosiOS 地图 自定义以及添加锚点的主要内容,如果未能解决你的问题,请参考以下文章
R语言使用ggpubr包的ggboxplot函数可视化分组箱图(添加jitter抖动数据点自定义不同分组数据点的形状自定义调色板不添加填充色)
R语言使用ggpubr包的ggboxplot函数可视化分组箱图(添加jitter抖动数据点自定义不同分组数据点的形状自定义调色板不添加填充色)
Java连载109-sychronized关键的用途及其注意点自定义注解
R语言使用ggplot2可视化数据点自定义数据点颜色添加数据点标签并把标签相同的数据点通过线条连接起来(connecting points with lines of same label)