有什么办法可以在颤振中制作正常的地图视图。我需要在用户打开应用程序时准备好地图。我唯一看到的是那个apptree插件,但我只能在用户点击按钮后显示地图(和全屏,我需要将其放入容器中(。基本上我需要的是一些地图小部件,有吗?
使用一些插件,比如
https://github.com/apptreesoftware/flutter_google_map_view
用于在iOS和Android上显示谷歌地图的颤振插件
//Create an instance variable for the mapView
var _mapView = new MapView();
//Add a method to call to show the map.
void showMap() {
_mapView.show(new MapOptions(showUserLocation: true));
}
不幸的是,这是选择在GPU上渲染自己的组件而不是使用OEM解决方案的缺点之一,他们需要在Flutter API上烘焙GMaps渲染器,同时可能会尝试以下实现: https://github.com/apptreesoftware/flutter_map