Change center position of map.Map
in real-time.
#4370
-
Duplicate Check
Describe the requested featureI want to programmatically change the center position of I changed the Is there a way to change the center of the map in real-time? If not, I would like to request this feature. Suggest a solutionNo response ScreenshotsNo response Additional detailsNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I also faced this issue |
Beta Was this translation helpful? Give feedback.
-
It is already possible, but only in latest pre-release for now: Lot of new methods have been added. For your use case, the following will be useful: Note that these methods (and equally all other events previously present in |
Beta Was this translation helpful? Give feedback.
It is already possible, but only in latest pre-release for now:
pip install flet --pre -U
Lot of new methods have been added. For your use case, the following will be useful:
Map.center_on()
Map.move_to()
Note that these methods (and equally all other events previously present in
MapConfiguration
) are part ofMap
.