本文整理匯總了Java中com.amap.api.location.AMapLocationClientOption.setOnceLocation方法的典型用法代碼示例。如果您正苦於以下問題:Java AMapLocationClientOption.setOnceLocation方法的具體用法?Java AMapLocationClientOption.setOnceLocation怎麽用?Java AMapLocationClientOption.setOnceLocation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.amap.api.location.AMapLocationClientOption
的用法示例。
在下文中一共展示了AMapLocationClientOption.setOnceLocation方法的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);
}
}
}
});
}
示例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;
}
示例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;
}
示例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());
}
示例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();
}
示例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();
}
示例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();
}
示例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();
}
示例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;
}
示例10: 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);
}
示例11: 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);
}
示例12: setUpListener
import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
* 設置監聽
*/
private void setUpListener() {
titleLeftImv.setOnClickListener(this);
currentAreaRout.setOnClickListener(this);
fullAreaRout.setOnClickListener(this);
// 添加change事件
mViewProvince.addChangingListener(this);
// 添加change事件
mViewCity.addChangingListener(this);
// 添加change事件
mViewDistrict.addChangingListener(this);
// 添加onclick事件
mConfirmTv.setOnClickListener(this);
// 設置高德地圖
aMapLocationClient = new AMapLocationClient(this.getApplicationContext());
aMapLocationClientOption = new AMapLocationClientOption();
aMapLocationClientOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
aMapLocationClientOption.setOnceLocation(true);
aMapLocationClient.setLocationListener(this);
}
示例13: initLoc
import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
private void initLoc() {
//初始化定位
mLocationClient = new AMapLocationClient(getApplicationContext());
//設置定位回調監聽
mLocationClient.setLocationListener(this);
//初始化定位參數
mLocationOption = new AMapLocationClientOption();
//設置定位模式為高精度模式,Battery_Saving為低功耗模式,Device_Sensors是僅設備模式
mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
//設置是否返回地址信息(默認返回地址信息)
mLocationOption.setNeedAddress(true);
//設置是否隻定位一次,默認為false
mLocationOption.setOnceLocation(true);
//設置是否強製刷新WIFI,默認為強製刷新
mLocationOption.setWifiActiveScan(true);
//設置是否允許模擬位置,默認為false,不允許模擬位置
mLocationOption.setMockEnable(false);
//設置定位間隔,單位毫秒,默認為2000ms
mLocationOption.setInterval(2000);
//給定位客戶端對象設置定位參數
mLocationClient.setLocationOption(mLocationOption);
//啟動定位
mLocationClient.startLocation();
}
示例14: location
import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
/**
* 高德定位
*/
private void location() {
//初始化定位
mLocationClient = new AMapLocationClient(getApplicationContext());
//設置定位回調監聽
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((mSetting.getInt(Setting.AUTO_UPDATE, 3) * Setting.ONE_HOUR * 1000));
//給定位客戶端對象設置定位參數
mLocationClient.setLocationOption(mLocationOption);
//啟動定位
mLocationClient.startLocation();
}
示例15: initAccuracyLocation
import com.amap.api.location.AMapLocationClientOption; //導入方法依賴的package包/類
public static void initAccuracyLocation(AMapLocationClient locationClient, AMapLocationListener listener) {
AMapLocationClientOption locationOption = new AMapLocationClientOption();
// 設置定位模式為高精度模式
locationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
//設置是否返回地址信息(默認返回地址信息)
locationOption.setNeedAddress(true);
//設置是否隻定位一次,默認為false
locationOption.setOnceLocation(false);
//設置是否強製刷新WIFI,默認為強製刷新
locationOption.setWifiActiveScan(true);
//設置是否允許模擬位置,默認為false,不允許模擬位置
locationOption.setMockEnable(false);
//設置定位間隔,單位毫秒,默認為2000ms
locationOption.setInterval(2000);
//給定位客戶端對象設置定位參數
locationClient.setLocationOption(locationOption);
// 設置定位監聽
locationClient.setLocationListener(listener);
}