首页 > 代码库 > iOS 使用腾讯地图显示用户位置注意事项
iOS 使用腾讯地图显示用户位置注意事项
1. 向 target中info 加入 NSLocationWhenInUseUsageDescription,string 类型。值是描写叙述为什么须要用户位置,这句话会出如今 提示用户是否同意app訪问用户位置提示框中。
2. 在appdelegate.m 的 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
中加入
//地图定位
CLLocationManager* locationManager = [[CLLocationManageralloc]init];
if ([[UIDevicecurrentDevice].systemVersionfloatValue] >= 8.0) {
[locationManager requestWhenInUseAuthorization];
}
3. 加入腾讯地图self.mapView = [[QMapView alloc] initWithFrame:self.view.frame];
self.mapView.delegate =self;
self.mapView.showsUserLocation =YES;
//缩放级别
_mapView.zoomLevel =13;
[self.view addSubview:_mapView];
iOS 使用腾讯地图显示用户位置注意事项
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。