1

谷歌地图显示在屏幕上,地图样式在创建地图时更新为深色主题 (onMapCreated)

问题是样式更改时出现白色闪烁,并且由于黑色主题过渡而非常明显。(参见视频)

return GoogleMap(
              myLocationButtonEnabled: false,
              zoomGesturesEnabled: false,
              scrollGesturesEnabled: true,
              mapType: MapType.normal,
              circles: circles,
              markers: markers,
              initialCameraPosition: cameraPosition,
              onMapCreated: (GoogleMapController controller) {
                _mapController = controller;
                final currentMapStyle = (_themeType == ThemeType.dark)
                    ? _darkMapStyle
                    : _normalMapStyle;
                _mapController.setMapStyle(currentMapStyle);
              },
            );
          }), 

在此处输入图像描述

4

1 回答 1

0

作为一种解决方法,我将地图放在一个堆栈中。

这个堆栈充满了地图和一个容器。

容器在一小段时间(100 毫秒)后设置为透明。

于 2019-12-15T22:43:41.410 回答