รูปภาพสถานที่

เลือกแพลตฟอร์ม: Android iOS JavaScript บริการเว็บ

คุณใช้ Places SDK สําหรับ Android เพื่อขอรูปภาพสถานที่เพื่อแสดงในแอปพลิเคชันได้ รูปภาพที่บริการรูปภาพส่งมาจากแหล่งที่มาที่หลากหลาย ซึ่งรวมถึงเจ้าของธุรกิจและรูปภาพที่ผู้ใช้สร้างขึ้น หากต้องการเรียกข้อมูลรูปภาพของสถานที่หนึ่งๆ คุณต้องทําตามขั้นตอนต่อไปนี้

  1. ดึงออบเจ็กต์ Place (ใช้ fetchPlace() หรือ findCurrentPlace()) อย่าลืมใส่ช่อง PHOTO_METADATAS ในคําขอ
  2. ใน OnSuccessListener สําหรับ FetchPlaceRequest ให้เพิ่ม FetchPhotoRequest (ไม่บังคับ) โดยระบุความสูงและความกว้างสูงสุด (เป็นพิกเซล) รูปภาพมีความกว้างหรือความสูงได้สูงสุด 1600px
  3. เพิ่ม OnSuccessListener และรับบิตแมปจาก FetchPhotoResponse

รับรูปภาพสถานที่

ตัวอย่างต่อไปนี้แสดงให้เห็นถึงการขอรูปภาพสถานที่

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.
        }
    });
});

      

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.")
                }
            }
    }

      

การระบุแหล่งที่มา

ในกรณีส่วนใหญ่คุณใช้รูปภาพสถานที่ได้โดยไม่ต้องระบุแหล่งที่มา หรือใส่การระบุแหล่งที่มาที่จําเป็นลงในรูปภาพก็ได้ อย่างไรก็ตาม หากอินสแตนซ์ PhotoMetadata ที่แสดงมีการระบุแหล่งที่มา คุณต้องใส่การระบุแหล่งที่มาเพิ่มเติมในแอปพลิเคชันทุกครั้งที่คุณแสดงรูปภาพ สําหรับข้อมูลเพิ่มเติม โปรดดู การแสดงการระบุแหล่งที่มา

การใช้งานและการเรียกเก็บเงิน

ระบบจะเรียกเก็บค่าบริการ SKU จากรูปภาพสถานที่สําหรับการโทรหา fetchPhoto() โปรดดูรายละเอียดที่หน้าการใช้งานและการเรียกเก็บเงิน