我正在尝试添加默认按钮以返回到谷歌地图中的当前位置。我使用添加了按钮
self.mapView.myLocationButton = YES
但无法隐藏在我的情况下不需要的蓝点。
如果我设置
self.mapView.myLocationEnabled = NO
它将删除按当前位置按钮返回当前位置的功能。
以下是我实现的代码
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.mapView.delegate = self;
self.mapView.settings.myLocationButton = YES;
self.mapView.myLocationEnabled = YES;
}