gpt4 book ai didi

ios - 为什么谷歌地图无法使用谷歌地图 API 在 iOS 中加载?

转载 作者:行者123 更新时间:2023-11-28 19:50:13 25 4
gpt4 key购买 nike

我正在尝试使用 Google map API 将 Google map 集成到我的 iOS 应用程序中。但是, map 不想加载。我很确定我集成了正确的 API key 和适当的框架。有线的是我没有加载 map ,但页面底部有谷歌标志。这是 viewController 页面的代码,以及执行的快照:

#import "ViewController.h"
#import <GoogleMaps/GoogleMaps.h>


@implementation ViewController{
GMSMapView *mapView_;
}


- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:33.53805 longitude:-5.0766 zoom:6];
mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
mapView_.myLocationEnabled = YES;
self.view = mapView_;

GMSMarker *marker = [[GMSMarker alloc]init];
marker.title = @"Lab 7";
marker.snippet = @"Al Akhawayn University in Ifrane";
marker.map = mapView_;

}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end

iOS map execution

最佳答案

我在这里看到的第一件事是您创建标记的方式。您需要告知它的坐标,如下所示:

CLLocationCoordinate2D addressLocation = CLLocationCoordinate2DMake(self.initialLat, self.initialLong);
GMSMarker *marker = [GMSMarker markerWithPosition: addressLocation];
marker.title = @"Lab 7";
marker.snippet = @"Al Akhawayn University in Ifrane";
marker.map = mapView_;

第二件事,当你写的时候:

mapView_.myLocationEnabled = YES;

您是在告诉 mapView 聚焦您的位置,忽略您之前设置的相机坐标。导致带有 Google Logo 的米色屏幕的原因可能是模拟器没有内置 GPS,因此您的本地化信息不会显示在模拟器上。尝试评论该行...

对于您发布的这段代码,我只能想到这些。

关于ios - 为什么谷歌地图无法使用谷歌地图 API 在 iOS 中加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29582480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com