高德API实现的实时运动轨迹
2021-02-08 02:16
标签:send long art boolean car ble rri current OLE /** public void setCurrMoveState(MOVE_STATE currMoveState) { public MOVE_STATE getCurrMoveState() { public MoveCarSmoothThread(MainActivity activity) { Log.v("MYTAG","startMove start:"+Thread.currentThread().getName()); LatLng position = mMovingPointOverlay.getPosition(); Message message = Message.obtain(); @Override } 高德API实现的实时运动轨迹 标签:send long art boolean car ble rri current OLE 原文地址:https://www.cnblogs.com/liyanyan665/p/11369970.html
* Description:
* Author: mxdl
* Date: 2019/7/10
* Version: V1.0.0
* Update:
*/
public class MoveCarSmoothThread implements IMoveCar {
public static final String TAG = MoveCarSmoothThread.class.getSimpleName();
private MovingPointOverlay mMovingPointOverlay;
private WeakReference
private boolean isfirst = true;
private MOVE_STATE currMoveState = MOVE_STATE.START_STATUS;
this.currMoveState = currMoveState;
}
return currMoveState;
}
mActivityWeakReference = new WeakReference(activity);
}
@Override
public void startMove(List
if (latLngs == null || latLngs.size() == 0) {
return;
}
Log.v(TAG, "moveCoarseTrack start.........................................................");
long startTime = System.currentTimeMillis();
Log.v(TAG, "startTime:" + startTime);
final MainActivity mainActivity = mActivityWeakReference.get();
if (mMovingPointOverlay == null) {
mMovingPointOverlay = new MovingPointOverlay(mainActivity.mAMap, mainActivity.mCarMarker);
mMovingPointOverlay.setTotalDuration(5);
mMovingPointOverlay.setMoveListener(new MovingPointOverlay.MoveListener() {
@Override
public void move(double v) {
if(isfirst){
isfirst = false;
Log.v("MYTAG","MoveCarSmoolthThread move start:"+Thread.currentThread().getName());
}
mainActivity.mLatLngList.add(position);// 向轨迹集合增加轨迹点
mainActivity.mMovePolyline.setPoints(mainActivity.mLatLngList);// 轨迹画线开始
message.what = MainActivity.EventType.MapMove;
message.obj = position;
message.arg1 = (int)v;
mainActivity.mMainHandler.sendMessage(message);
}
});
}
mMovingPointOverlay.setPoints(latLngs);
mMovingPointOverlay.startSmoothMove();
long endTime = System.currentTimeMillis();
Log.v(TAG, "endTime:" + endTime);
Log.v(TAG, "moveCoarseTrack end.........................................................");
}
public void reStartMove() {
if(mMovingPointOverlay != null){
mMovingPointOverlay.startSmoothMove();
}
}
@Override
public void pauseMove(){
if(mMovingPointOverlay != null){
mMovingPointOverlay.stopMove();
}
}
@Override
public void stopMove(){
if(mMovingPointOverlay != null){
mMovingPointOverlay.destroy(http://www.amjmh.com/v/BIBRGZ_558768/);
mMovingPointOverlay = null;
}
if(mActivityWeakReference.get() != null){
mActivityWeakReference.get().mLatLngList.clear();
}
}