Moving the google maps compass

前端 未结 5 597
南旧
南旧 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:34

    -(void)viewDidAppear:(BOOL)animated{
    mapView.padding = UIEdgeInsetsMake (64,0,0,0);
    }
    

    This Code It will move Compass Button downward in 64 pixel.

提交回复
热议问题