更改底部Google Maps中心位置,同时保持底部空白

时间:2018-08-20 06:25:00

标签: ios swift google-maps

中心位置在mapView的顶部。有什么办法可以使它居中吗?这是我当前正在使用的代码,但是没有运气:

 let mapInsets = UIEdgeInsets(top: 0.0, left: 0.0, bottom: 150.0, right: 0.0)
 mapView.padding = mapInsets

1 个答案:

答案 0 :(得分:0)

只需在顶部和底部或左侧和右侧中心位置设置相同的填充即可。

let mapInsets = UIEdgeInsets(top: 150.0, left: 0.0, bottom: 150.0, right: 0.0)
mapView.padding = mapInsets