本文整理匯總了Java中com.baidu.mapapi.map.MapView.regMapTouchListner方法的典型用法代碼示例。如果您正苦於以下問題:Java MapView.regMapTouchListner方法的具體用法?Java MapView.regMapTouchListner怎麽用?Java MapView.regMapTouchListner使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.baidu.mapapi.map.MapView
的用法示例。
在下文中一共展示了MapView.regMapTouchListner方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onCreate
import com.baidu.mapapi.map.MapView; //導入方法依賴的package包/類
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 初始化
initEngineManager(this);
// 布局獲取ID
setContentView(R.layout.pyp_page_map);
mMapView = (MapView) findViewById(R.id.bmapView);
mMapView.setBuiltInZoomControls(true);
mMapController = mMapView.getController();
GeoPoint point = new GeoPoint(APPCodeConst.Y_pyp, APPCodeConst.X_pyp);// 設置地圖中心
mMapController.setCenter(point);
mMapController.setZoom(18);//放大級數
mMapController.enableClick(true); //設置地圖是否響應點擊事件 .
//實例化監聽事件
mMapView.regMapViewListener(mBMapManager, mMapListener);
mMapView.regMapTouchListner(mapTouchListener);
if(satellite == true){ //設置衛星圖顯示
mMapView.setSatellite(true);
}else{
mMapView.setSatellite(false);
}
}
示例2: onCreate
import com.baidu.mapapi.map.MapView; //導入方法依賴的package包/類
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 初始化
initEngineManager(this);
// 布局獲取ID
setContentView(R.layout.pyp_page_map);
mMapView = (MapView) findViewById(R.id.bmapView);
//實例化監聽事件
mMapView.regMapViewListener(mBMapManager, mMapListener);
mMapView.regMapTouchListner(mapTouchListener);
//實例化工具
myLocationOverlay = new MyLocationOverlay(mMapView);
mLocClient = new LocationClient(this.getApplicationContext());
option = new LocationClientOption();
myListener = new MyLocationListenner();
locData = new LocationData();
mLocClient.setAK(APPCodeConst.ak);
mLocClient.registerLocationListener(myListener);
mLocClient.start();
mLocClient.requestLocation();
//對應方法
setOption();
}