William Wall
William Wall
I'm running into this problem in `0.8.0`, which does not appear to still support the `key` property. Any suggestions on how to manually set the nodes in the editor?
We were interested something similar, not for raster reprojection itself but just getting Cesium to use the OL tile load stack. That way, implementing a custom tile layer (such as...
I completed this work for OpenSphere in these two files: * https://github.com/ngageoint/opensphere/blob/master/src/plugin/cesium/imageryprovider.js * https://github.com/wallw-bits/opensphere/blob/cesium-use-ol-tiles/src/plugin/cesium/tilegridtilingscheme.js Those classes require Cesium >= 1.46. You can also check out my [last comment above](https://github.com/openlayers/ol-cesium/pull/581#issuecomment-397760078) which...
You still have assumptions of a zero-level zoom in the `tileWidth` and `tileHeight` getters in `OLImageryProvider`. Also, [this line](https://github.com/samuel-girard/ol-cesium/blob/raster-reprojection/src/olcs/core/OLImageryProvider.js#L114) should not use an `instanceof ` to check the projection. Use...
#581 would fix this, assuming the layer works on the OpenLayers side with the `crossOrigin` value set. We've opted to extend that class and implement it ourselves, which you can...
Here's the test mock we've been using to handle `$app/stores`. It doesn't handle things like `import.meta.env`. ```svelte import {setContext} from 'svelte'; import {writable} from 'svelte/store'; export let Component; export let...
I think I am also running into this. `vite build` worked completely worked under v3.1.8, but upgrading to v4.1.1 causes a particular set of styles not to be included in...
I ran into the same issue. I'll probably try a PR here to improve support for this. In the meantime, here are some workarounds you can use to get started:...
I'm going to separate the two for clarity: ### Background Scripts / Service Workers In manifest v3, you can specify ```json { "background": { "service_worker": "REPLACE_ME", "type": "module", } }...
You can change the manifest with the resulting hashed files from the build like so (assuming you are using Manifest V3 and have the background script marked as `type: "module"`):...