Replies: 2 comments 1 reply
-
Hi @sleagle At the moment, you aren't able to mix But, you can use the new This can be done using new "Edit Style" function.
Note this feature is brand new and experimental - so you may run into bugs/quirks As for clustering, at the moment Terria doesn't have any clustering functionality build into the TableStyling or GeoJsonStyling. It might be possible to cluster features using There is an example of |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am consuming a wfs service which has time series data:
"occupy_start": 1853,
"occupy_end": 1858,
When using TableTimeStyleTraits it works perfectly, however due to different categories I used perPropertyStyles this stuffs up the Time Series data and if use the timeProperty it will only show data at a point will not be able to show the data for the time period. Part of the current configuration is shown below
"defaultStyle": { "time": { "timeColumn": "occupy_start", "endTimeColumn": "occupy_end", "idColumns": ["_id_"], "spreadStartTime": false, "spreadFinishTime": false }, "hidden": true }, "timeProperty": "occupy_start", "perPropertyStyles": [ { "properties": { "type":"nursery"}, "style": { "marker-size": "medium", "marker-symbol": "bus" }, "caseSensitive": false }, { "properties": { "type":"House of Correction"}, "style": { "marker-size": "medium", "marker-symbol": "prison", "marker-color": "blue" }, "caseSensitive": false }, { "properties": {"type":"road/bridge station"}, "style": { "marker-size": "medium", "marker-symbol": "car", "marker-color": "green" }, "caseSensitive": false }, { "properties": {"type":"bridge station"}, "style": { "marker-size": "medium", "marker-symbol": "b", "marker-color": "yellow" }, "caseSensitive": false } ],
Also would like to know if its possible to achieve clustering as follows: https://sandcastle.cesium.com/gallery/Clustering.html
Any help is highly appreciated
Thank you
Beta Was this translation helpful? Give feedback.
All reactions