15 private final NativeObject nativeObject;
17 IconMapObjectBinding(NativeObject nativeObject)
19 this.nativeObject = nativeObject;
30 return native_setPosition(point);
32 private native
boolean native_setPosition(
LocationPoint point);
37 return native_setPositionAnimated(point, duration, type);
42 public boolean setBitmap(com.navigine.image.ImageProvider bitmap)
44 return native_setBitmap(bitmap);
46 private native
boolean native_setBitmap(com.navigine.image.ImageProvider bitmap);
49 public boolean setSize(
float width,
float height)
51 return native_setSize(width, height);
53 private native
boolean native_setSize(
float width,
float height);
58 return native_setCollisionEnabled(enabled);
60 private native
boolean native_setCollisionEnabled(
boolean enabled);
65 return native_setAngle(angle);
67 private native
boolean native_setAngle(
float angle);
72 return native_setAngleAnimated(angle, duration, type);
74 private native
boolean native_setAngleAnimated(
float angle,
float duration,
AnimationType type);
79 return native_setBuffer(width, height);
81 private native
boolean native_setBuffer(
float width,
float height);
86 return native_setOffset(width, height);
88 private native
boolean native_setOffset(
float width,
float height);
93 return native_setPriority(priority);
95 private native
boolean native_setPriority(
float priority);
100 return native_setFlat(flat);
102 private native
boolean native_setFlat(
boolean flat);
109 return native_getId();
111 private native
int native_getId();
116 return native_getType();
123 return native_getData();
125 private native
byte[] native_getData();
130 return native_setVisible(visible);
132 private native
boolean native_setVisible(
boolean visible);
137 return native_setInteractive(interactive);
139 private native
boolean native_setInteractive(
boolean interactive);
144 native_setData(data);
146 private native
void native_setData(
byte[] data);
151 return native_setTitle(title);
153 private native
boolean native_setTitle(String title);
158 return native_setAlpha(alpha);
160 private native
boolean native_setAlpha(
float alpha);