We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356b98d commit 5b8ffd1Copy full SHA for 5b8ffd1
src/ui-carto/vectorelements/point.android.ts
@@ -30,9 +30,7 @@ export class Point extends BasePointVectorElement<com.carto.vectorelements.Point
30
createNative(options: PointOptions) {
31
const style = this.buildStyle();
32
const nativePos = this.getNativePos(options.position, options.projection);
33
- const result = new com.carto.vectorelements.Point(nativePos, style);
34
- // result['owner'] = new WeakRef(this);
35
- return result;
+ return new com.carto.vectorelements.Point(nativePos, style);
36
}
37
buildStyle() {
38
let style: com.carto.styles.PointStyle;
0 commit comments