地點相片

您可以使用 Places SDK for Android 要求地點相片, 顯示在整個應用程式中相簿服務傳回的相片來自 ,包括業主和使用者提供的相片等。

Places SDK for Android 會傳回最大值 大小為 1600 x 1600 像素

相片擷取程序

如何擷取地點的圖片:

  1. 使用 Place Details 擷取 Place 物件 (使用 fetchPlace()findCurrentPlace())。 請務必在欄位清單中加入 Place.Field PHOTO_METADATAS 欄位,以便 包含在回應 Place 物件中。
  2. OnSuccessListener敬上 適用於 FetchPlaceResponse。 或 FindCurrentPlaceResponse, 使用 Place.getPhotoMetadas() 取得類型為 PhotoMetadata 來自回應 Place 物件的要求。
  3. 建立 FetchPhotoRequest 物件。 視需要指定最大高度和寬度 (以像素為單位)。相片有 寬度或高度不得超過 1600 像素
  4. 使用 PlacesClient.fetchPhoto() 來要求相片點陣圖。
  5. 新增 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 物件包含任一種屬性類型,您必須 在應用程式內顯示圖片的任何位置,加入作者資訊。如需更多資訊 請參閱「顯示出處」。

用量與計費

針對呼叫 fetchPhoto() 的呼叫,系統會視為 Places Photo SKU。 詳情請參閱「用量與計費」頁面。