Nanda
Nanda
Sorry about that. It was fixed by https://github.com/TerriaJS/terriajs-place-editor/pull/12 and released to dev environments for nsw & qld by @mwu2018 . Release to other environments are pending.
Thanks @zoran995 for following it up with the TS team. I was thinking if we can find a workaround for this particular error. When building terriajs with TS4.x we have...
### Why TS2611 ``` class Base { foo = 1; } class Bar extends Base { get foo() { return 42; } set foo(a) { } } const bar =...
For the WMS performance problem, checkout these two links for master & mobx. master - http://ci.terria.io/master/#share=s-fOsAkkPYDtdnU4jWhtza7NPj7wt mobx - http://ci.terria.io/mobx/#share=s-1058naPUvPi8gpxIYMNPkGTw1Dv Then add the catalog item named "Delta Blended service". Mobx freezes...
There are probably 2 ways to fix this error: 1. Explicitly specify the return types of all mixin functions. This can be really hard to do for some of our...
I had another go at this. I tried two approaches: ### Explicitly type all Mixin return values I started off with this approach but soon found issues which made me...
Update: So far we have two solutions [[1](https://github.com/terriaJS/terriajs/tree/ts4-mobx6-overrides), [2](https://github.com/terriaJS/terriajs/tree/ts4-mobx6-iface)] for upgrading to TS4.x which we describe below. Any solution for TS2611 should also be [compatible with mobx6](https://github.com/TerriaJS/terriajs/issues/6588). Also note that...
Done. Please refer to [upgrade guide](https://github.com/TerriaJS/terriajs/discussions/6787) for info on upgrading.
Could [disabling depth test](https://cesium.com/learn/cesiumjs/ref-doc/BillboardGraphics.html?classFilter=billbo#disableDepthTestDistance) for points be useful?
@sppigot - For terria to render the drop down, the WPS description should set the [AllowedValues](https://pywps.readthedocs.io/en/latest/wps.html#literaldata) for the input field. Eg: ``` category Category desc string ROAM-Ocean ROAM-Atmosphere ROAM-Waves ROAM-Biovis...