8000 fix(google-maps): userData · NativeScript/plugins@2d5f0ef · GitHub
[go: up one dir, main page]

Skip to content

Commit 2d5f0ef

Browse files
committed
fix(google-maps): userData
1 parent 42fa17d commit 2d5f0ef

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/google-maps/index.android.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1508,6 +1508,7 @@ export class GroundOverlay extends OverLayBase implements IGroundOverlay {
15081508
#native: com.google.android.gms.maps.model.GroundOverlay;
15091509

15101510
constructor() {
1511+
super();
15111512
this.#image = new ImageSource();
15121513
}
15131514

packages/google-maps/utils/index.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ export function serialize(data: any): any {
347347
let node = {} as any;
348348
Object.keys(data).forEach(function (key) {
349349
let value = data[key];
350-
node[key] = serialize(value, wrapPrimitives);
350+
node[key] = serialize(value);
351351
});
352352
return NSDictionary.dictionaryWithDictionary(node);
353353
}

0 commit comments

Comments
 (0)
0