Details (API Reference)
Class Details
Contains details of a specific place, such as contact information, opening hours and assigned categories.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe list of categories assigned to this place.The list of contact information of the place.The list of editorials associated with the place.EV charging pool details.The list of food types assigned to this place.Fuel station details.The list of images associated with the place.The list of opening hours information of the place.Details about the payment options at the POI.The list of ratings associated with the place.The list of supplier references to this place.Additional information that is available only for places that contain truck amenities. -
Constructor Summary
ConstructorsConstructorDescriptionDetails(List<Contact> contacts, List<OpeningHours> openingHours, List<PlaceCategory> categories, List<WebImage> images, List<WebEditorial> editorials, List<WebRating> ratings, List<SupplierReference> references) Creates a new instance.Details(List<Contact> contacts, List<OpeningHours> openingHours, List<PlaceCategory> categories, List<WebImage> images, List<WebEditorial> editorials, List<WebRating> ratings, List<SupplierReference> references, EVChargingPool evChargingPool) Creates a new instance.Details(List<Contact> contacts, List<OpeningHours> openingHours, List<PlaceCategory> categories, List<WebImage> images, List<WebEditorial> editorials, List<WebRating> ratings, List<SupplierReference> references, EVChargingPool evChargingPool, TruckAmenities truckAmenities) Creates a new instance.Details(List<Contact> contacts, List<OpeningHours> openingHours, List<PlaceCategory> categories, List<WebImage> images, List<WebEditorial> editorials, List<WebRating> ratings, List<SupplierReference> references, EVChargingPool evChargingPool, TruckAmenities truckAmenities, FuelStation fuelStation) Creates a new instance.Details(List<Contact> contacts, List<OpeningHours> openingHours, List<PlaceCategory> categories, List<WebImage> images, List<WebEditorial> editorials, List<WebRating> ratings, List<SupplierReference> references, EVChargingPool evChargingPool, TruckAmenities truckAmenities, FuelStation fuelStation, List<PlaceFoodType> foodTypes) Creates a new instance.Details(List<Contact> contacts, List<OpeningHours> openingHours, List<PlaceCategory> categories, List<WebImage> images, List<WebEditorial> editorials, List<WebRating> ratings, List<SupplierReference> references, EVChargingPool evChargingPool, TruckAmenities truckAmenities, FuelStation fuelStation, List<PlaceFoodType> foodTypes, POIPaymentDetails payment) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionbooleanGets the list of primary categories assigned to this place.inthashCode()
-
Field Details
-
contacts
The list of contact information of the place.
Note: Not available as part of
Suggestionresults. -
openingHours
The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults. -
categories
The list of categories assigned to this place.
-
images
The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults. -
editorials
The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults. -
ratings
The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults. -
references
The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
-
evChargingPool
EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. It is fully supported for offline search, provided that
LayerConfiguration.Feature.EVis enabled inSDKOptions.layerConfiguration.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "browse.show" value: "ev" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show" and "browse.show". To enable fuel station details or truck amenities, the custom option value can be combined as "ev,truck", "ev,truck,fuel" etc. -
truckAmenities
Additional information that is available only for places that contain truck amenities. It is fully supported for offline search, provided that
LayerConfiguration.Feature.TRUCK_SERVICE_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "truck" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
fuelStation
Fuel station details. It is available only if a place is a fuel station and contain fuel data. It is fully supported for offline search, provided that
LayerConfiguration.Feature.FUEL_STATION_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "fuel" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
foodTypes
The list of food types assigned to this place. Not supported in
OfflineSearchEngine(only available for the Navigate license). -
payment
Details about the payment options at the POI. Set to
nullif the place is not a POI or if payment details are not available. Not supported inOfflineSearchEngine(only available for the Navigate license).Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
-
Constructor Details
-
Details
public Details(@NonNull List<Contact> contacts, @NonNull List<OpeningHours> openingHours, @NonNull List<PlaceCategory> categories, @NonNull List<WebImage> images, @NonNull List<WebEditorial> editorials, @NonNull List<WebRating> ratings, @NonNull List<SupplierReference> references) Creates a new instance.
- Parameters:
contacts-The list of contact information of the place.
Note: Not available as part of
Suggestionresults.openingHours-The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults.categories-The list of categories assigned to this place.
images-The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.editorials-The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.ratings-The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.references-The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
-
Details
public Details(@NonNull List<Contact> contacts, @NonNull List<OpeningHours> openingHours, @NonNull List<PlaceCategory> categories, @NonNull List<WebImage> images, @NonNull List<WebEditorial> editorials, @NonNull List<WebRating> ratings, @NonNull List<SupplierReference> references, @Nullable EVChargingPool evChargingPool) Creates a new instance.
- Parameters:
contacts-The list of contact information of the place.
Note: Not available as part of
Suggestionresults.openingHours-The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults.categories-The list of categories assigned to this place.
images-The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.editorials-The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.ratings-The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.references-The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
evChargingPool-EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. It is fully supported for offline search, provided that
LayerConfiguration.Feature.EVis enabled inSDKOptions.layerConfiguration.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "browse.show" value: "ev" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show" and "browse.show". To enable fuel station details or truck amenities, the custom option value can be combined as "ev,truck", "ev,truck,fuel" etc.
-
Details
public Details(@NonNull List<Contact> contacts, @NonNull List<OpeningHours> openingHours, @NonNull List<PlaceCategory> categories, @NonNull List<WebImage> images, @NonNull List<WebEditorial> editorials, @NonNull List<WebRating> ratings, @NonNull List<SupplierReference> references, @Nullable EVChargingPool evChargingPool, @Nullable TruckAmenities truckAmenities) Creates a new instance.
- Parameters:
contacts-The list of contact information of the place.
Note: Not available as part of
Suggestionresults.openingHours-The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults.categories-The list of categories assigned to this place.
images-The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.editorials-The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.ratings-The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.references-The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
evChargingPool-EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. It is fully supported for offline search, provided that
LayerConfiguration.Feature.EVis enabled inSDKOptions.layerConfiguration.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "browse.show" value: "ev" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show" and "browse.show". To enable fuel station details or truck amenities, the custom option value can be combined as "ev,truck", "ev,truck,fuel" etc.truckAmenities-Additional information that is available only for places that contain truck amenities. It is fully supported for offline search, provided that
LayerConfiguration.Feature.TRUCK_SERVICE_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "truck" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
Details
public Details(@NonNull List<Contact> contacts, @NonNull List<OpeningHours> openingHours, @NonNull List<PlaceCategory> categories, @NonNull List<WebImage> images, @NonNull List<WebEditorial> editorials, @NonNull List<WebRating> ratings, @NonNull List<SupplierReference> references, @Nullable EVChargingPool evChargingPool, @Nullable TruckAmenities truckAmenities, @Nullable FuelStation fuelStation) Creates a new instance.
- Parameters:
contacts-The list of contact information of the place.
Note: Not available as part of
Suggestionresults.openingHours-The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults.categories-The list of categories assigned to this place.
images-The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.editorials-The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.ratings-The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.references-The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
evChargingPool-EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. It is fully supported for offline search, provided that
LayerConfiguration.Feature.EVis enabled inSDKOptions.layerConfiguration.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "browse.show" value: "ev" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show" and "browse.show". To enable fuel station details or truck amenities, the custom option value can be combined as "ev,truck", "ev,truck,fuel" etc.truckAmenities-Additional information that is available only for places that contain truck amenities. It is fully supported for offline search, provided that
LayerConfiguration.Feature.TRUCK_SERVICE_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "truck" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
fuelStation-Fuel station details. It is available only if a place is a fuel station and contain fuel data. It is fully supported for offline search, provided that
LayerConfiguration.Feature.FUEL_STATION_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "fuel" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
Details
public Details(@NonNull List<Contact> contacts, @NonNull List<OpeningHours> openingHours, @NonNull List<PlaceCategory> categories, @NonNull List<WebImage> images, @NonNull List<WebEditorial> editorials, @NonNull List<WebRating> ratings, @NonNull List<SupplierReference> references, @Nullable EVChargingPool evChargingPool, @Nullable TruckAmenities truckAmenities, @Nullable FuelStation fuelStation, @NonNull List<PlaceFoodType> foodTypes) Creates a new instance.
- Parameters:
contacts-The list of contact information of the place.
Note: Not available as part of
Suggestionresults.openingHours-The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults.categories-The list of categories assigned to this place.
images-The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.editorials-The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.ratings-The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.references-The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
evChargingPool-EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. It is fully supported for offline search, provided that
LayerConfiguration.Feature.EVis enabled inSDKOptions.layerConfiguration.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "browse.show" value: "ev" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show" and "browse.show". To enable fuel station details or truck amenities, the custom option value can be combined as "ev,truck", "ev,truck,fuel" etc.truckAmenities-Additional information that is available only for places that contain truck amenities. It is fully supported for offline search, provided that
LayerConfiguration.Feature.TRUCK_SERVICE_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "truck" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
fuelStation-Fuel station details. It is available only if a place is a fuel station and contain fuel data. It is fully supported for offline search, provided that
LayerConfiguration.Feature.FUEL_STATION_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "fuel" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
foodTypes-The list of food types assigned to this place. Not supported in
OfflineSearchEngine(only available for the Navigate license).
-
Details
public Details(@NonNull List<Contact> contacts, @NonNull List<OpeningHours> openingHours, @NonNull List<PlaceCategory> categories, @NonNull List<WebImage> images, @NonNull List<WebEditorial> editorials, @NonNull List<WebRating> ratings, @NonNull List<SupplierReference> references, @Nullable EVChargingPool evChargingPool, @Nullable TruckAmenities truckAmenities, @Nullable FuelStation fuelStation, @NonNull List<PlaceFoodType> foodTypes, @Nullable POIPaymentDetails payment) Creates a new instance.
- Parameters:
contacts-The list of contact information of the place.
Note: Not available as part of
Suggestionresults.openingHours-The list of opening hours information of the place.
Note: Not available as part of
Suggestionresults.categories-The list of categories assigned to this place.
images-The list of images associated with the place. The images are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.editorials-The list of editorials associated with the place. The editorials are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.ratings-The list of ratings associated with the place. The ratings are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
Note: Not available as part of
Suggestionresults.references-The list of supplier references to this place. The references are provided by external suppliers and are only available to users with valid contracts with said suppliers. If the user has no such contracts, the list is empty.
evChargingPool-EV charging pool details. It is available only for a place that is a charging pool for electric vehicles. It is fully supported for offline search, provided that
LayerConfiguration.Feature.EVis enabled inSDKOptions.layerConfiguration.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "browse.show" value: "ev" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show" and "browse.show". To enable fuel station details or truck amenities, the custom option value can be combined as "ev,truck", "ev,truck,fuel" etc.truckAmenities-Additional information that is available only for places that contain truck amenities. It is fully supported for offline search, provided that
LayerConfiguration.Feature.TRUCK_SERVICE_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "truck" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
fuelStation-Fuel station details. It is available only if a place is a fuel station and contain fuel data. It is fully supported for offline search, provided that
LayerConfiguration.Feature.FUEL_STATION_ATTRIBUTESis enabled inSDKOptions.layerConfiguration.Note: Currently, for online search, this is a closed-alpha feature, so it is available only for selected customers. The field is always null for everyone that is not part of the closed-alpha group. Participants of the closed-alpha group can get access from HERE to use this feature. If the credentials are not enabled, a
SearchError.FORBIDDENwill be propagated.For online search, this feature is only available if it is explicitly enabled. To do that, call
SearchEngine.set_custom_option()with arguments: name: "lookup.show" or "discover.show" or "autosuggest.show" or "browse.show" value: "fuel" To enable this feature for all queries, callSearchEngine.set_custom_option()for all: "lookup.show", "discover.show", "autosuggest.show" and "browse.show". To enable bothtruck_amenitiesandfuel_stationfeatures, set the value to "fuel,truck".Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
foodTypes-The list of food types assigned to this place. Not supported in
OfflineSearchEngine(only available for the Navigate license).payment-Details about the payment options at the POI. Set to
nullif the place is not a POI or if payment details are not available. Not supported inOfflineSearchEngine(only available for the Navigate license).Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
-
Method Details