Inheritance diagram for com.navigine.idl.java.internal.PolylineMapObjectBinding:Public Member Functions | |
| native boolean | isValid () |
| boolean | setPolyLine (LocationPolyline polyline) |
| Method is used to specify the source polyline of the object. | |
| boolean | setWidth (float width) |
| Method is used to specify the width of the polyline. | |
| boolean | setColor (float red, float green, float blue, float alpha) |
| Method is used to specify the fill color of the polyline. | |
| boolean | setOrder (int order) |
| Method is used to specify the rendering order of the polyline. | |
| boolean | setCapType (CapType cap) |
| Method is used to specify the cap style for the polyline ends. | |
| boolean | setJoinType (JoinType join) |
| Method is used to specify the join style for polyline segments. | |
| boolean | setMiterLimit (float miterLimit) |
| Method is used to specify the miter limit for miter joins. | |
| boolean | setOutlineColor (float red, float green, float blue, float alpha) |
| Method is used to specify the color of the polyline’s outline. | |
| boolean | setOutlineWidth (float radius) |
| Method is used to specify the width of the polyline’s outline. | |
| boolean | setOutlineAlpha (float alpha) |
| Method is used to specify the opacity of the polyline’s outline. | |
| boolean | setOutlineCapType (CapType cap) |
| Method is used to specify the cap style for the polyline’s outline ends. | |
| boolean | setOutlineJoinType (JoinType join) |
| Method is used to specify the join style for the polyline’s outline segments. | |
| boolean | setOutlineMiterLimit (float miterLimit) |
| Method is used to specify the miter limit for the polyline’s outline miter joins. | |
| boolean | setOutlineOrder (int order) |
| Method is used to specify the rendering order of the polyline’s outline. | |
| int | getId () |
| Gets the unique identifier of the map object. | |
| MapObjectType | getType () |
| Gets the type of the map object. | |
| byte[] | getData () |
| Gets the user-defined data associated with the map object. | |
| boolean | setVisible (boolean visible) |
| Method is used to specify the visibility of the map object. | |
| boolean | setInteractive (boolean interactive) |
| Method is used to specify whether the map object can be interacted with. | |
| void | setData (byte[] data) |
| Method is used to set user-defined data for the map object. | |
| boolean | setTitle (String title) |
| Method is used to set the title of the map object. | |
| boolean | setAlpha (float alpha) |
| Method is used to set the opacity of the map object. | |
Definition at line 14 of file PolylineMapObjectBinding.java.
|
inline |
Gets the user-defined data associated with the map object.
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 143 of file PolylineMapObjectBinding.java.
|
inline |
Gets the unique identifier of the map object.
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 129 of file PolylineMapObjectBinding.java.
|
inline |
Gets the type of the map object.
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 136 of file PolylineMapObjectBinding.java.
| native boolean com.navigine.idl.java.internal.PolylineMapObjectBinding.isValid | ( | ) |
Tells if this PolylineMapObject is valid or not. Any other method (except for this one) called on an invalid PolylineMapObject will throw java.lang.RuntimeException.
Reimplemented from com.navigine.idl.java.PolylineMapObject.
|
inline |
Method is used to set the opacity of the map object.
| alpha | Opacity multiplier. Values below 0 will be set to 0. Values above 1 will be set to 1. Default: 1. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 178 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the cap style for the polyline ends.
| cap | The cap type CapType. Default: BUTT. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 57 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the fill color of the polyline.
| red | Red RGBA component (0 to 1). |
| green | Green RGBA component (0 to 1). |
| blue | Blue RGBA component (0 to 1). |
| alpha | Opacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 43 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to set user-defined data for the map object.
| data | Data to store in the map object. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 164 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify whether the map object can be interacted with.
| interactive | Specifies whether the object can be picked in the pickMapObjectAt method (true) or not (false). Default: false. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 157 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the join style for polyline segments.
| join | The join type JoinType. Default: MITER. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 64 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the miter limit for miter joins.
| miterLimit | The miter limit value for miter joins. Default: 3. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 71 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the rendering order of the polyline.
| order | The rendering order value. Default: 0. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 50 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the opacity of the polyline’s outline.
| alpha | Opacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 92 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the cap style for the polyline’s outline ends.
| cap | The cap type CapType. Default: BUTT. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 99 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the color of the polyline’s outline.
| red | Red RGBA component (0 to 1). |
| green | Green RGBA component (0 to 1). |
| blue | Blue RGBA component (0 to 1). |
| alpha | Opacity multiplier (0 to 1). Values below 0 are set to 0. Default: 1. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 78 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the join style for the polyline’s outline segments.
| join | The join type JoinType. Default: MITER. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 106 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the miter limit for the polyline’s outline miter joins.
| miterLimit | The miter limit value for outline miter joins. Default: 3. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 113 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the rendering order of the polyline’s outline.
| order | The rendering order value for the outline. Default: 0. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 120 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the width of the polyline’s outline.
| radius | Width of the outline in pixels. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 85 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the source polyline of the object.
| polyline | Metrics coordinates of the polyline LocationPolyline. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 29 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to set the title of the map object.
| title | The title to display on the location view. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 171 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the visibility of the map object.
| visible | Specifies whether the object is visible (true) or hidden (false). Default: true. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.MapObject.
Definition at line 150 of file PolylineMapObjectBinding.java.
|
inline |
Method is used to specify the width of the polyline.
| width | Width of the polyline in pixels. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolylineMapObject.
Definition at line 36 of file PolylineMapObjectBinding.java.