以编程方式向离线地图添加注释

时间:2014-04-09 11:46:52

标签: mapbox

我正在使用MapBox离线图片,我想添加注释到
地图以编程方式使用MapBox iOS SDK,但无法使用 想办法。有人可以给我一些例子或提示吗?

提前致谢!

1 个答案:

答案 0 :(得分:1)

这是从mapbox.com获取的示例代码:

RMPointAnnotation *annotation = [[RMPointAnnotation alloc] initWithMapView:mapView
                                                                coordinate:mapView.centerCoordinate
                                                                  andTitle:@"Hello, world!"];

[mapView addAnnotation:annotation];