码迷,mamicode.com
首页 > 移动开发 > 详细

Google Map SDK for iOS

时间:2014-11-07 18:24:35      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   color   ar   os   使用   

根据 Google 提供的start for google map sdk for iOS进行一系列的设置,这里就不多说了

https://developers.google.com/maps/documentation/ios/start

 

google map sdk for iOS提供了全套的定位和显示服务,所以不需要调用CoreLocation中的CLLocationManager去管理Location

只需要设置google map的

    mapView_.myLocationEnabled = YES;

    mapView_.settings.myLocationButton = YES;

就可以实现位置的跟踪。

 

但是在iOS8之后,同样的设置会无法定位,这是因为苹果在定位服务中强制开发者加入使用location信息的提醒,所以如果没有加入这个提醒,将无法获得定位坐标。

如何去设置提醒呢?很简单:

在XXXViewController.h文件中加入

@property (nonatomic,retain) CLLocationManager *locationManager;

在XXXViewController.m文件的viewDidload:中加入

[_locationManager requestWhenInUseAuthorization];

在XXXViewController.m中加入

- (BOOL)ios8{
    return [[[UIDevice currentDevice] systemVersion]  isEqual: @"8.0"];
}

在Info.plist中加入

NSLocationWhenInUseUsageDescription:This will be used to obtain or track your location.

这样的键值对

此时你就可以正常使用iPhone的定位功能了。

 

Google Map SDK for iOS

标签:des   style   blog   http   io   color   ar   os   使用   

原文地址:http://www.cnblogs.com/scaptain/p/4081689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!