codeant-ai-for-open-source[bot] commented on PR #33247:
URL: https://github.com/apache/superset/pull/33247#issuecomment-3894196615
## **Sequence Diagram**
Shows how the new point radius controls in the chart control panel flow into
the GeoJsonLayer rendering. It highlights user input -> control panel ->
formData -> layer property mapping with deck.gl fallback defaults.
```mermaid
sequenceDiagram
participant User
participant ControlPanel
participant Renderer
User->>ControlPanel: Configure Point Radius, Units, Scale
ControlPanel-->>ControlPanel: Save formData (point_radius,
point_radius_units, point_radius_scale)
Renderer->>ControlPanel: Read formData when rendering
ControlPanel-->>Renderer: Provide values (or none)
Renderer->>Renderer: Map to GeoJsonLayer props:
Renderer->>Renderer: getPointRadius = point_radius ?? 1
Renderer->>Renderer: pointRadiusUnits = point_radius_units ?? 'meters'
Renderer->>Renderer: pointRadiusScale = point_radius_scale ?? 1
Renderer-->>User: Rendered map with updated point sizes
```
---
*Generated by [CodeAnt AI](https://codeant.ai)*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]