初始化地圖設定
初始化地圖設定
開始使用TGOS Map API for iOS,必須先建立地圖,方能開始使用各項API服務。完成地圖建立後,即可將地圖加入畫面中,並可設定地圖底色,初始化地圖程式範例說明如下:
@interface BaseMapViewController ()
@end
@implementation BaseMapViewController
{
TGMapView *mapView_;
}
- (void)loadView
{
mapView_ = [[TGMapView alloc]initWithFrame:CGRectZero]; //建立地圖
self.view = mapView_;
mapView_.viewer = [TGViewerPosition viewerWithLatitude:23.58 longitude:120.95 zoom:1]; //設定畫面初始位置
[mapView_ startRendering]; //畫面更新
}
@end