Android के लिए, Places SDK टूल का इस्तेमाल करके, किसी जगह की फ़ोटो का अनुरोध किया जा सकता है आपके ऐप्लिकेशन में दिखाई देगा. फ़ोटो सेवा से वापस ली गई फ़ोटो जिसमें कारोबार के मालिक और उपयोगकर्ताओं के योगदान वाली फ़ोटो शामिल हैं.
Android के लिए Places SDK टूल की वैल्यू के तौर पर, ज़्यादा से ज़्यादा वैल्यू के साथ बिट मैप इमेज दिखती है 1600 x 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()
पर किए जाने वाले कॉल के लिए, Locations फ़ोटो SKU का शुल्क लिया जाता है.
ज़्यादा जानकारी के लिए, इस्तेमाल और बिलिंग पेज देखें.