This commit is contained in:
wangcongtao
2020-01-10 20:05:23 +08:00
parent 834a82f902
commit 8b4000ad4a
11 changed files with 104 additions and 21 deletions

View File

@@ -1,8 +1,10 @@
package com.mogo.map.uicontroller;
import android.graphics.Point;
import android.view.animation.Interpolator;
import com.mogo.map.MogoLatLng;
import com.mogo.map.marker.IMogoMarker;
/**
* @author congtaowang
@@ -112,4 +114,14 @@ public interface IMogoMapUIController {
* @return
*/
Point getLocationPointInScreen( MogoLatLng latLng );
/**
* marker 跳跃动画
*
* @param marker 跳跃的 marker
* @param high 跳跃的高度
* @param interpolator 插值器
* @param duration 动画时间
*/
void startJumpAnimation( IMogoMarker marker, float high, Interpolator interpolator, long duration );
}