如何从GMSMapView更改myLocationButton位置?

时间:2013-06-19 03:13:51

标签: ios google-maps-sdk-ios

有人知道如何从GMSMapView实例获取myLocationButton的实例吗?还是一种改变默认位置的方法?我只需要将它移动一些像素。

4 个答案:

答案 0 :(得分:15)

根据此Issue 5864: Bug: GMSMapView Padding appears not to work with AutoLayout的问题跟踪器,有一个更简单的解决方法:

- (void)viewDidAppear:(BOOL)animated {
  // This padding will be observed by the mapView
  _mapView.padding = UIEdgeInsetsMake(64, 0, 64, 0);
}

答案 1 :(得分:4)

Raspu的解决方案可以移动整个GMSUISettingsView,包括指南针。

我找到了一个只移动位置按钮的解决方案:

for (UIView *object in mapView_.subviews) {
    if([[[object class] description] isEqualToString:@"GMSUISettingsView"] )
    {
        for(UIView *view in object.subviews) {
            if([[[view class] description] isEqualToString:@"UIButton"] ) {
                CGRect frame = view.frame;
                frame.origin.y -= 75;
                view.frame = frame;
            }
        }
        /*        
        CGRect frame = object.frame;
        frame.origin.y += 75;
        object.frame = frame;
        */
    }
};

如果取消注释三条线,则只移动指南针(由于某种原因,我无法移动GMSCompassButton视图)。

答案 2 :(得分:3)

Swift 2.3:仅移动位置按钮的解决方案。我正在使用pod'GoogleMaps','〜> 2.1' 。

for object in mapView.subviews {
    if object.theClassName == "GMSUISettingsView" {
        for view in object.subviews {
            if view.theClassName == "GMSx_QTMButton" {
              var frame = view.frame
              frame.origin.y = frame.origin.y - 110px // Move the button 110 up
              view.frame = frame
            }
        }
    }
}

扩展以获取类名。

extension NSObject {
  var theClassName: String {
    return NSStringFromClass(self.dynamicType)
  }
}

我会尽快将此代码更新为 Swift 3.0 。 :)

答案 3 :(得分:0)

现在我找到的唯一方法就是这样:

//The method 'each' is part of Objective Sugar 
[googleMapView.subviews each:^(UIView *object) {
    if([[[object class] description] isEqualToString:@"GMSUISettingsView"] )
    {
        CGPoint center = object.center;
        center.y -= 40; //Let's move it 40px up
        object.center = center;
    }
}];

它工作正常,但官方方式会更好。

适用于1.4.0版本。对于以前的版本,请更改@"GMSUISettingsView"的{​​{1}}。