我正在使用谷歌地图使用swift请求iOS应用程序。我在故事板中添加了地图(GMSMapView)并尝试像这样的罗盘按钮
mapView.settings.compassButton = true
但我无法看到指南针按钮。
答案 0 :(得分:2)
如果导航栏可见,罗盘按钮就在后面。要使其显示在导航栏下方,您需要在地图视图的顶部添加填充。
<强>目标C 强>
UIEdgeInsets mapInsets = UIEdgeInsetsMake(80.0, 0.0, 0.0, 0.0);
GMSMapView *mapView;
mapView.padding = mapInsets;
<强>夫特强>
let mapInsets = UIEdgeInsets(top: 80.0, left: 0.0, bottom: 0.0, right: 0.0)
mapView.padding = mapInsets