初始化地圖

初始化地圖

開始使用TGOS Map API for Android,必須先建立地圖,方能開始使用各項API服務。完成地圖建立後,即可將地圖加入畫面中,並可設定地圖底色,初始化地圖程式範例說明如下:

AddMapView = (RelativeLayout)findViewById(R.id.AddMapView);

//放入地圖的Layout,如果需要套疊不同的View,需使用RelativeLayout

try {

_MapView = new TGOnlineMap(this);  //建立TGOSMap

AddMapView.addView(_MapView);  //加入到畫面中

_MapView.setBackgroundColor(Color.rgb(165,191,221));  //設定地圖底色

} catch (TGRuntimeRemoteException e) {

e.printStackTrace();

}

 

回到上方