java.lang.Object
com.esri.arcgisruntime.tasks.geocode.SuggestParameters
Holds parameters to be passed to suggest operations.
- Since:
- 100.0.0
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets a mutable list of categories used to filter the results of the suggest operation.Gets the country code used to filter the results of the suggest operation.int
Gets the maximum number of results to be returned by the suggest operation.Gets the preferred search location.Gets the search area used to filter the results of the suggest operation.void
setCountryCode
(String countryCode) Sets the country code used to filter the results of the suggest operation.void
setMaxResults
(int maxResults) Sets the maximum number of results to be returned by the suggest operation.void
setPreferredSearchLocation
(Point preferredSearchLocation) Sets the preferred search location.void
setSearchArea
(Geometry searchArea) Sets the search area used to filter the results of the suggest operation.
-
Constructor Details
-
SuggestParameters
public SuggestParameters()Constructs a SuggestParameters with default settings.- Since:
- 100.0.0
-
-
Method Details
-
getCategories
Gets a mutable list of categories used to filter the results of the suggest operation. Initially this is an empty list which means no category filtering is done. Add entries to this list for each category for which results are required. Categories represent address and place types, for example "city", "school", "Ski Resort".- Returns:
- the list of categories used to filter suggest results
- Since:
- 100.0.0
-
getCountryCode
Gets the country code used to filter the results of the suggest operation.- Returns:
- the country code, or an empty String if none has been set
- Since:
- 100.0.0
-
setCountryCode
Sets the country code used to filter the results of the suggest operation. By default no such filtering is done.- Parameters:
countryCode
- the country code- Since:
- 100.0.0
-
getMaxResults
public int getMaxResults()Gets the maximum number of results to be returned by the suggest operation.- Returns:
- the maximum number of results, in the range [1..15]
- Since:
- 100.0.0
-
setMaxResults
public void setMaxResults(int maxResults) Sets the maximum number of results to be returned by the suggest operation. The default value is 5.- Parameters:
maxResults
- the maximum number of results, in the range [1..15]- Since:
- 100.0.0
-
getPreferredSearchLocation
Gets the preferred search location.- Returns:
- the preferred search location point, or null if none has been set
- Since:
- 100.0.0
-
setPreferredSearchLocation
Sets the preferred search location. This defines an origin point location that is used to sort the SuggestResults based on their proximity to the location. The priority of results within a radius of 2000 meters (for online geocoding services) or 50000 meters (for offline locators) is boosted relative to those outside that radius. By default no preferred search location is set.- Parameters:
preferredSearchLocation
- the preferred search location point- Since:
- 100.0.0
-
getSearchArea
Gets the search area used to filter the results of the suggest operation. This is a bounding rectangle outside which results are not returned.- Returns:
- a Geometry specifying the search area, or null if none has been set
- Since:
- 100.0.0
-
setSearchArea
Sets the search area used to filter the results of the suggest operation. This is a bounding rectangle outside which results are not returned. By default no preferred search area is set.- Parameters:
searchArea
- an Envelope specifying the search area- Since:
- 100.0.0
-