Return the debug info about this component.
Disable the component. Normally this means that the component will not execute handlers for the framework events (query events, for example). Components are enabled by default on creation.
Enable the component. Normally this means that the component will execute handlers for the framework events (query events, for example). Components are enabled by default on creation.
Return the bindings, or environment, for the current component.
Returns a promise of the last position resolved using the registered position providers.
A promise of the last resolved position value.
Overrides the current position with the provided values.
Note:
Calling this method does not automatically trigger a query.
The latitude to set.
The longitude to set.
Get the bound component to the given HTMLElement. Throws an assert if the HTMLElement has no component bound, unless using the noThrow argument.
If there is multiple component bound to the current HTMLElement, you must specify the component class.
HTMLElement for which to get the bound component.
Optional component class. If the HTMLElement has multiple components bound, you must specify which one you are targeting.
Boolean option to tell the method to not throw on error.
Allows the component to bind events and execute them only when it is enabled.
Contains the state of options for different components. Mainly used by ResultLink.
Contains the state of different components (enabled vs disabled). Allows to get/set values. Triggers component state event when modified. Each component can listen to those events.
A disabled component will not participate in the query, or listen to ComponentEvents.
Allows component to log in the dev console.
Contains the singleton that allows to trigger queries.
Contains the state of the query. Allows to get/set values. Trigger query state event when modified. Each component can listen to those events.
A reference to the root HTMLElement (the SearchInterface).
A reference to the root of every component, the SearchInterface.
The static ID that each component needs in order to be identified.
For example, SearchButton -> static ID: SearchButton -> className: CoveoSearchButton
A reference to the Analytics.client.
Whether to cancel all the queries until the DistanceResources
component successfully resolves a position.
Default value is true
data-cancel-query-until-position-resolved='true' data-cancel-query-until-position-resolved='false'
The CSS class for components that need to be re-enabled when the DistanceResources
component successfully
provides a distance.
Default value is coveo-distance-disabled
.
data-disabled-distance-css-class='foo'
Specifies the name of the field in which to store the distance value.
Specifying a value for this option is required for the DistanceResources
component to work.
data-distance-field='@foo'
The API key to use to request the Google API geolocation service.
If you do not specify a value for this option, the DistanceResources
component does not try to request the
service.
data-google-api-key='foo'
Specifies the name of the field that contains the latitude value.
Note:
The field you specify for this option must be an existing numerical field in your index (see Adding and Managing Fields. Otherwise, your query responses will contain a
QueryExceptionInvalidQueryFunctionField
or QueryExceptionInvalidQueryFunctionFieldType` exception, and the DistanceResources component will be unable to evaluate distances.
Specifying a value for this option is required for the DistanceResources
component to work.
data-latitude-field='@foo'
The latitude to use if no other position was provided.
Note:
You must also specify a
longitudeValue
if you specify alatitudeValue
.
data-latitude-value='10'
Specifies the name of the field that contains the longitude value.
Note:
The field you specify for this option must be an existing numerical field in your index (see Adding and Managing Fields. Otherwise, your query responses will contain a
QueryExceptionInvalidQueryFunctionField
or QueryExceptionInvalidQueryFunctionFieldType` exception, and the DistanceResources component will be unable to evaluate distances.
Specifying a value for this option is required for the DistanceResources
component to work.
data-longitude-field='@foo'
The longitude to use if no other position was provided.
Note:
You must also specify a
latitudeValue
if you specify alongitudeValue
.
data-longitude-value='10'
Whether to execute a new query when the DistanceResources
component successfully provides a new position.
Default value is false
.
data-trigger-new-query-on-new-position='true' data-trigger-new-query-on-new-position='false'
The conversion factor to apply to the base distance unit (meter).
Note:
- If you want to convert distances to kilometers, you should set the
unitConversionFactor
to1000
.- If you want to convert distance to miles, you should set the
unitConversionFactor
to1610
(one mile is approximately equal to 1610 meters).
Default value is 1000
.
data-unit-conversion-factor='10'
Whether to request the geolocation service of the web browser.
If not defined, will not try to request the service.
Note:
Recent web browsers typically require a site to be in HTTPS to enable their geolocation service.
If you do not specify a value for this option, the DistanceResources
component does not try to request the
service.
data-use-navigator='true' data-use-navigator='false'
Creates a new DistanceResources
component.
The HTMLElement on which to instantiate the component.
The options for the DistanceResources
component.
The bindings that the component requires to function normally. If not set, these will be automatically resolved (with a slower execution time).
The
DistanceResources
component defines a field that computes the distance according to the current position of the end user.Components relying on the current distance should be disabled until this component successfully provides a distance.
See also
DistanceEvents
.November 2017 Release (v2.3477.9)