Zu Place Photo migrieren (Neu)

Das Places SDK for iOS unterstützt Place Photo (Legacy). Wenn Sie mit Place Photo (Legacy) vertraut sind, werden mit Place Photo (Neu) die folgenden Änderungen eingeführt:

  • Es wird ein neues Preismodell verwendet. Preisinformationen für alle APIs finden Sie unter Preise für das Places SDK for iOS (Neu).

  • Bei „Foto platzieren“ (Legacy) war eine maximale Fotogröße von 1.600 × 1.600 Pixeln möglich. „Place Photo (New)“ unterstützt Größen bis zu 4.800 × 4.800 Pixel.

  • Rufen Sie zum Stellen einer Anfrage die neue Methode GMSPlacesClient fetchPhotoWithRequest:callback: auf.

  • Übergabe an die Anfrage:

  • Jedes Foto wird durch eine GMSPlacePhotoMetadata-Instanz dargestellt. Für das Places SDK for iOS (New) enthält die GMSPlacePhotoMetadata-Instanz ein neues authorAttribution-Feld, das durch die neue GMSPlaceAuthorAttribution-Klasse dargestellt wird.

    Wenn die zurückgegebene GMSPlacePhotoMetadata-Instanz attributions oder authorAttribution enthält, müssen Sie diese Zuordnungen immer dann in Ihre Anwendung einbinden, wenn das Bild zu sehen ist. Weitere Informationen finden Sie in der Dokumentation zu Attributionen.

Beispielanfrage

Die folgende Beispielmethode verwendet eine Orts-ID und ruft das erste Foto in der zurückgegebenen Liste ab. Sie können diese Methode als Vorlage für die Methode verwenden, die Sie in Ihrer eigenen App erstellen.

Swift

// A hotel in Saigon with an attribution.
let placeID = "ChIJV4k8_9UodTERU5KXbkYpSYs"

// Request list of photos for a place
placesClient.lookUpPhotos(forPlaceID: placeID) { (photos, error) in

  guard let photoMetadata: GMSPlacePhotoMetadata = photos?.results[0] else {
    return }

  // Request individual photos in the response list
  let fetchPhotoRequest = GMSFetchPhotoRequest(photoMetadata: photoMetadata, maxSize: CGSizeMake(4800, 4800))
  self.client.fetchPhoto(with: fetchPhotoRequest, callback: {
    (photoImage: UIImage?, error: Error?) in
      guard let photoImage, error == nil else {
        print("Handle photo error: ")
        return }
      print("Display photo Image: ")
    }
  )
}

Objective-C

// A hotel in Saigon with an attribution.
NSString *placeID = @"ChIJV4k8_9UodTERU5KXbkYpSYs";

[placesClient lookUpPhotosForPlaceID:placeID callback: ^(GMSPlacePhotoMetadataList *list, NSError *error) {
  GMSPlacePhotoMetadata *photoMetadata = [list results][0];

  // Request individual photos in the response list
  GMSFetchPhotoRequest *fetchPhotoRequest = [[GMSFetchPhotoRequest alloc] initWithPhotoMetadata:photoMetadata maxSize:CGSizeMake(4800, 4800)];
  [placesClient fetchPhotoWithRequest:fetchPhotoRequest callback: ^(UIImage *_Nullable photoImage, NSError *_Nullable error) {
    if (error == nil) {
      // Display photo
    }
  }];
}];