在谷歌MapAPI谷歌Map小部件的右下方有一个按钮。我自己从来没有添加过这个按钮。我该如何删除它?
编辑:这是我的代码
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("TravelBuddy"),
),
body: Stack(
children: <Widget>[
GoogleMap(
onMapCreated: _onMapCreated,
initialCameraPosition:
CameraPosition(
target: _center,
zoom: 11.0,
),
mapType: _currentMapType,
markers: _markers,
onCameraMove: _onCameraMove,
),
Padding(
padding: EdgeInsets.all(16.0),
child: Align(
alignment: Alignment.topRight,
child: Column(
children: <Widget>[
button(_onMapTypeButtonPressed, Icons.map),
SizedBox(height: 16.0),
button(_onAddMarkerButtonPressed, Icons.add_location),
SizedBox(height: 16.0),
button(_goToPosition1, Icons.location_searching),
],),),),],),);}
3条答案
按热度按时间azpvetkf1#
谢谢你的密码。
尝试在GoogleMap()小部件中放置一个选项“启用我的位置按钮
eh57zj3b2#
我遇到了类似的问题。添加“zoomControlsEnabled:false,'在GoogleMap()小部件中对我有效。
mo49yndu3#
在GoogleMap小工具中使用
myLocationButtonEnabled: false
。