public class RoutePlanResult
extends java.lang.Object
implements android.os.Parcelable
| 限定符和类型 | 字段和说明 |
|---|---|
static android.os.Parcelable.Creator<RoutePlanResult> |
CREATOR |
| 构造器和说明 |
|---|
RoutePlanResult()
RoutePlanResult的构造方法。
|
RoutePlanResult(android.os.Parcel source)
序列化实现。
|
| 限定符和类型 | 方法和说明 |
|---|---|
int |
describeContents() |
LatLonPoint |
getStartPos()
返回路径规划起点的位置。
|
LatLonPoint |
getTargetPos()
返回路径规划终点的位置。
|
void |
setStartPos(LatLonPoint mStartPos)
设置路径规划起点的位置。
|
void |
setTargetPos(LatLonPoint mTargetPos)
设置路径规划终点的位置
Sets the location of the destination point for route planning |
void |
writeToParcel(android.os.Parcel dest,
int flags) |
public static final android.os.Parcelable.Creator<RoutePlanResult> CREATOR
public RoutePlanResult(android.os.Parcel source)
public RoutePlanResult()
public LatLonPoint getStartPos()
public void setStartPos(LatLonPoint mStartPos)
mStartPos - 起点的位置坐标。
public LatLonPoint getTargetPos()
public void setTargetPos(LatLonPoint mTargetPos)
mTargetPos - 终点的位置坐标
public int describeContents()
describeContents 在接口中 android.os.Parcelablepublic void writeToParcel(android.os.Parcel dest,
int flags)
writeToParcel 在接口中 android.os.Parcelable