Interface IBingRestSearchLocationProvider
Interface for searching a Location (or Address) by a given Address / Location / query via the Bing REST Location API.
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public interface IBingRestSearchLocationProvider
Methods
SearchLocationAsync(BingRestSearchLocationRequest)
Performs async search request.
Declaration
void SearchLocationAsync(BingRestSearchLocationRequest request)
Parameters
BingRestSearchLocationRequest
request
Search request. |
Events
SearchLocationCompleted
Occurs when a search request is completed and the result is ready.
Declaration
event EventHandler<BingRestSearchLocationCompletedEventArgs> SearchLocationCompleted
Event Type
System.EventHandler<BingRestSearchLocationCompletedEventArgs>
|
SearchLocationError
Occurs when the request results in an error.
Declaration
event EventHandler<BingRestSearchLocationErrorEventArgs> SearchLocationError
Event Type
System.EventHandler<BingRestSearchLocationErrorEventArgs>
|