Android için Yerler SDK'sını kullanarak bir yer fotoğrafı isteğinde bulunabilirsiniz. uygulamanızda gösterilecek. Fotoğraflar hizmeti tarafından döndürülen fotoğraflar İşletme sahipleri ve kullanıcıların gönderdiği fotoğraflar da dahil olmak üzere çeşitli kaynaklar.
Android için Yerler SDK'sı maksimum değerde bir bit eşlem resmi döndürür 1600 x 1600 piksel boyutunda olmalıdır.
Fotoğraf alma işlemi
Bir yere ait resim almak için:
- Bir
Place
nesnesini getirmek için Yer Ayrıntıları'nı kullanın (fetchPlace()
veyafindCurrentPlace()
) tıklayın. Eklenecek alanlar listesinePlace.Field PHOTO_METADATAS
alanını eklediğinizden emin olun. bunları yanıtPlace
nesnesine ekleyin. -
OnSuccessListener
CANNOT TRANSLATEFetchPlaceResponse
veyaFindCurrentPlaceResponse
fotoğraf meta veri nesnesini almak içinPlace.getPhotoMetadas()
kullanınPhotoMetadata
yanıtPlace
nesnesinden. - Bir
FetchPhotoRequest
nesnesi oluşturun, isteğe bağlı olarak maksimum yükseklik ve genişliği (piksel cinsinden) belirtebilirsiniz. Fotoğraflar 1600 piksel genişliğinde veya yüksekliğinde olmalıdır. PlacesClient.fetchPhoto()
kullanın fotoğraf bit eşlemi isteğinde bulunun.- Bir
OnSuccessListener
ekleyin ve fotoğrafı şuradan alın:FetchPhotoResponse
Fotoğraf al
Aşağıdaki örnekte bir yer fotoğrafının nasıl alınacağı gösterilmektedir:
Kotlin
// 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.") } } }
Java
// 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. } }); });
İlişkilendirmeler
Çoğu durumda, yer fotoğrafları atıf yapılmadan kullanılabilir veya
resmin bir parçası olarak dahil edilen gerekli atıf. Ancak, fotoğraf meta veri nesnesi,
PhotoMetadata
iki tür ek ilişkilendirmeden birini içerebilir:
- İlişkilendirmeler,
PhotoMetadata.getAttributions()
. - AuthorAttributions,
AuthorAttributions
nesneye erişen:PhotoMetadata.getAuthorAttributions()
.
Döndürülen PhotoMetadata
nesnesi iki tür ilişkilendirme içeriyorsa
Resmi görüntülediğiniz her yerde ilişkilendirmeye uygulamanızda yer verin. Daha fazla bilgi için
İlişkilendirmeleri Görüntüleme adlı makaleyi inceleyin.
Kullanım ve faturalandırma
fetchPhoto()
numaralı telefona yapılan aramalar için Yer Fotoğrafı SKU'su ücretlendirilir.
Ayrıntılar için Kullanım ve Faturalandırma sayfasına göz atın.