フラッター。 GoogleMapウィジェットの左下隅にあるGoogleロゴの位置を変更する方法、それを無効/有効にできるかどうかも知りたい
「flutterのGoogleマップ」パッケージを使用しています: https://pub.dev/packages/google_maps_flutter バージョン:^ 0.5.19
ありがとうございました
Googleはこれをすでに簡略化しており、Ramiの回答から適応しています。次のようにして、マップにパディングを追加できます。
GoogleMap(
myLocationEnabled: true,
padding: EdgeInsets.only(bottom: mapBottomPadding, top: 0, right: 0, left: 0),
myLocationButtonEnabled: true,
compassEnabled: true,
mapToolbarEnabled: true,
mapType: MapType.normal,
markers: _markers,
initialCameraPosition: _kLake,
onMapCreated: (GoogleMapController controller) {
_controller.complete(controller);
mapController = controller;
setState(() {
mapBottomPadding = 280;
_goToTheLake();
});
},
),
マップのカメラターゲットは、マップに左、上、右、または下のいずれかに適用されたパディングに基づいて調整されます。
お役に立てれば。