我在使用带有 Flutter 的谷歌地图时遇到问题,
https: //pub.dev/packages/google_maps_flutter
我的代码如下:
GoogleMap(
mapType: MapType.normal,
myLocationEnabled: true,
myLocationButtonEnabled: true,
onMapCreated: _onMapCreated,
padding: EdgeInsets.only(top: ScreenUtil().setHeight(100)),
zoomControlsEnabled: false,
initialCameraPosition: CameraPosition(
target: _currentPosition ?? Constants.DEFAULT_POSITION,
zoom: 17,
),
)
第一次运行时,位置权限对话框出现,当我接受权限时,我的位置按钮没有出现。
第二次打开googlemap页面(此时已经授权),我的位置显示正常。
谢谢