codeant-ai-for-open-source[bot] commented on PR #38374:
URL: https://github.com/apache/superset/pull/38374#issuecomment-4054905801
## **Sequence Diagram**
This PR wires Deck.gl MapBox control values into the render path so Opacity
and Default longitude latitude zoom changes immediately affect the chart. It
also restores fit to data behavior when viewport fields are cleared.
```mermaid
sequenceDiagram
participant User
participant ControlPanel
participant TransformProps
participant MapBox
participant MapView
User->>ControlPanel: Change opacity or viewport fields
ControlPanel->>TransformProps: Trigger re render with updated form values
TransformProps->>MapBox: Pass normalized opacity and viewport props
MapBox->>MapBox: Handle prop changes in component update
alt Viewport values are set
MapBox->>MapView: Render with explicit longitude latitude zoom
else Viewport values are cleared
MapBox->>MapView: Render with fit bounds viewport
end
MapBox->>MapView: Apply updated global opacity
```
---
*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]