Moving the google maps compass

前端 未结 5 636
南旧
南旧 2021-01-18 07:05

The new google maps SDK for iOS now has a UI widget for displaying a compass. The only problem is I only see methods to toggle it on or off. Do you know if it\'s possible

5条回答
  •  甜味超标
    2021-01-18 07:32

    Not very orthodox but it works.

      for (UIView *view in gmMapView.subviews) {
            NSRange isRange = [view.description rangeOfString:@"GMSCompassButton"];
            if (isRange.location != NSNotFound) {
               CGRect frame = view.frame;
               frame.origin.y=55;
               frame.origin.x=gmMapView.frame.size.width/2;
               [view setFrame:frame];
            }
      }
    

提交回复
热议问题