如何使用swift更改谷歌地图中我的位置按钮的位置

时间:2017-06-27 10:12:07

标签: ios iphone google-maps google-maps-api-3 currentlocation

my location button

我在我的项目中使用谷歌地图我想显示我的位置按钮 我应该怎么做才能使用swift

3 个答案:

答案 0 :(得分:29)

您可以通过为地图视图设置填充来更改MapControls的位置。

 let mapView = GMSMapView()

 mapView.isMyLocationEnabled = true
 mapView.settings.myLocationButton = true

 mapView.padding = UIEdgeInsets(top: 0, left: 0, bottom: 50, right: 50)

它将更改我的位置控件的填充。从底部50px和右边50px

请参阅下面的屏幕截图,其中添加了50px的填充,从右到右。

enter image description here

答案 1 :(得分:6)

与Subramanian一样,这非常有效:

foreach ($xml_data->channel->item as $key => $data) {
    $ns = $xml->getNamespaces(true);
    $urls = $data->children('media', true)->children($ns['media']);
    print_r($urls);
}

如果您的应用中有导航栏,这是完美的。

答案 2 :(得分:2)

快速更新4:仅更改我的位置按钮的位置

{{1}}