flutter_amap icon indicating copy to clipboard operation
flutter_amap copied to clipboard

地图始终显示在最高层级

Open zhaofinger opened this issue 5 years ago • 0 comments

我在其中一个tab页上用了AMapView显示地图,但是在其他所有页面地图都会覆盖着

  @override
  Widget build(BuildContext context) {
    return new Container(
      width: 100,
      height: 100,
      child: new AMapView(
        key: mapKey,
        centerCoordinate:  LatLng(39.9242, 116.3979),
        zoomLevel: 13.0,
        mapType: MapType.standard,
        showsUserLocation: true,
      ),
    );
  }

zhaofinger avatar Dec 06 '18 03:12 zhaofinger