如何设置MapKit注释的字形图像?

时间:2018-09-11 14:18:44

标签: mapkit mapkitannotation

我知道这是基本知识,但是在线文档很薄。我是Apple Mapkit的新手,我正在尝试创建一个带有glyphImage覆盖层的简单注释。我的注释可以使用,但是当我尝试设置glyphImage时,地图会爆炸。我正在使用的代码是:

testAnnotation.glyphImage = UIImage(named: "/public/img/site/tester.png");

我在这里做什么错了?

1 个答案:

答案 0 :(得分:0)

我知道了:

var testAnnotation = new MarkerAnnotation(test, {
        title: "This is a Test!",
        subtitle: "Testing Apple MapKit",
        glyphImage: {
                1: "/images/testimage.png"
            }
        });