我是MapBox IOS sdk中的新手,我不知道如何在MapBox中加載自定義地圖。 這裏我的自定義地圖:如何在MapBox中顯示自定義地圖IOS sdk
和我的代碼:
#define kMapboxMapID @"faridullah.loj1n5f3"
- (void)viewDidLoad {
[super viewDidLoad];
RMMapboxSource *onlineSource = [[RMMapboxSource alloc] initWithMapID:kMapboxMapID];
RMMapView *mapView = [[RMMapView alloc] initWithFrame:self.view.bounds andTilesource:onlineSource];
mapView.zoom = 5;
mapView.delegate = self;
mapView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
[self.view addSubview:mapView];
mapView.showsUserLocation=YES;
}
但標記亙古設備上顯示...
你的問題到底是什麼?該文檔有很好的示例代碼 – jalone
@jalone我的問題是,標記不會顯示在設備上。 – Farid