Google Maps SDK for iOS 배포 단계
공식 정보는 Google Developers에 있습니다.
1. API Key 획득
Google APIs Console 서비스 탭에서 Google Maps SDK for iOS를 켭니다.
2. SDK를 프로젝트에 추가
Getting the Google Maps SDK for iOS
3. 필요한 프레임워크를 프로젝트에 추가
4. 빌드 설정
armv7
로 설정 (또는 Valid Architectures에서 armv7s
제거) -ObjC
추가 5. Info.plist 편집
Bundle identifier 필드에 1단계에서 API Key 획득 시 입력한 Bundle identifier를 입력합니다.
6. AppDelegate로 초기화
#import <GoogleMaps/GoogleMaps.h>
application:didFinishLaunchingWithOptions:
에서 provideAPIKey:
메서드 호출 (인수에 1 단계에서 얻은 API 키를 전달) [GMSServices provideAPIKey:@"YOUR_API_KEY"];
7. 지도를 표시하는 ViewController 구현
#import <GoogleMaps/GoogleMaps.h>
@property (nonatomic, weak) GMSMapView *mapView;
- (void)loadView {
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.8683
longitude:151.2086
zoom:6];
self.mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
self.mapView.myLocationEnabled = YES;
self.view = self.mapView;
GMSMarkerOptions *options = [[GMSMarkerOptions alloc] init];
options.position = CLLocationCoordinate2DMake(-33.8683, 151.2086);
options.title = @"Sydney";
options.snippet = @"Australia";
[self.mapView addMarkerWithOptions:options];
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.mapView startRendering];
}
- (void)viewWillDisappear:(BOOL)animated {
[self.mapView stopRendering];
[super viewWillDisappear:animated];
}
Reference
이 문제에 관하여(Google Maps SDK for iOS 배포 단계), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/shu223/items/bfb5ef3e45682c2bb763텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)