flutter GoogleMaps抖动超出FrameTime日志中的样本计数

5f0d552i  于 2023-01-09  发布在  Flutter
关注(0)|答案(1)|浏览(144)

嘿,当添加GoogleMaps到我的项目,似乎任何时候Map被拖动或相机被移动有一个垃圾邮件的日志

I/Counters( 4961): exceeded sample count in FrameTime

这似乎是一个常见的问题,谷歌Map在Flutter报告在这里。
HereHere
P.S.设置myLocationEnabled: false不会解决该问题,因为手动移动标测图时仍会发生该问题

class MyMap extends StatelessWidget {
  const MyMap({
    Key? key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return GoogleMap(
      initialCameraPosition: CameraPosition(
        target: state.location ?? const LatLng(0, 0),
        zoom: 15.0,
      ),
      mapType: MapType.normal,
      myLocationEnabled: false,
      zoomGesturesEnabled: true,
      scrollGesturesEnabled: true,
      tiltGesturesEnabled: false,
      rotateGesturesEnabled: true,
      zoomControlsEnabled: false,
    );
  }
}

有没有人知道有没有关于修复这个问题的最佳方法的更新?谢谢

bgibtngc

bgibtngc1#

删除一些图层从窗口小部件谷歌Mapflutter

myLocationEnabled: false,
  zoomGesturesEnabled: true,
  scrollGesturesEnabled: true,
  tiltGesturesEnabled: false,
  rotateGesturesEnabled: true,
  zoomControlsEnabled: false,

相关问题