16 private final NativeObject nativeObject;
18 CircleMapObjectBinding(NativeObject nativeObject)
20 this.nativeObject = nativeObject;
31 return native_setPosition(point, sublocationId);
33 private native
boolean native_setPosition(
GlobalPoint point, Integer sublocationId);
38 return native_setPositionAnimated(point, sublocationId, duration, type);
40 private native
boolean native_setPositionAnimated(
GlobalPoint point, Integer sublocationId,
float duration,
AnimationType type);
45 return native_setColor(color);
47 private native
boolean native_setColor(
int color);
52 return native_setRadius(radius);
54 private native
boolean native_setRadius(
float radius);
59 return native_setCollisionEnabled(enabled);
61 private native
boolean native_setCollisionEnabled(
boolean enabled);
66 return native_setBuffer(width, height);
68 private native
boolean native_setBuffer(
float width,
float height);
73 return native_setOffset(width, height);
75 private native
boolean native_setOffset(
float width,
float height);
80 return native_setPriority(priority);
82 private native
boolean native_setPriority(
float priority);
87 return native_setOutlineColor(color);
89 private native
boolean native_setOutlineColor(
int color);
94 return native_setOutlineRadius(radius);
96 private native
boolean native_setOutlineRadius(
float radius);
101 return native_setOutlineAlpha(alpha);
103 private native
boolean native_setOutlineAlpha(
float alpha);
110 return native_getId();
112 private native
int native_getId();
117 return native_getType();
124 return native_getData();
126 private native
byte[] native_getData();
131 return native_setVisible(visible);
133 private native
boolean native_setVisible(
boolean visible);
138 return native_setInteractive(interactive);
140 private native
boolean native_setInteractive(
boolean interactive);
145 native_setData(data);
147 private native
void native_setData(
byte[] data);
152 return native_setTitle(title);
154 private native
boolean native_setTitle(String title);
159 return native_setTitleWithStyle(title, style);
161 private native
boolean native_setTitleWithStyle(String title,
TitleStyle style);
166 return native_setAlpha(alpha);
168 private native
boolean native_setAlpha(
float alpha);