GeoJSON in Apache Superset’s “deck.gl geojson” graph scal badly
I have a question regarding GeoJSON using.
I’ve built a plot of “deck.gl geojson” type. My data contain lines and points (it is actually a route with stop points). I need to visualize them on map.
It works but with a problem: dots are too big. Superset allows to select size from the following list only (radius choosing).
Selection with point radius scale =100 looks like (enormous dots).
When i manually type there either 10 or even 99 or 101 – dots disappear, lines are kept only (radius=50).
In the json-file itself, it is selected like following:
‘properties’, jsonb_build_object(
‘circle-radius’, 15,
‘marker-color’, ‘#f00’,
‘marker-symbol’, ‘stop’
)
What can i do to reduce the size of these dots?
Thank you!