Inheritance diagram for com.navigine.idl.java.internal.PolygonMapObjectBinding:Public Member Functions | |
| native boolean | isValid () |
| boolean | setPolygon (LocationPolygon polygon) |
| Method is used to specify the source polygon of the object. | |
| boolean | setColor (float red, float green, float blue, float alpha) |
| Method is used to specify the color of the object. | |
| boolean | setOrder (int order) |
| Method is used to specify the rendering order of the object. | |
| 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 12 of file PolygonMapObjectBinding.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 64 of file PolygonMapObjectBinding.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 50 of file PolygonMapObjectBinding.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 57 of file PolygonMapObjectBinding.java.
| native boolean com.navigine.idl.java.internal.PolygonMapObjectBinding.isValid | ( | ) |
Tells if this PolygonMapObject is valid or not. Any other method (except for this one) called on an invalid PolygonMapObject will throw java.lang.RuntimeException.
Reimplemented from com.navigine.idl.java.PolygonMapObject.
|
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 99 of file PolygonMapObjectBinding.java.
|
inline |
Method is used to specify the color of the object.
| red | Red RGBA component. |
| green | Green RGBA component. |
| blue | Blue RGBA component. |
| alpha | Opacity multiplier. Values below 0 will be set to 0. Default: 1. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolygonMapObject.
Definition at line 34 of file PolygonMapObjectBinding.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 85 of file PolygonMapObjectBinding.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 78 of file PolygonMapObjectBinding.java.
|
inline |
Method is used to specify the rendering order of the object.
| order | The rendering order value. Default: 0. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolygonMapObject.
Definition at line 41 of file PolygonMapObjectBinding.java.
|
inline |
Method is used to specify the source polygon of the object.
| polygon | Metrics coordinates of the polygon LocationPolygon. |
Java code snippet:
Kotlin code snippet:
Reimplemented from com.navigine.idl.java.PolygonMapObject.
Definition at line 27 of file PolygonMapObjectBinding.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 92 of file PolygonMapObjectBinding.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 71 of file PolygonMapObjectBinding.java.