Mit dem Places SDK for Android können Sie ein Ortsfoto anfordern, das in Ihrer App angezeigt werden soll. Die vom Fotodienst bereitgestellten Fotos stammen aus unterschiedlichen Quellen, z. B. von Geschäftsinhabern oder Nutzern.
Das Places SDK for Android gibt ein Bitmapbild mit einer maximalen Größe von 1.600 × 1.600 Pixeln zurück.
Abruf von Fotos
So rufen Sie ein Bild für einen Ort ab:
- Verwenden Sie Place Details, um ein
Place
-Objekt abzurufen (verwenden Sie entwederfetchPlace()
oderfindCurrentPlace()
). Fügen Sie das FeldPlace.Field PHOTO_METADATAS
in die Liste der Felder ein, die imPlace
-Objekt der Antwort enthalten sein sollen. - Verwende im
OnSuccessListener
für deinFetchPlaceResponse
oderFindCurrentPlaceResponse
Place.getPhotoMetadas()
, um das Fotometadatenobjekt vom TypPhotoMetadata
aus demPlace
-Objekt in der Antwort abzurufen. - Erstellen Sie ein
FetchPhotoRequest
-Objekt und geben Sie optional die maximale Höhe und Breite in Pixeln an. Fotos dürfen maximal 1.600 Pixel breit oder hoch sein. - Verwenden Sie
PlacesClient.fetchPhoto()
, um die Foto-Bitmap anzufordern. - Fügen Sie eine
OnSuccessListener
hinzu und laden Sie das Foto von derFetchPhotoResponse
herunter.
Foto abrufen
Im folgenden Beispiel wird veranschaulicht, wie ein Ortsfoto abgerufen wird:
// Define a Place ID. val placeId = "INSERT_PLACE_ID_HERE" // Specify fields. Requests for photos must always have the PHOTO_METADATAS field. val fields = listOf(Place.Field.PHOTO_METADATAS) // Get a Place object (this example uses fetchPlace(), but you can also use findCurrentPlace()) val placeRequest = FetchPlaceRequest.newInstance(placeId, fields) placesClient.fetchPlace(placeRequest) .addOnSuccessListener { response: FetchPlaceResponse -> val place = response.place // Get the photo metadata. val metada = place.photoMetadatas if (metada == null || metada.isEmpty()) { Log.w(TAG, "No photo metadata.") return@addOnSuccessListener } val photoMetadata = metada.first() // Get the attribution text. val attributions = photoMetadata?.attributions // Create a FetchPhotoRequest. val photoRequest = FetchPhotoRequest.builder(photoMetadata) .setMaxWidth(500) // Optional. .setMaxHeight(300) // Optional. .build() placesClient.fetchPhoto(photoRequest) .addOnSuccessListener { fetchPhotoResponse: FetchPhotoResponse -> val bitmap = fetchPhotoResponse.bitmap imageView.setImageBitmap(bitmap) }.addOnFailureListener { exception: Exception -> if (exception is ApiException) { Log.e(TAG, "Place not found: " + exception.message) val statusCode = exception.statusCode TODO("Handle error with given status code.") } } }
// Define a Place ID. final String placeId = "INSERT_PLACE_ID_HERE"; // Specify fields. Requests for photos must always have the PHOTO_METADATAS field. final List<Place.Field> fields = Collections.singletonList(Place.Field.PHOTO_METADATAS); // Get a Place object (this example uses fetchPlace(), but you can also use findCurrentPlace()) final FetchPlaceRequest placeRequest = FetchPlaceRequest.newInstance(placeId, fields); placesClient.fetchPlace(placeRequest).addOnSuccessListener((response) -> { final Place place = response.getPlace(); // Get the photo metadata. final List<PhotoMetadata> metadata = place.getPhotoMetadatas(); if (metadata == null || metadata.isEmpty()) { Log.w(TAG, "No photo metadata."); return; } final PhotoMetadata photoMetadata = metadata.get(0); // Get the attribution text. final String attributions = photoMetadata.getAttributions(); // Create a FetchPhotoRequest. final FetchPhotoRequest photoRequest = FetchPhotoRequest.builder(photoMetadata) .setMaxWidth(500) // Optional. .setMaxHeight(300) // Optional. .build(); placesClient.fetchPhoto(photoRequest).addOnSuccessListener((fetchPhotoResponse) -> { Bitmap bitmap = fetchPhotoResponse.getBitmap(); imageView.setImageBitmap(bitmap); }).addOnFailureListener((exception) -> { if (exception instanceof ApiException) { final ApiException apiException = (ApiException) exception; Log.e(TAG, "Place not found: " + exception.getMessage()); final int statusCode = apiException.getStatusCode(); // TODO: Handle error with given status code. } }); });
Attribution
In den meisten Fällen dürfen Fotos von Orten ohne Quellenangabe verwendet werden bzw. sind die erforderlichen Zuordnungen bereits im Bild eingebunden. Das Fotometadatenobjekt vom Typ PhotoMetadata
kann jedoch zwei Arten von zusätzlichen Zuschreibungen enthalten:
- Attributions: Ein Attributionsstring, auf den über
PhotoMetadata.getAttributions()
zugegriffen wird. - AuthorAttributions, ein
AuthorAttributions
-Objekt, auf das überPhotoMetadata.getAuthorAttributions()
zugegriffen wird.
Wenn das zurückgegebene PhotoMetadata
-Objekt eine dieser Arten von Quellenangaben enthält, müssen Sie die Quellenangabe immer dann in Ihre Anwendung einbinden, wenn das Bild zu sehen ist. Weitere Informationen finden Sie unter Attributionen anzeigen.
Nutzung und Abrechnung
Die SKU Places Photo wird für Aufrufe von fetchPhoto()
berechnet.
Weitere Informationen finden Sie auf der Seite Nutzung und Abrechnung.