gpt4 book ai didi

ios - 我的位置按钮未出现在 View 中(Google map SDK、ios)

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:53 26 4
gpt4 key购买 nike

这是我的 mapViewController.m 文件:

@interface MapViewController()

@property (strong, nonatomic) GMSMapView* mapView;
@property (weak, nonatomic) IBOutlet GMSMapView *subView;

@end

@implementation MapViewController

- (void) viewDidLoad{
// Create a GMSCameraPosition that tells the map to display the
// coordinate -33.86,151.20 at zoom level 6.
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
longitude:151.20
zoom:6];

_mapView = [GMSMapView mapWithFrame:self.view.bounds camera:camera];

_mapView.myLocationEnabled = YES;

_mapView.settings.compassButton = YES;
_mapView.settings.myLocationButton = YES;

[self.subView addSubview:_mapView];
}

我的问题是我的位置按钮没有出现,感谢任何帮助! :)如果您需要查看更多我的项目,请告诉我。

最佳答案

得到正确答案。即使您将 map View 添加为 subview ,这也会起作用。在 IOS 9.2 之前测试和验证相同

_mapView.settings.myLocationButton = YES

关于ios - 我的位置按钮未出现在 View 中(Google map SDK、ios),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24703229/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com