您可以使用 Places SDK for Android 請求地點相片,在應用程式中顯示。「地點相片」服務傳回的相片取自各種來源,包括業主和使用者提供的相片。
Places SDK for Android 會傳回點陣圖圖片,大小上限為 1600 x 1600 像素。
相片擷取程序
如要擷取地點的圖片,請按照下列步驟操作:
- 使用「地點詳細資料」擷取
Place
物件 (使用fetchPlace()
)。請務必在要納入回應Place
物件的欄位清單中,加入Place.Field PHOTO_METADATAS
欄位。 - 在
OnSuccessListener
中,針對FetchPlaceResponse
,使用Place.getPhotoMetadas()
從回應Place
物件取得相片中繼資料物件 (類型為PhotoMetadata
)。 - 建立
FetchPhotoRequest
物件,並視需要指定高度和寬度上限 (以像素為單位)。相片的寬度或高度不得超過 1600 像素。 - 使用
PlacesClient.fetchPhoto()
要求相片點陣圖。 - 新增
OnSuccessListener
,然後從FetchPhotoResponse
取得相片。
取得相片
以下範例示範如何取得地點相片:
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. } }); });
歸因
在大多數情況下,使用地點相片時可以不包含作者資訊,圖片本身也可能已加入必要的作者資訊。不過,PhotoMetadata
類型的相片中繼資料物件可包含下列任一類型的額外出處資訊:
- 出處:可透過
PhotoMetadata.getAttributions()
存取的出處字串。 - AuthorAttributions,這是透過
PhotoMetadata.getAuthorAttributions()
存取的AuthorAttributions
物件。
如果傳回的 PhotoMetadata
物件包含任一類型的作者資訊,您每次顯示圖片時就必須在應用程式中加入作者資訊。詳情請參閱「顯示出處資訊」。
用量與計費
針對 fetchPhoto()
的呼叫,系統會視為「Places Photo」SKU 來計費。詳情請參閱「用量與帳單」頁面。