有没有办法让普通的地图视图在颤动。当用户打开应用程序时,我需要准备好地图。我唯一看到的是apptree插件,但我只能在用户点击按钮后显示地图(全屏,我需要将其放入容器中)。 Basicaly我需要的是一些Map Widget,有没有?
答案 0 :(得分:2)
你可以使用像
这样的插件https://github.com/apptreesoftware/flutter_google_map_view
用于在iOS和Android上显示谷歌地图的flutter插件
//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));
}
答案 1 :(得分:1)
不幸的是,这是选择在GPU上渲染自己的组件而不是使用OEM解决方案的缺点之一,他们需要通过Flutter API烘焙GMaps渲染器,同时可能尝试这种实现:https://github.com/apptreesoftware/flutter_map