我知道这是基本知识,但是在线文档很薄。我是Apple Mapkit的新手,我正在尝试创建一个带有glyphImage
覆盖层的简单注释。我的注释可以使用,但是当我尝试设置glyphImage
时,地图会爆炸。我正在使用的代码是:
testAnnotation.glyphImage = UIImage(named: "/public/img/site/tester.png");
我在这里做什么错了?
答案 0 :(得分:0)
我知道了:
var testAnnotation = new MarkerAnnotation(test, {
title: "This is a Test!",
subtitle: "Testing Apple MapKit",
glyphImage: {
1: "/images/testimage.png"
}
});