我在我的项目中使用谷歌地图我想显示我的位置按钮
我应该怎么做才能使用swift
解决方法
您可以通过为地图视图设置填充来更改
MapControls的位置.
let mapView = GMSMapView() mapView.isMyLocationEnabled = true mapView.settings.myLocationButton = true mapView.padding = UIEdgeInsets(top: 0,left: 0,bottom: 50,right: 50)
它将更改我的位置控件的填充.从底部50px和右边50px