Andreas Hocevar
Andreas Hocevar
Thanks @gberaudo, that works well. I'll try to complete this pull request when I get to it. Might be a long time from now though.
An official example showing this feature would be great.
Sorry @icemagno, I haven't been involved in ol-cesium development in a long time. The problem here is very likely that Cesium does not request images with `img.crossOrigin` set to 'anonymous'.
Fixed in v2.0.4.
If you use a projection other than EPSG:3857, you have to pass a `resolutions` property to `applyStyle()`'s options, e.g. ```js const maxResolution = 360 / 512; // for EPSG:4326 (degrees)...
Then the tilegrid does not match the tile layout of the service you are using. Consult the service provider for the correct tile layout, and define your `TileGrid` accordingly.
To properly replace the hard-coded value with a style config option, you would have to use `symbol-spacing`. Then, instead of using the midpoint of the geometry, you would have to...
Yes exactly, you have to use the respective functions from `ol/geom/flat`.
Have you tried setting maxZoom to 14 instead?
It looks like that tileset does not have all tiles for all advertised zoom levels available. See https://codesandbox.io/s/rjr76n3k7n. This is something that OpenLayers cannot handle well at the moment, because...