Uygulamanızda gösterilecek bir yer fotoğrafı istemek için Android için Yerler SDK'sını (Eski) kullanabilirsiniz. Fotoğraf hizmeti tarafından döndürülen fotoğraflar, işletme sahipleri ve kullanıcıların katkıda bulunduğu fotoğraflar da dahil olmak üzere çeşitli kaynaklardan gelir.
Android için Yerler SDK'sı (Eski), maksimum 1.600 x 1.600 piksel boyutunda bir bit eşlem resmi döndürür.
Fotoğraf alma süreci
Bir yerin resmini almak için:
Placenesnesi getirmek için Yer Ayrıntıları (Eski)'nı kullanın (fetchPlace()kullanarak). YanıtPlacenesnesine eklenecek alanlar listesinePlace.Field PHOTO_METADATASalanını eklediğinizden emin olun.OnSuccessListeneriçindeFetchPlaceResponseiçin, yanıtPlacenesnesindenPhotoMetadatatüründe fotoğraf meta veri nesnesini almak içinPlace.getPhotoMetadas()kullanın.- İsteğe bağlı olarak maksimum yükseklik ve genişliği (piksel cinsinden) belirterek bir
FetchPhotoRequestnesnesi oluşturun. Fotoğrafların maksimum genişliği veya yüksekliği 1.600 piksel olabilir. - Fotoğrafın bit eşlemini istemek için
PlacesClient.fetchPhoto()kullanın. OnSuccessListenerekleyin ve fotoğrafıFetchPhotoResponseuygulamasından alın.
Fotoğraf alma
Aşağıdaki örnekte, yer fotoğrafı alma işlemi gösterilmektedir:
Kotlin
// Define a Place ID. val placeId = PlaceIdProvider.getRandomPlaceId() // 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 metadata = place.photoMetadatas if (metadata == null || metadata.isEmpty()) { Log.w(TAG, "No photo metadata.") return@addOnSuccessListener } val photoMetadata = metadata.first() // Get the attribution text. val attributions = photoMetadata?.attributions binding.placePhotosAttributions.text = attributions // Create a FetchResolvedPhotoUriRequest. val photoRequest = FetchResolvedPhotoUriRequest.builder(photoMetadata) .setMaxWidth(500) // Optional. .setMaxHeight(300) // Optional. .build() placesClient.fetchResolvedPhotoUri(photoRequest) .addOnSuccessListener { fetchPhotoResponse -> val photoUri = fetchPhotoResponse.uri Glide.with(this) .load(photoUri) .into(binding.placePhotosResult) }.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 = PlaceIdProvider.getRandomPlaceId(); // 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(); binding.placePhotosAttributions.setText(attributions); // Create a FetchResolvedPhotoUriRequest. final FetchResolvedPhotoUriRequest photoRequest = FetchResolvedPhotoUriRequest.builder(photoMetadata) .setMaxWidth(500) // Optional. .setMaxHeight(300) // Optional. .build(); placesClient.fetchResolvedPhotoUri(photoRequest).addOnSuccessListener((fetchPhotoResponse) -> { Glide.with(this) .load(fetchPhotoResponse.getUri()) .into(binding.placePhotosResult); }).addOnFailureListener((exception) -> { if (exception instanceof ApiException) { 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ıfta bulunmadan kullanılabilir veya gerekli atıf, resmin bir parçası olarak eklenir. Ancak, PhotoMetadata türündeki fotoğraf meta verileri nesnesi, iki tür ek ilişkilendirmeden birini içerebilir:
- İlişkilendirmeler:
PhotoMetadata.getAttributions()ile erişilen bir ilişkilendirme dizesi. - AuthorAttributions,
PhotoMetadata.getAuthorAttributions()tarafından erişilen birAuthorAttributionsnesnesi.
Döndürülen PhotoMetadata nesnesi, atıf türlerinden birini içeriyorsa resmi uygulamanızda gösterdiğiniz her yerde atıfı da eklemeniz gerekir. Daha fazla bilgi için Atıfları Gösterme başlıklı makaleyi inceleyin.
Kullanım ve faturalandırma
fetchPhoto() yapılan çağrılar için Yer Fotoğrafları (Eski) SKU'su ücretlendirilir.
Ayrıntılı bilgi için Kullanım ve Faturalandırma sayfasına bakın.