Class BaseSearchGeometryOptions<T extends BaseSearchGeometryOptions<T>>

java.lang.Object
com.azure.maps.search.models.BaseSearchGeometryOptions<T>
Direct Known Subclasses:
SearchAlongRouteOptions, SearchInsideGeometryOptions

public abstract class BaseSearchGeometryOptions<T extends BaseSearchGeometryOptions<T>> extends Object
Class holding optional parameters for Geometry Search.
  • Constructor Details

    • BaseSearchGeometryOptions

      public BaseSearchGeometryOptions()
  • Method Details

    • getLocalizedMapView

      public LocalizedMapView getLocalizedMapView()
      Returns the localized map view.
      Returns:
      the localized map view.
    • getCategoryFilter

      public List<Integer> getCategoryFilter()
      Returns the category filter.
      Returns:
      the category filter.
    • getTop

      public Integer getTop()
      Returns the top results.
      Returns:
      the top results.
    • getOperatingHours

      public OperatingHoursRange getOperatingHours()
      Returns the operating hours.
      Returns:
      the operating hours.
    • getQuery

      public String getQuery()
      Returns the query string.
      Returns:
      the query string.
    • setCategoryFilter

      public T setCategoryFilter(List<Integer> categoryFilter)
      Sets the category filter.
      Parameters:
      categoryFilter - the category filter.
      Returns:
      a reference to this T class.
    • setTop

      public T setTop(Integer top)
      Sets the top value.
      Parameters:
      top - the top value.
      Returns:
      a reference to this T class.
    • setLocalizedMapView

      public T setLocalizedMapView(LocalizedMapView localizedMapView)
      Sets the localized map view.
      Parameters:
      localizedMapView - the localized map view.
      Returns:
      a reference to this T class.
    • setOperatingHours

      public T setOperatingHours(OperatingHoursRange operatingHours)
      Sets the operating hours.
      Parameters:
      operatingHours - the operating hours.
      Returns:
      a reference to this T class.
    • setQuery

      public T setQuery(String query)
      Sets the query string.
      Parameters:
      query - the query string.
      Returns:
      a reference to this T class.