Loading...
Searching...
No Matches
com.navigine.idl.java.internal.UserLocationLayerBinding Class Reference
+ Inheritance diagram for com.navigine.idl.java.internal.UserLocationLayerBinding:

Public Member Functions

native boolean isValid ()
 
void setVisible (boolean visible)
 Shows or hides user location layer.
 
boolean isVisible ()
 Returns true if user location layer is visible.
 
void setAnchor (android.graphics.PointF anchor)
 Sets anchor point for user indicator in screen pixels.
 
void resetAnchor ()
 Resets anchor to default (center).
 
boolean anchorEnabled ()
 Returns true if custom anchor is enabled.
 

Detailed Description

Definition at line 10 of file UserLocationLayerBinding.java.

Member Function Documentation

◆ anchorEnabled()

boolean com.navigine.idl.java.internal.UserLocationLayerBinding.anchorEnabled ( )
inline

Returns true if custom anchor is enabled.

Java code snippet:

boolean anchorEnabled = userLocationLayer.anchorEnabled();
System.out.println("Anchor enabled: " + anchorEnabled);

Kotlin code snippet:

val anchorEnabled = userLocationLayer!!.anchorEnabled
println("Anchor enabled: $anchorEnabled")

Reimplemented from com.navigine.idl.java.UserLocationLayer.

Definition at line 53 of file UserLocationLayerBinding.java.

◆ isValid()

native boolean com.navigine.idl.java.internal.UserLocationLayerBinding.isValid ( )

Tells if this UserLocationLayer is valid or not. Any other method (except for this one) called on an invalid UserLocationLayer will throw java.lang.RuntimeException.

Reimplemented from com.navigine.idl.java.UserLocationLayer.

◆ isVisible()

boolean com.navigine.idl.java.internal.UserLocationLayerBinding.isVisible ( )
inline

Returns true if user location layer is visible.

Java code snippet:

boolean visible = userLocationLayer.isVisible();
System.out.println("User location layer is visible: " + visible);

Kotlin code snippet:

val visible = userLocationLayer!!.isVisible
println("User location layer is visible: $visible")

Reimplemented from com.navigine.idl.java.UserLocationLayer.

Definition at line 32 of file UserLocationLayerBinding.java.

◆ resetAnchor()

void com.navigine.idl.java.internal.UserLocationLayerBinding.resetAnchor ( )
inline

Resets anchor to default (center).

Java code snippet:

userLocationLayer.resetAnchor();
System.out.println("Anchor reset to default");

Kotlin code snippet:

userLocationLayer!!.resetAnchor()
println("Anchor reset to default")

Reimplemented from com.navigine.idl.java.UserLocationLayer.

Definition at line 46 of file UserLocationLayerBinding.java.

◆ setAnchor()

void com.navigine.idl.java.internal.UserLocationLayerBinding.setAnchor ( android.graphics.PointF anchor)
inline

Sets anchor point for user indicator in screen pixels.

Java code snippet:

ScreenPoint anchor = new ScreenPoint(100.0f, 200.0f);
userLocationLayer.setAnchor(anchor);
System.out.println("Set user location anchor to: (" + anchor.getX() + ", " + anchor.getY() + ")");

Kotlin code snippet:

val anchor = ScreenPoint(100.0f, 200.0f)
userLocationLayer!!.setAnchor(anchor)
println("Set user location anchor to: (${anchor.x}, ${anchor.y})")

Reimplemented from com.navigine.idl.java.UserLocationLayer.

Definition at line 39 of file UserLocationLayerBinding.java.

◆ setVisible()

void com.navigine.idl.java.internal.UserLocationLayerBinding.setVisible ( boolean visible)
inline

Shows or hides user location layer.

Java code snippet:

userLocationLayer.setVisible(true);
System.out.println("User location layer set visible");

Kotlin code snippet:

userLocationLayer!!.setVisible(true)
println("User location layer set visible")

Reimplemented from com.navigine.idl.java.UserLocationLayer.

Definition at line 25 of file UserLocationLayerBinding.java.


The documentation for this class was generated from the following file: