Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Flutter 中使用 MapBox 时,似乎没有直接的方法来检测缩放级别的变化。对于 Flutter 之外的实现或原生 SDK 的实现存在各种参考,但它们的 Flutter 对应物不容易找到。请指出我的文档或代码示例以检测缩放级别的变化。
您可以用户MapboxMapController检测缩放..首先您必须创建更新控制器的 _onMapCreated 函数,然后您可以将侦听器添加到控制器,如
MapboxMapController
controller.addListener(() { print(controller.cameraPosition.zoom); });