Package com.kakao.vectormap.label
Class PathOptions
- java.lang.Object
-
- com.kakao.vectormap.label.PathOptions
-
public class PathOptions extends java.lang.ObjectLabel이 이동하는 경로와 움직임을 정의하는 클래스.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PathOptionsaddPath(LatLng... path)PathOptionsaddPath(java.util.Collection<LatLng> path)static PathOptionsfromPath()static PathOptionsfromPath(LatLng... path)static PathOptionsfromPath(java.util.Collection<LatLng> path)floatgetBaseRadian()floatgetCornerRadius()intgetDuration()floatgetJumpThreshold()java.util.List<LatLng>getPaths()floatgetSimplifyWeight()PathOptionssetBaseRadian(float baseRadian)PathOptionssetCornerRadius(float cornerRadius)PathOptionssetDuration(int millis)PathOptionssetJumpThreshold(float jumpThreshold)PathOptionssetPath(LatLng... path)PathOptionssetPath(java.util.Collection<LatLng> path)PathOptionssetSimplifyWeight(float simplifyWeight)voidtoArray()
-
-
-
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()
-
-