我正在使用MapBox
离线图片,我想添加注释到
地图以编程方式使用MapBox iOS SDK
,但无法使用
想办法。有人可以给我一些例子或提示吗?
提前致谢!
答案 0 :(得分:1)
这是从mapbox.com获取的示例代码:
RMPointAnnotation *annotation = [[RMPointAnnotation alloc] initWithMapView:mapView
coordinate:mapView.centerCoordinate
andTitle:@"Hello, world!"];
[mapView addAnnotation:annotation];