本篇記錄我在實現時的思考過程,寫給之後可能遇到困難的我自己也給到需要幫助的人。
寫的比較淺顯,見諒。
在寫專案程式碼的時候,需要把Android端的位置資訊傳輸到伺服器端,通過Netty達到連續傳輸的效果,如下:
我們可以先來看看百度地圖官方給出的相關程式碼
public class MainActivity extends AppCompatActivity {
private MapView mMapView = null;
private BaiduMap mBaiduMap = null;
private LocationClient mLocationClient = null;
private TextView mtextView;
// 是否是第一次定位
private boolean isFirstLocate = true;
// 當前定位元型樣
private MyLocationConfiguration.LocationMode locationMode;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LocationClient.setAgreePrivacy(true);
SDKInitializer.initialize(getApplicationContext());
setContentView(R.layout.activity_main);
mMapView = findViewById(R.id.bmapView);
mtextView = findViewById(R.id.text_tishi);
//開啟交通圖
mBaiduMap = mMapView.getMap();
mBaiduMap.setTrafficEnabled(true);
//開啟地圖的定點陣圖層
mBaiduMap.setMyLocationEnabled(true);
// BaiduMapOptions options = new BaiduMapOptions();
// options.mapType(BaiduMap.MAP_TYPE_SATELLITE);
// MapView mapView = new MapView(this, options);
// setContentView(mapView);衛星地圖view顯示
//定位初始化
LocationClient mLocationClient = null;
try {
mLocationClient = new LocationClient(MainActivity.this);
} catch (Exception e) {
e.printStackTrace();
}
//通過LocationClientOption設定LocationClient相關引數
LocationClientOption option = new LocationClientOption();
option.setOpenGps(true); // 開啟gps
option.setCoorType("bd09ll"); // 設定座標型別
option.setScanSpan(1000);
// 可選,設定地址資訊
option.setIsNeedAddress(true);
//可選,設定是否需要地址描述
option.setIsNeedLocationDescribe(true);
//設定locationClientOption
mLocationClient.setLocOption(option);
//註冊LocationListener監聽器
MyLocationListene myLocationListener = new MyLocationListene();
mLocationClient.registerLocationListener(myLocationListener);
//開啟地圖定點陣圖層
mLocationClient.start();
}
public class MyLocationListene extends BDAbstractLocationListener {
@Override
public void onReceiveLocation(BDLocation location) {
//mapView 銷燬後不在處理新接收的位置
if (location == null || mMapView == null) {
return;
}
LatLng ll = new LatLng(location.getLatitude(), location.getLongitude());
if (isFirstLocate) {
isFirstLocate = false;
//給地圖設定狀態
mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newLatLng(ll));
}
MyLocationData locData = new MyLocationData.Builder()
.accuracy(location.getRadius())
// 此處設定開發者獲取到的方向資訊,順時針0-360
.direction(location.getDirection()).latitude(location.getLatitude())
.longitude(location.getLongitude()).build();
mBaiduMap.setMyLocationData(locData);
// 更換定點陣圖示,這裡的圖片是放在 drawble 檔案下的
BitmapDescriptor mCurrentMarker = BitmapDescriptorFactory.fromResource(R.drawable.icon_gcoding);
// 定位元型樣 地圖SDK支援三種定位元型樣:NORMAL(普通態), FOLLOWING(跟隨態), COMPASS(羅盤態)
locationMode = MyLocationConfiguration.LocationMode.NORMAL;
// 定位元型樣、是否開啟方向、設定自定義定點陣圖示、精度圈填充顏色以及精度圈邊框顏色5個屬性(此處只設定了前三個)。
MyLocationConfiguration mLocationConfiguration = new MyLocationConfiguration(locationMode,true,mCurrentMarker);
// 使自定義的設定生效
mBaiduMap.setMyLocationConfiguration(mLocationConfiguration);
// 顯示當前資訊
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("\n經度:" + location.getLatitude());
stringBuilder.append("\n緯度:"+ location.getLongitude());
stringBuilder.append("\n狀態碼:"+ location.getLocType());
stringBuilder.append("\n國家:" + location.getCountry());
stringBuilder.append("\n城市:"+ location.getCity());
stringBuilder.append("\n區:" + location.getDistrict());
stringBuilder.append("\n街道:" + location.getStreet());
stringBuilder.append("\n地址:" + location.getAddrStr());
mtextView.setText(stringBuilder.toString());
}
}
}
使用者需要建立一個LocationClient物件,為LocationClient設定Option、註冊監聽器(BDAbstractLocationListener)來獲取位置資訊,監聽器得到的BDLocation物件中含有需要的位置資訊,我們需要把他取出。
在思考階段,我想直接把Listener中的BDLocation物件直接取出,把BDLocation物件變成String型別通過Netty傳輸至伺服器端,過程如下:
但是想法很美好,顯示很殘酷,BDAbstractLocationListener並不允許我們這麼做/(ㄒoㄒ)/~~
我建立了MapUtil類,用於獲取位置資訊
public class MapUtil {
public LocationClient mLocationClient = null;//百度地圖服務
private MyLocationListener myListener=new MyLocationListener();//建立監聽器
public BDLocation location;
public MapUtil(LocationClient mLocationClient,BDLocation location)
this.mLocationClient=mLocationClient;//拿到百度地圖api中的服務
this.location=location;//拿到主執行緒中的netty對話管理器
}
public void init(){
LocationClientOption option = new LocationClientOption();
option.setOpenGps(true); // 開啟gps
option.setCoorType("bd09ll"); // 設定座標型別
option.setScanSpan(1000);
// 可選,設定地址資訊
option.setIsNeedAddress(true);
//可選,V7.2版本新增能力
//如果設定了該介面,首次啟動定位時,會先判斷當前Wi-Fi是否超出有效期,若超出有效期,會先重新掃描Wi-Fi,然後定位
option.setWifiCacheTimeOut(5*60*1000);
// option.setIgnoreKillProcess(true);
//可選,設定是否需要地址描述
option.setIsNeedLocationDescribe(true);
mLocationClient.setLocOption(option);//注入百度地圖定位相關設定
mLocationClient.registerLocationListener(myListener);//註冊監聽器
mLocationClient.start();//啟動服務
mLocationClient.requestLocation();
}
public void stop(){
mLocationClient.stop();//停止服務
}
public class MyLocationListener extends BDAbstractLocationListener {
MyLocationListener(){
}
@Override
public void onReceiveLocation(BDLocation location1){
//此處的BDLocation為定位結果資訊類,通過它的各種get方法可獲取定位相關的全部結果
//以下只列舉部分獲取經緯度相關(常用)的結果資訊
//更多結果資訊獲取說明,請參照類參考中BDLocation類中的說明
loction=loction1;
}
}
}
我企圖直接在Listener中拿到引數,結果是可以,但可以的不多
資料只能停留在Listener中,無法帶出Listener,因為Listener是在持續執行中的,相當於是一個while(true)的死迴圈,MapUtil中的Location確實可以拿到位置,但資料也卡在了Listener中。
這個錯誤讓我思考了很久。
最後,我意識到,也許在最開始,我思考的方向就不是正確的,或許它的流程應該是這樣:
於是我把MapUtil類中的傳入的location改為了chatManger
public class MyLocationListener extends BDAbstractLocationListener {
MyLocationListener(){
}
@Override
public void onReceiveLocation(BDLocation location){
//此處的BDLocation為定位結果資訊類,通過它的各種get方法可獲取定位相關的全部結果
//以下只列舉部分獲取經緯度相關(常用)的結果資訊
//更多結果資訊獲取說明,請參照類參考中BDLocation類中的說明
CoderUtil coderUtil=new CoderUtil();//建立CoderUtil類用於處理文字
MyAddress address=coderUtil.transform(location);//將百度地圖中的location類通過CoderUtil轉換為MyAddress類
chatManager.sendData(address);//使用netty對話管理器傳送處理完畢的地址
}
}
以下為chatManger程式碼:
public class ChatManager implements ChatListener{
private String TAG = ChatManager.class.getSimpleName();
public static volatile ChatManager instance = null;
private ChatClient chatClient = null;
private Handler handler;
public ChatManager(){
chatClient=new ChatClient();
}
public static ChatManager getInstance(Handler handler) {
if (instance == null) {
synchronized (ChatManager.class) {
if (instance == null) {
instance = new ChatManager();
}
}
}
instance.setHandler(handler);
return instance;
}
public void setHandler(Handler handler){
this.handler = handler;
}
public void sendData(MyAddress address) {
System.out.println("ChatManger正在傳送資料");
chatClient.sendMsgToServer(address, new ChannelFutureListener() {
@Override
public void operationComplete(ChannelFuture future) throws Exception {
if (future.isSuccess()) {
Log.e(TAG, "傳送成功");
} else {
Log.e(TAG, "傳送失敗");
}
}
});
}
public void connectNetty(IpPortInfo ipPortSetInfo) {
new Thread(new Runnable() {
@Override
public void run() {
Log.e(TAG, "使用者端啟動自動連線...");
if (!chatClient.getConnectStatus()) {
chatClient.setListener(ChatManager.this);
chatClient.connect(ipPortSetInfo);
} else {
chatClient.disconnect();
}
}
}).start();
}
@Override
public void onMessageResponse(ChannelHandlerContext ctx, String msg) {
}
@Override
public void onServiceStatusConnectChanged(int statusCode) {
}
}
總而言之,就是一個記錄Netty連線資訊的類。
最後終於成功!!!!!!!!!!!!!!!