Package com.kakao.vectormap.label
Class PathOptions
- java.lang.Object
-
- com.kakao.vectormap.label.PathOptions
-
public class PathOptions extends java.lang.Object
Label
이 이동하는 경로와 움직임을 정의하는 클래스.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PathOptions
addPath(LatLng... path)
PathOptions
addPath(java.util.Collection<LatLng> path)
static PathOptions
fromPath()
static PathOptions
fromPath(LatLng... path)
static PathOptions
fromPath(java.util.Collection<LatLng> path)
float
getBaseRadian()
float
getCornerRadius()
int
getDuration()
float
getJumpThreshold()
java.util.List<LatLng>
getPaths()
float
getSimplifyWeight()
PathOptions
setBaseRadian(float baseRadian)
PathOptions
setCornerRadius(float cornerRadius)
PathOptions
setDuration(int millis)
PathOptions
setJumpThreshold(float jumpThreshold)
PathOptions
setPath(LatLng... path)
PathOptions
setPath(java.util.Collection<LatLng> path)
PathOptions
setSimplifyWeight(float simplifyWeight)
void
toArray()
-
-
-
Method Detail
-
fromPath
public static PathOptions fromPath()
-
fromPath
public static PathOptions fromPath(LatLng... path)
-
fromPath
public static PathOptions fromPath(java.util.Collection<LatLng> path)
-
setPath
public PathOptions setPath(LatLng... path)
-
setPath
public PathOptions setPath(java.util.Collection<LatLng> path)
-
addPath
public PathOptions addPath(LatLng... path)
-
addPath
public PathOptions addPath(java.util.Collection<LatLng> path)
-
getPaths
public java.util.List<LatLng> getPaths()
-
setCornerRadius
public PathOptions setCornerRadius(float cornerRadius)
-
getCornerRadius
public float getCornerRadius()
-
setBaseRadian
public PathOptions setBaseRadian(float baseRadian)
-
getBaseRadian
public float getBaseRadian()
-
setJumpThreshold
public PathOptions setJumpThreshold(float jumpThreshold)
-
getJumpThreshold
public float getJumpThreshold()
-
setDuration
public PathOptions setDuration(int millis)
-
getDuration
public int getDuration()
-
setSimplifyWeight
public PathOptions setSimplifyWeight(float simplifyWeight)
-
getSimplifyWeight
public float getSimplifyWeight()
-
toArray
public void toArray()
-
-