Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Loading concurrent KML overlays does not work #362

Open
3 of 6 tasks
ct-lh opened this issue Jun 10, 2021 · 2 comments
Open
3 of 6 tasks

Loading concurrent KML overlays does not work #362

ct-lh opened this issue Jun 10, 2021 · 2 comments

Comments

@ct-lh
Copy link

ct-lh commented Jun 10, 2021

I'm submitting a ... (check one with "x")

  • question
  • any problem or bug report
  • feature request

If you choose 'problem or bug report', please select OS: (check one with "x")

  • Android
  • iOS
  • Browser

cordova information: (run $> cordova plugin list)

cordova-plugin-advanced-http 3.1.0 "Advanced HTTP plugin"
cordova-plugin-android-permissions 1.1.0 "Permissions"
cordova-plugin-app-version 0.1.12 "AppVersion"
cordova-plugin-bluetooth-serial 0.4.7 "Bluetooth Serial"
cordova-plugin-device 2.0.3 "Device"
cordova-plugin-file 6.0.2 "File"
cordova-plugin-filepath 1.5.8 "cordova-plugin-filepath"
cordova-plugin-fullscreen 1.3.0 "cordova-plugin-fullscreen"
cordova-plugin-geolocation 4.0.2 "Geolocation"
cordova-plugin-googlemaps 2.7.1 "cordova-plugin-googlemaps"
cordova-plugin-insomnia 4.3.0 "Insomnia (prevent screen sleep)"
cordova-plugin-ionic-webview 4.2.1 "cordova-plugin-ionic-webview"
cordova-plugin-network-information 2.0.2 "Network Information"
cordova-plugin-request-location-accuracy 2.3.0 "Request Location Accuracy"
cordova-plugin-screen-orientation 3.0.2 "Screen Orientation"
cordova-plugin-splashscreen 5.0.4 "Splashscreen"
cordova-plugin-statusbar 2.4.3 "StatusBar"
cordova-plugin-whitelist 1.3.4 "Whitelist"
cordova-plugin-wifiwizard2 3.1.1 "WifiWizard2"
es6-promise-plugin 4.1.0 "Promise"

If you use @ionic-native/google-maps, please tell the package.json (only @ionic-native/core and @ionic-native/google-maps are fine mostly)

"@ionic-native/core": "^5.29.0",
"@ionic-native/google-maps": "^5.5.0",

Current behavior:
When you create a first KML overlay, everything is fine. However, once you create an additional KML overlay the following error is triggered:

Error: Uncaught (in promise): TypeError: Cannot redefine property: camera
TypeError: Cannot redefine property: camera
    at Function.defineProperty (<anonymous>)
    at new KmlOverlay (index.js:1863)
    at Map.<anonymous> (index.js:1598)
    at KmlLoader.<anonymous> (Map.js:1050)
    at BaseArrayClass.<anonymous> (KmlLoader.js:87)

From what I can see it seems like the problem is the following:

Object.defineProperty(self, 'camera', {

The self variable does not seem to be defined here anywhere?

Expected behavior:
Any concurrent KML overlays should be created without any problem just like the first one.

@ct-lh
Copy link
Author

ct-lh commented Jun 11, 2021

It seems like this is only working depending on which version of zone.js the project is using:

angular/angular#37582

Before this, zone.js swallowed the expected error (since the property is being defined as non-configurable). With newer versions of zone.js, this error is being triggered as expected. A temporary fix for this would be to add this in your app before the map.addKmlOverlay() call:

Object.defineProperty(window.self, 'camera', {
    configurable: true,
});
Object.defineProperty(window.self, 'kmlData', {
    configurable: true,
});

@gautamsinh
Copy link

Hello
I have same problem here KML is not visible any more, I tried above solution but not working for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants