Closed jonasbehlic closed 9 months ago
http plugin is part of capacitor, not a separate plugin, so issues for it should be reported on https://github.com/ionic-team/capacitor
but this issue should be fixed in main branch already
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of the plugin, please create a new issue and ensure the template is fully filled out.
Bug Report
Plugin(s)
Newest version of http plugin since newest version of capacitor core is used.
Capacitor Version
Latest Dependencies:
@capacitor/cli: 5.7.0 @capacitor/core: 5.7.0 @capacitor/android: 5.7.0 @capacitor/ios: 5.7.0
Installed Dependencies:
@capacitor/cli: 5.7.0 @capacitor/core: 5.7.0 @capacitor/android: 5.7.0 @capacitor/ios: 5.7.0
Platform(s)
Android (Neweste) & iOS 17.3 (neweste)
Current Behavior
Mapbox Clusters etc. stops working, as soon following is added in capacitor.config.json: "CapacitorHttp": { "enabled": true },
But without this no Xmlhttpreq. or fetch works. But with it enabled no clusters are shown on mapbox map.
Expected Behavior
Both things working at same time.
Code Reproduction
const map = new mapboxgl.Map({ container: 'maping', // container ID style: 'mapbox://styles/mapbox/streets-v12', // style URL center: [-74.5, 40], // starting position [lng, lat] zoom: 9, // starting zoom attributionControl: false, });