获取导航路径的点

This commit is contained in:
zhangyuanzhen
2020-02-07 20:05:35 +08:00
parent 05bfb55778
commit e16c82f666
8 changed files with 185 additions and 110 deletions

View File

@@ -79,6 +79,17 @@ public interface IMogoNavi {
*/
List< MogoCalculatePath > getCalculatedStrategies();
/**
* 获取路线坐标点
*
* @return 规划的路线上所有的坐标点
*/
List< MogoLatLng > getCalculatedPathPos();
/**
* 获取列表Item点击回调
*

View File

@@ -1,5 +1,8 @@
package com.mogo.map.navi;
import com.mogo.map.MogoLatLng;
import java.util.List;
/**
* @author congtaowang
* @since 2020-01-08
@@ -38,6 +41,17 @@ public class MogoCalculatePath {
*/
private int mPathId;
private List<MogoLatLng> coordList;
public List<MogoLatLng> getCoordList() {
return coordList;
}
public void setCoordList(List<MogoLatLng> coordList) {
this.coordList = coordList;
}
public MogoCalculatePath() {
}