删除右下角按钮从谷歌MapFlutter

nqwrtyyt  于 2023-03-19  发布在  Flutter
关注(0)|答案(3)|浏览(154)

在谷歌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),
     ],),),),],),);}
azpvetkf

azpvetkf1#

谢谢你的密码。
尝试在GoogleMap()小部件中放置一个选项“启用我的位置按钮

GoogleMap(
            onMapCreated: _onMapCreated,
            initialCameraPosition: 
              CameraPosition(
              target: _center,
              zoom: 11.0,
              ),
            mapType: _currentMapType,
            markers: _markers,
            onCameraMove: _onCameraMove,
            myLocationButtonEnabled: false,
            options: GoogleMapOptions(
              myLocationEnabled:true
              //there is a lot more options you can add here
            )
          ),
eh57zj3b

eh57zj3b2#

我遇到了类似的问题。添加“zoomControlsEnabled:false,'在GoogleMap()小部件中对我有效。

mo49yndu

mo49yndu3#

在GoogleMap小工具中使用myLocationButtonEnabled: false

相关问题