iOS接入Google maps

2021-01-12  本文已影响0人  太阳的小号

关于iOS 应用如何添加谷歌地图,网上其实有很多文档,但当自己实际开发时,还是会有很多问题,我这次的需求就是地图国际化,原项目中接的是高德地图,现在要替换成谷歌地图,要求功能及页面的UI显示要和之前一致(肯定不可能百分百,至少8成像)

一、项目集成Google maps

官方文档连接
推荐是使用cooapods集成,通常会使用一下两个sdk

pod 'GoogleMaps', '指定版本号'

二、获取API密匙

前提是已经在GoogleMapSDK中创建好自己的应用,需要有自己的Google账号,我这边是Android开发早就申请好了,我复制了APIKey直接使用

三、配置plist文件搭建定位环境

info.pliste文件中添加定位权限相关字段

四、调用代理方法实现相关需求

  1. AppDelegate.m 导入框架
#import <GoogleMaps/GoogleMaps.h>
  1. application:didFinishLaunchingWithOptions方法中添加
[GMSServices provideAPIKey: @"APIKey"];
  1. 在我们需要显示地图的控制器调用API方法
    为了解耦代码增加可复用性,可以写一个地图的类,对地图做一些简单的配置,增加一些自定义方法,比如地图截屏方法,因为项目的需求的是在一个IM空间中,像他人发送一个地理位置,以聊天气泡的形式发送(参考微信中的“发送位置”)

简单介绍一下我用到的 GMSMapView的属性,如果想知道全部的属性,可以在地图的sdk加载好之后,点击进入到 GMSMapView 中查看

- (GMSMapView *)mapView {
    if (!_mapView) {
       // 根据经纬度和缩放等级,初始化相机,显示地图内容,用于海外的,最好给个国外的经纬度
        GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:38.8879
                                                                longitude:-77.0200
                                                                     zoom:17];
        _mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
        _mapView.mapType = kGMSTypeNormal;
        // 设备当前位置的点和准确性圆圈
        _mapView.myLocationEnabled = YES;
        // 使用指南针
        _mapView.settings.compassButton = YES;
        // 当前位置按钮
        _mapView.settings.myLocationButton = YES;
        _mapView.settings.indoorPicker = NO;
    }
    return _mapView;
}
pod 'GooglePlaces','指定版本号'

但是我实际使用过程中发现,还是不能满足现在的需求,他的代理方法返回的是附近一些POI点的集合,一个数组,而且测试发现,这个数组中的元素,只是你当前设备所在位置周边的POI的信息,不是随着你地图中心位置移动而变化的,达不到想要的效果(也许还有其他方法我没发现,有经验的大佬请教教我),最后退而求其次,用了 GMSAddress,对当前经纬度的位置做了反编译,做多能拿到当前位置是那条路和邮编。
提示: GMSServices 和 GMSPlacesClient 的 APIKey是不同的,不能使用同一个,

[GMSServices provideAPIKey: @"key1"];
[GMSPlacesClient provideAPIKey: @"key2"];

否则 GooglePlaces 里面类的代理方法使用都会报错Error Domain=com.google.places.ErrorDomain Code=-3 "An internal error occurred in the Places API library. If you believe this error represents a bug, please file a report using the instructions on our community and support page ([https://developers.google.com/places/ios-sdk/support)](https://developers.google.com/places/ios-sdk/support))." UserInfo={NSLocalizedFailureReason=An internal error occurred in the Places API library. If you believe this error represents a bug, please file a report using the instructions on our community and support page ([https://developers.google.com/places/ios-sdk/support).](https://developers.google.com/places/ios-sdk/support).), NSUnderlyingError=0x171251c10 {Error Domain=com.google.places.api.server.ErrorDomain Code=-2 "This API project is not authorized to use this API." UserInfo={NSLocalizedFailureReason=This API project is not authorized to use this API.}}}

- (nullable UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker;

五、遇到的问题

  1. 当他人查看我送的位置时,一进入到该页面要求大头针气泡是始终显示的,这就需要将地图的 selectedMarker 设为当前的大头针,因为地图可缩放滑动,当点击到地图任意一点,大头针气泡都会隐藏,我这边是在 didTapAtCoordinate 方法中设置地图的 selectedMarker
- (void)mapView:(GMSMapView *)mapView didTapAtCoordinate:(CLLocationCoordinate2D)coordinate {
    self.mapView.selectedMarker = self.defaultMarker;
}
  1. 打开地图,将地图中心点移到很远的地方,大概5分钟左右,地图中心点会在自动回到当前设备所在位置,
    处理方法:我是将 CLLocationManager 的 distanceFilter 属性设置成默认的,感觉是可以的,我自测没什么问题,具体我也不清楚,等待测试反馈结果。
上一篇下一篇

猜你喜欢

热点阅读