smooth move (using test data)

This commit is contained in:
ihoudf
2020-04-20 18:30:33 +08:00
parent 2fdb909ea4
commit 678dd2b8a0
12 changed files with 583 additions and 322 deletions

View File

@@ -8,6 +8,7 @@ import android.view.animation.Interpolator;
import com.mogo.map.MogoLatLng;
import java.util.ArrayList;
import java.util.List;
/**
* @author congtaowang
@@ -252,4 +253,14 @@ public interface IMogoMarker {
* @param clickable
*/
void setClickable( boolean clickable );
/**
* 开始平滑移动
*
* @param points 坐标点
* @param duration 时长
*/
void startSmooth(List<MogoLatLng> points, int duration);
void stopSmooth();
}