當前位置: 首頁>>代碼示例>>Java>>正文


Java AMapLocationClientOption.setLocationMode方法代碼示例

本文整理匯總了Java中com.amap.api.location.AMapLocationClientOption.setLocationMode方法的典型用法代碼示例。如果您正苦於以下問題:Java AMapLocationClientOption.setLocationMode方法的具體用法?Java AMapLocationClientOption.setLocationMode怎麽用?Java AMapLocationClientOption.setLocationMode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.amap.api.location.AMapLocationClientOption的用法示例。


在下文中一共展示了AMapLocationClientOption.setLocationMode方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: initLocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
private void initLocation() {
    mLocationClient = new AMapLocationClient(this);
    AMapLocationClientOption option = new AMapLocationClientOption();
    option.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    option.setOnceLocation(true);
    mLocationClient.setLocationOption(option);
    mLocationClient.setLocationListener(new AMapLocationListener() {
        @Override
        public void onLocationChanged(AMapLocation aMapLocation) {
            if (aMapLocation != null) {
                if (aMapLocation.getErrorCode() == 0) {
                    String city = aMapLocation.getCity();
                    String district = aMapLocation.getDistrict();
                    String location = StringUtils.extractLocation(city, district);
                    mCityAdapter.updateLocateState(LocateState.SUCCESS, location);
                } else {
                    //定位失敗
                    mCityAdapter.updateLocateState(LocateState.FAILED, null);
                }
            }
        }
    });
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:24,代碼來源:CityPickerActivity.java

示例2: getDefaultOption

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
private AMapLocationClientOption getDefaultOption() {
        LogUtil.e("獲取定位選項");
        AMapLocationClientOption option = new AMapLocationClientOption();
//          定位模式:1 高精度、2僅設備、3僅網絡
// 設置高精度模式
        option.setLocationMode(AMapLocationClientOption.AMapLocationMode.Battery_Saving);
//                設置是否優先使用GPS
        option.setGpsFirst(false);
//                連接超時3秒
        option.setHttpTimeOut(3000);
//                設置定位間隔60秒
        option.setInterval(60000);
//                設置是否返回地址,默認返回
        option.setNeedAddress(true);
//                設置是否單次定位
        option.setOnceLocation(false);
        //可選,設置是否等待wifi刷新,默認為false.如果設置為true,會自動變為單次定位,持續定位時不要使用
        option.setOnceLocationLatest(false);
//                設置網絡請求協議
        AMapLocationClientOption.setLocationProtocol(AMapLocationClientOption.AMapLocationProtocol.HTTP);
//                設置是否使用傳感器,不使用
        option.setSensorEnable(false);
        return option;
    }
 
開發者ID:HelloChenJinJun,項目名稱:TestChat,代碼行數:25,代碼來源:LocationManager.java

示例3: getDefaultOption

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
 * 默認的定位參數
 *
 * @author hongming.wang
 * @since 2.8.0
 */
private AMapLocationClientOption getDefaultOption() {
    AMapLocationClientOption mOption = new AMapLocationClientOption();
    mOption.setMockEnable(true);
    mOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);//可選,設置定位模式,可選的模式有高精度、僅設備、僅網絡。默認為高精度模式
    mOption.setGpsFirst(true);//可選,設置是否gps優先,隻在高精度模式下有效。默認關閉
    mOption.setHttpTimeOut(30000);//可選,設置網絡請求超時時間。默認為30秒。在僅設備模式下無效
    mOption.setInterval(2000);//可選,設置定位間隔。默認為2秒
    mOption.setNeedAddress(true);//可選,設置是否返回逆地理地址信息。默認是true
    mOption.setOnceLocation(true);//可選,設置是否單次定位。默認是false
    mOption.setOnceLocationLatest(false);//可選,設置是否等待wifi刷新,默認為false.如果設置為true,會自動變為單次定位,持續定位時不要使用
    AMapLocationClientOption.setLocationProtocol(AMapLocationClientOption.AMapLocationProtocol.HTTP);//可選, 設置網絡請求的協議。可選HTTP或者HTTPS。默認為HTTP
    mOption.setSensorEnable(false);//可選,設置是否使用傳感器。默認是false
    mOption.setWifiScan(true); //可選,設置是否開啟wifi掃描。默認為true,如果設置為false會同時停止主動刷新,停止以後完全依賴於係統刷新,定位位置可能存在誤差
    mOption.setLocationCacheEnable(true); //可選,設置是否使用緩存定位,默認為true
    return mOption;
}
 
開發者ID:Datatellit,項目名稱:xlight_android_native,代碼行數:23,代碼來源:GlanceMainFragment.java

示例4: startLoaction

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
 * 開始定位
 */
private void startLoaction() {
    //初始化定位
    mLocationClient = new AMapLocationClient(getActivity());
    //設置定位回調監聽
    mLocationClient.setLocationListener(this);
    mLocationOption = new AMapLocationClientOption();
    //設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
    mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Battery_Saving);
    //設置是否返回地址信息(默認返回地址信息)
    mLocationOption.setNeedAddress(true);
    //設置是否隻定位一次,默認為false
    mLocationOption.setOnceLocation(false);
    //設置是否強製刷新WIFI,默認為強製刷新
    mLocationOption.setWifiActiveScan(true);
    //設置是否允許模擬位置,默認為false,不允許模擬位置
    mLocationOption.setMockEnable(false);
    //設置定位間隔 單位毫秒
    mLocationOption.setInterval(100 * 1000 * 60 * 60);
    //給定位客戶端對象設置定位參數
    mLocationClient.setLocationOption(mLocationOption);
    //啟動定位
    mLocationClient.startLocation();
    //顯示定位中
    SnackBarUtil.showSnackBar(R.string.locating, mSwipeRefreshLayout, getActivity());
}
 
開發者ID:xiarunhao123,項目名稱:PureNews,代碼行數:29,代碼來源:WeatherFragment.java

示例5: initLocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
 * 初始化高德地圖定位參數
 */
private void initLocation() {
    mLocationClient=new AMapLocationClient(getApplicationContext());
    mLocationClient.setLocationListener(mLocationListener);
    //初始化定位參數
    mLocationOption = new AMapLocationClientOption();
    //設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
    mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    //設置是否返回地址信息(默認返回地址信息)
    mLocationOption.setNeedAddress(true);
    //設置是否隻定位一次,默認為false
    mLocationOption.setOnceLocation(false);
    //設置是否強製刷新WIFI,默認為強製刷新
    mLocationOption.setWifiScan(true);
    //設置是否允許模擬位置,默認為false,不允許模擬位置
    mLocationOption.setMockEnable(false);
    //設置定位間隔,單位毫秒,默認為2000ms
    mLocationOption.setInterval(2000);
    //給定位客戶端對象設置定位參數
    mLocationClient.setLocationOption(mLocationOption);
    // 啟動定位
    mLocationClient.startLocation();
}
 
開發者ID:linchupeng,項目名稱:YourWeather,代碼行數:26,代碼來源:MainActivity.java

示例6: initLocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
private void initLocation() {
    mLocationClient = new AMapLocationClient(this);
    AMapLocationClientOption option = new AMapLocationClientOption();
    option.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    option.setOnceLocation(true);
    mLocationClient.setLocationOption(option);
    mLocationClient.setLocationListener(new AMapLocationListener() {
        @Override
        public void onLocationChanged(AMapLocation aMapLocation) {
            if (aMapLocation != null) {
                if (aMapLocation.getErrorCode() == 0) {
                    String city = aMapLocation.getCity();
                    String district = aMapLocation.getDistrict();
                    Log.e("onLocationChanged", "city: " + city);
                    Log.e("onLocationChanged", "district: " + district);
                    String location = StringUtils.extractLocation(city, district);
                    mCityAdapter.updateLocateState(LocateState.SUCCESS, location);
                } else {
                    //定位失敗
                    mCityAdapter.updateLocateState(LocateState.FAILED, null);
                }
            }
        }
    });
    mLocationClient.startLocation();
}
 
開發者ID:jacksenh,項目名稱:CitySelct,代碼行數:27,代碼來源:CityPickerActivity.java

示例7: initLocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
 * 定位初始化
 */
private void initLocation() {
    //初始化定位
    mLocationClient = new AMapLocationClient(mContext);
    //設置定位回調監聽
    mLocationClient.setLocationListener(this);
    mLocationOption = new AMapLocationClientOption();
    //設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
    mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    //設置是否返回地址信息(默認返回地址信息)
    mLocationOption.setNeedAddress(true);
    //設置是否隻定位一次,默認為false
    mLocationOption.setOnceLocation(false);
    //設置是否強製刷新WIFI,默認為強製刷新
    mLocationOption.setWifiActiveScan(true);
    //設置是否允許模擬位置,默認為false,不允許模擬位置
    mLocationOption.setMockEnable(false);
    //設置定位間隔 單位毫秒
    mLocationOption.setInterval(100 * 1000 * 60 * 60);
    //給定位客戶端對象設置定位參數
    mLocationClient.setLocationOption(mLocationOption);
    //關閉緩存機製
    mLocationOption.setLocationCacheEnable(false);
    //啟動定位
    mLocationClient.startLocation();
}
 
開發者ID:xiarunhao123,項目名稱:Ency,代碼行數:29,代碼來源:MainActivity.java

示例8: initLocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
private void initLocation() {
    //初始化定位
    mLocationClient = new AMapLocationClient(getApplicationContext());
    //設置定位回調監聽
    mLocationClient.setLocationListener(mLocationListener);

    //初始化AMapLocationClientOption對象
    mLocationOption = new AMapLocationClientOption();

    //高精度定位
    mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);

    //獲取一次定位結果
    mLocationOption.setOnceLocation(true);

    //獲取最近3s內精度最高的一次定位結果:
    mLocationOption.setOnceLocationLatest(true);

    mLocationClient.setLocationOption(mLocationOption);

    mLocationClient.startLocation();
}
 
開發者ID:monsterLin,項目名稱:Pigeon,代碼行數:23,代碼來源:WeatherActivity.java

示例9: getDefaultOption

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
 * 默認的定位參數
 * @since 2.8.0
 * @author hongming.wang
 *
 */
private AMapLocationClientOption getDefaultOption(){
	AMapLocationClientOption mOption = new AMapLocationClientOption();
	mOption.setLocationMode(AMapLocationMode.Hight_Accuracy);//可選,設置定位模式,可選的模式有高精度、僅設備、僅網絡。默認為高精度模式
	mOption.setGpsFirst(false);//可選,設置是否gps優先,隻在高精度模式下有效。默認關閉
	mOption.setHttpTimeOut(30000);//可選,設置網絡請求超時時間。默認為30秒。在僅設備模式下無效
	mOption.setInterval(2000);//可選,設置定位間隔。默認為2秒
	mOption.setNeedAddress(true);//可選,設置是否返回逆地理地址信息。默認是true
	mOption.setOnceLocation(false);//可選,設置是否單次定位。默認是false
	mOption.setOnceLocationLatest(false);//可選,設置是否等待wifi刷新,默認為false.如果設置為true,會自動變為單次定位,持續定位時不要使用
	AMapLocationClientOption.setLocationProtocol(AMapLocationProtocol.HTTP);//可選, 設置網絡請求的協議。可選HTTP或者HTTPS。默認為HTTP
	mOption.setSensorEnable(false);//可選,設置是否使用傳感器。默認是false
	mOption.setWifiScan(true); //可選,設置是否開啟wifi掃描。默認為true,如果設置為false會同時停止主動刷新,停止以後完全依賴於係統刷新,定位位置可能存在誤差
	mOption.setLocationCacheEnable(true); //可選,設置是否使用緩存定位,默認為true
	return mOption;
}
 
開發者ID:amapapi,項目名稱:Android_Location_Demo,代碼行數:22,代碼來源:Location_Activity.java

示例10: start

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
@Override
public void start() {
    if (ServiceCheck.isServiceWork(mView.getViewContext(), RecordDBService.RecordDBServiceName)) {
        mView.showToast("記錄服務已經啟動,請先關閉已經啟動的記錄");
    }
    mStoreDbRecord = new StoreDbRecord();

    //region 定位配置
    mLocationClient = new AMapLocationClient(mView.getViewContext());
    //初始化定位參數
    AMapLocationClientOption locationOption = new AMapLocationClientOption();
    //設置定位監聽
    mLocationClient.setLocationListener(this);
    //設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
    locationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    //設置定位間隔,單位毫秒,默認為2000ms
    locationOption.setInterval(2000);
    //設置定位參數
    mLocationClient.setLocationOption(locationOption);
    //endregion
}
 
開發者ID:Alex-ZHOU,項目名稱:VMAndroid,代碼行數:22,代碼來源:StoreDbRecordPresenter.java

示例11: initLocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
private void initLocation() {
    mLocationClient = new AMapLocationClient(mView.getContext().getApplicationContext());
    mLocationClientOption = new AMapLocationClientOption();
    //設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
    mLocationClientOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    //設置是否返回地址信息(默認返回地址信息)
    mLocationClientOption.setNeedAddress(true);
    //設置是否隻定位一次,默認為false
    mLocationClientOption.setOnceLocation(false);
    //設置是否強製刷新WIFI,默認為強製刷新
    mLocationClientOption.setWifiActiveScan(true);
    //設置是否允許模擬位置,默認為false,不允許模擬位置
    mLocationClientOption.setMockEnable(true);
    //設置定位間隔,單位毫秒,默認為2000ms
    mLocationClientOption.setInterval(1000);
    mLocationClient.setLocationOption(mLocationClientOption);
    mLocationClient.setLocationListener(this);
}
 
開發者ID:ZeusChan,項目名稱:LittleFreshWeather,代碼行數:19,代碼來源:SplashPresenter.java

示例12: activate

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
@Override
public void activate(OnLocationChangedListener onLocationChangedListener) {
	mListener = onLocationChangedListener;
	if (mLocationClient == null) {
		mLocationOption = new AMapLocationClientOption();
		//設置定位監聽
		mLocationClient.setLocationListener(this);
		//設置為高精度定位模式
		mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
		mLocationOption.setInterval(5000);//設置自動定位時間間隔
		//設置定位參數
		mLocationClient.setLocationOption(mLocationOption);
		// 此方法為每隔固定時間會發起一次定位請求,為了減少電量消耗或網絡流量消耗,
		// 注意設置合適的定位時間的間隔(最小間隔支持為2000ms),並且在合適時間調用stopLocation()方法來取消定位請求
		// 在定位結束後,在合適的生命周期調用onDestroy()方法
		// 在單次定位情況下,定位無論成功與否,都無需調用stopLocation()方法移除請求,定位sdk內部會移除
		mLocationClient.startLocation();
	}
}
 
開發者ID:jp1017,項目名稱:TheSceneryAlong,代碼行數:20,代碼來源:MyLocationManager.java

示例13: init

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
public void init() {
    //初始化定位參數
    mLocationOption = new AMapLocationClientOption();
    //設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
    mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
    //設置是否返回地址信息(默認返回地址信息)
    mLocationOption.setNeedAddress(true);
    //設置是否隻定位一次,默認為false
    mLocationOption.setOnceLocation(false);
    //設置是否強製刷新WIFI,默認為強製刷新
    mLocationOption.setWifiActiveScan(true);
    //設置是否允許模擬位置,默認為false,不允許模擬位置
    mLocationOption.setMockEnable(false);
    //設置定位間隔,單位毫秒,默認為2000ms
    mLocationOption.setInterval(2000);
}
 
開發者ID:pinguo-sunjianfei,項目名稱:Android-Application-ZJB,代碼行數:17,代碼來源:LocationManager.java

示例14: initlocation

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
     *  獲得位置
     */
    private void initlocation(){
        mlocationClient = new AMapLocationClient(this);
        mLocationOption = new AMapLocationClientOption();
        mlocationClient.setLocationListener(new AMapLocationListener() {
            @Override
            public void onLocationChanged(AMapLocation aMapLocation) {
                locaMapLocation =aMapLocation;
                if (aMapLocation != null) {
                    if (aMapLocation.getErrorCode() == 0) {
                        //定位成功回調信息,設置相關消息
                        aMapLocation.getLocationType();//獲取當前定位結果來源,如網絡定位結果,詳見定位類型表
                        aMapLocation.getLatitude();//獲取緯度
                        aMapLocation.getLongitude();//獲取經度
                        aMapLocation.getAccuracy();//獲取精度信息
                    } else {
                    }
                }
            }
        });
//設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
        mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Battery_Saving);
        mLocationOption.setInterval(30000);
        mlocationClient.setLocationOption(mLocationOption);
        mlocationClient.startLocation();
    }
 
開發者ID:yun2win,項目名稱:yun2win-sdk-android,代碼行數:29,代碼來源:AppContext.java

示例15: onCreate

import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_location);
    context = this;
    initControls();
    mapView.onCreate(savedInstanceState);// 此方法必須重寫
    locationClient = new AMapLocationClient(this.getApplicationContext());
    locationOption = new AMapLocationClientOption();
    // 設置定位模式為低功耗模式
    locationOption.setLocationMode(AMapLocationMode.Battery_Saving);
    // 設置定位監聽
    locationClient.setLocationListener(this);
    initMap();
    initData(this.getIntent().getExtras());
    initActionBar();
}
 
開發者ID:yun2win,項目名稱:yun2win-sdk-android,代碼行數:18,代碼來源:LocationActivity.java


注:本文中的com.amap.api.location.AMapLocationClientOption.setLocationMode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。