'setMapStyle' 已弃用,不应使用。使用 GoogleMap.style 代替

问题描述 投票:0回答:1

我最近发现

google_maps_flutter
包中有关 MapStyle 的内容发生了变化。

错误:“setMapStyle”已弃用,不应使用。请改用 GoogleMap.style。

flutter google-maps flutter-dependencies google-maps-flutter
1个回答
0
投票

删除函数

setMapStyle
并在
style
小部件中添加
GoogleMap()
参数。

void _onMapCreated(GoogleMapController controller) async {
    _controller = controller;
    //setMapStyle Function removed
}
...
GoogleMap(
    style: Utils.mapStyle
);
© www.soinside.com 2019 - 2024. All rights reserved.