【发布时间】:2016-04-20 09:07:19
【问题描述】:
我做了很多事情都无法找到解决这种情况的方法。在谷歌地图中,我当前的位置标记没有出现,只有地面覆盖。
我正在使用 Google 地图 SDK 1.13.0 。
GMSMapView *mapView = [[GMSMapView alloc] init];
mapView.tag = Tag_googleMapView;
mapView.frame = CGRectMake(0.0, 0.0, view.frame.size.width,view.frame.size.height);
mapView.delegate = self;
mapView.indoorEnabled = YES;
[mapView setMyLocationEnabled:YES];
[mapView.settings setMyLocationButton:YES];
看起来像这样。
不正确的蓝色当前位置标记没有出现
【问题讨论】:
标签: ios objective-c google-maps