يمكنك استخدام حزمة تطوير برامج الأماكن لأجهزة Android لطلب صورة مكان لعرضه في تطبيقك. تأتي الصور التي تعرضها خدمة الصور من مجموعة متنوعة من المصادر، بما في ذلك مالكو الأنشطة التجارية والصور التي يساهم بها المستخدمون.
تعرض حزمة تطوير برامج الأماكن لأجهزة Android صورة نقطية بحد أقصى بحجم 1600 × 1600 بكسل.
عملية استرجاع الصور
لاسترداد صورة لمكان ما:
- استخدِم تفاصيل المكان لجلب كائن
Place
(استخدِم أيًا مما يلي:fetchPlace()
أوfindCurrentPlace()
). تأكد من تضمين الحقلPlace.Field PHOTO_METADATAS
في قائمة الحقول تضمين في كائن الاستجابةPlace
. - في جلسة المعمل،
OnSuccessListener
لـFetchPlaceResponse
أوFindCurrentPlaceResponse
، استخدمPlace.getPhotoMetadas()
للحصول على كائن البيانات الوصفية للصورة من النوعPhotoMetadata
من كائن الاستجابةPlace
. - أنشئ كائن
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
AuthorAttributions
تم الوصول إلى عنصر من خلالPhotoMetadata.getAuthorAttributions()
إذا كان عنصر PhotoMetadata
المعروض يتضمّن أيًّا من نوعَي تحديد المصدر، عليك
تضمين الإسناد في تطبيقك أينما تعرض الصورة. لمزيد من المعلومات
راجع عرض عمليات تحديد المصدر.
الاستخدام والفوترة
يتم تحصيل رسوم رمز التخزين التعريفي لصورة الأماكن مقابل المكالمات إلى fetchPhoto()
.
راجِع صفحة الاستخدام والفوترة للحصول على التفاصيل.