• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 添加自定义注释引脚

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:22:46 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试在折线的起点和终点添加自定义注释图钉。但我不知道该怎么做。这是我的 map 图片。

Green annotation pin on the current location of user

我想在折线的起点或终点添加绿色注释图钉。

这是我的代码

- (MKAnnotationView *)mapViewMKMapView *)mapView viewForAnnotationid <MKAnnotation>)annotation
{
    if (annotation==mapView.userLocation) {

        MKAnnotationView *annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier"currAnno"];

        if (annotationView == nil) {
            annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier"currAnno"];
        }

        annotationView.canShowCallout=YES;
        annotationView.image = [UIImage imageNamed"mapPin.png"];

        return annotationView;


    }else{

        static NSString *viewId = @"MKAnnotationView";
        MKAnnotationView *annotationView = (MKAnnotationView*)
        [mapView dequeueReusableAnnotationViewWithIdentifier:viewId];

        if (annotationView == nil) {
            annotationView = [[MKAnnotationView alloc]
                              initWithAnnotation:annotation reuseIdentifier:viewId];
        }

        annotationView.canShowCallout=YES;
        annotationView.image = [UIImage imageNamed"mapPin.png"];//set your image here
        return annotationView;
    }

}



Best Answer-推荐答案


您需要创建两个注解:一个带有折线起点坐标的注解和一个带有折线终点坐标的注解。将两个注释都添加到 map 中。

注解 View 以相应注解的坐标为中心。如果您希望图像中绿色引脚的底部出现在注释的坐标处(而不是引脚图像的中心),您需要使用 centerOffset 属性>MKAnnotationView 对象向上移动图像:

annotationView.canShowCallout=YES;
annotationView.image = [UIImage imageNamed"mapPin.png"];
// Move the pin image up 20 points to place the bottom of the pin
// at the annotation coordinate (adjust the value -20 to suit)
annotationView.centerOffset = CGPointMake(0, -20);

此示例将注释 View 图像向上移动 20 点(负 y 值将图像向上移动)。但是,您应该为您的图像使用合适的负值,而不是 -20,例如减去图像高度的一半或任何您认为合适的值。

关于ios - 添加自定义注释引脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39179658/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap