skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class BingRestMapProvider

Inheritance
System.Object
BingRestMapProvider
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadMap.dll

Syntax

public class BingRestMapProvider : IMapProvider, ICloneable, IMapTileProvider, IMapRouteProvider, IMapTruckRouteProvider, IMapSearchProvider, IMapBaseSearchProvider, IMapElevationProvider

Constructors

BingRestMapProvider()

Initializes a new instance of the BingRestMapProvider class.

Declaration
public BingRestMapProvider()

Fields

cacheLoadReference

Declaration
protected Dictionary<string, List<TileInfo>> cacheLoadReference
Field Value
System.Collections.Generic.Dictionary<System.String, System.Collections.Generic.List<TileInfo>>

lockObj

Declaration
protected object lockObj
Field Value
System.Object

tileMatrix

Declaration
protected Dictionary<string, TileInfo> tileMatrix
Field Value
System.Collections.Generic.Dictionary<System.String, TileInfo>

Properties

BingKey

Gets or sets the Bing key.

Declaration
public string BingKey { get; set; }
Property Value
System.String

The bing key.

CacheProvider

Declaration
public IMapCacheProvider CacheProvider { get; set; }
Property Value
IMapCacheProvider

Implements
IMapTileProvider.CacheProvider

Culture

Gets or sets the culture.

Declaration
public CultureInfo Culture { get; set; }
Property Value
System.Globalization.CultureInfo

The culture.

EnableCaching

Declaration
public bool EnableCaching { get; set; }
Property Value
System.Boolean

Implements
IMapTileProvider.EnableCaching

Id

Declaration
public string Id { get; }
Property Value
System.String

Implements
IMapProvider.Id

ImagerySet

Gets or sets the imagery set.

Declaration
public ImagerySet ImagerySet { get; set; }
Property Value
ImagerySet

The imagery set.

Initialized

Gets or sets a value indicating whether this BingRestMapProvider is initialized.

Declaration
public bool Initialized { get; protected set; }
Property Value
System.Boolean

true if initialized; otherwise, false.

Initializing

Gets or sets a value indicating whether this BingRestMapProvider is currently in the initialization process.

Declaration
public bool Initializing { get; protected set; }
Property Value
System.Boolean

true if initializing; otherwise, false.

MaxZoomLevel

Declaration
public int MaxZoomLevel { get; set; }
Property Value
System.Int32

Implements
IMapProvider.MaxZoomLevel

MinZoomLevel

Declaration
public int MinZoomLevel { get; set; }
Property Value
System.Int32

Implements
IMapProvider.MinZoomLevel

SessionId

Gets the session identifier.

Declaration
public string SessionId { get; }
Property Value
System.String

The session identifier.

TileDownloader

Declaration
public IMapTileDownloader TileDownloader { get; set; }
Property Value
IMapTileDownloader

Implements
IMapTileProvider.TileDownloader

TileSize

Declaration
public Size TileSize { get; }
Property Value
System.Drawing.Size

Implements
IMapTileProvider.TileSize

UseSession

Gets or sets a value indicating whether to use session key.

Declaration
public bool UseSession { get; set; }
Property Value
System.Boolean

true if session should be used; otherwise, false.

Methods

BuildElevationRequestUri(ElevationRequest)

Declaration
protected virtual Uri BuildElevationRequestUri(ElevationRequest request)
Parameters
ElevationRequest request

Returns
System.Uri

BuildRoutingRequestUri(RouteRequest)

Declaration
protected virtual Uri BuildRoutingRequestUri(RouteRequest request)
Parameters
RouteRequest request

Returns
System.Uri

BuildSearchRequestUri(SearchRequest)

Declaration
protected virtual Uri BuildSearchRequestUri(SearchRequest request)
Parameters
SearchRequest request

Returns
System.Uri

BuildTruckRouteRequestBody(TruckRouteRequest)

Declaration
protected virtual string BuildTruckRouteRequestBody(TruckRouteRequest request)
Parameters
TruckRouteRequest request

Returns
System.String

BuildTruckRouteRequestUri(TruckRouteRequest)

Declaration
protected virtual Uri BuildTruckRouteRequestUri(TruckRouteRequest request)
Parameters
TruckRouteRequest request

Returns
System.Uri

CalculateElevationAsync(ElevationRequest)

Declaration
public void CalculateElevationAsync(ElevationRequest request)
Parameters
ElevationRequest request

Implements
IMapElevationProvider.CalculateElevationAsync(ElevationRequest)

CalculateRouteAsync(RouteRequest)

Declaration
public void CalculateRouteAsync(RouteRequest request)
Parameters
RouteRequest request

Implements
IMapRouteProvider.CalculateRouteAsync(RouteRequest)

CalculateTruckRouteAsync(TruckRouteRequest)

Declaration
public void CalculateTruckRouteAsync(TruckRouteRequest request)
Parameters
TruckRouteRequest request

Implements
IMapTruckRouteProvider.CalculateTruckRouteAsync(TruckRouteRequest)

Clone()

Declaration
public object Clone()
Returns
System.Object

Implements
System.ICloneable.Clone()

GetCacheKey(Int32, Int32, Int32)

Gets the key for cache storage.

Declaration
protected virtual string GetCacheKey(int tileX, int tileY, int zoomLevel)
Parameters
System.Int32 tileX

The tile x.

System.Int32 tileY

The tile y.

System.Int32 zoomLevel

The zoom level.

Returns
System.String

System.String.

GetContent(IMapViewport)

Declaration
public virtual IEnumerable<MapVisualElement> GetContent(IMapViewport viewport)
Parameters
IMapViewport viewport

Returns
System.Collections.Generic.IEnumerable<MapVisualElement>

Implements
IMapProvider.GetContent(IMapViewport)

GetPointsString(List<PointG>)

Declaration
protected virtual string GetPointsString(List<PointG> points)
Parameters
System.Collections.Generic.List<PointG> points

Returns
System.String

GetSupportedViews()

Declaration
public virtual List<MapViewInfo> GetSupportedViews()
Returns
System.Collections.Generic.List<MapViewInfo>

Implements
IMapProvider.GetSupportedViews()

GetTile(Int32, Int32, Int32)

Gets the tile uri.

Declaration
public Uri GetTile(int tileMatrixX, int tileMatrixY, int zoomLevel)
Parameters
System.Int32 tileMatrixX

The tile matrix x.

System.Int32 tileMatrixY

The tile matrix y.

System.Int32 zoomLevel

The zoom level.

Returns
System.Uri

Uri.

GetTileImage(Int32, Int32, Int32)

Declaration
public Image GetTileImage(int tileMatrixX, int tileMatrixY, int zoomLevel)
Parameters
System.Int32 tileMatrixX

System.Int32 tileMatrixY

System.Int32 zoomLevel

Returns
System.Drawing.Image

Implements
IMapTileProvider.GetTileImage(Int32, Int32, Int32)

GetTileInfoImage(TileInfo)

Gets the image of the tile info.

Declaration
protected virtual void GetTileInfoImage(TileInfo tileInfo)
Parameters
TileInfo tileInfo

The tile information.

Initialize()

Initializes this provider.

Declaration
public virtual void Initialize()
Implements
IMapProvider.Initialize()
Exceptions
System.Exception

InitializeImageryMetadataCompleted(Object, DownloadStringCompletedEventArgs)

Called when the imagery metadata initialization is complete.

Declaration
protected virtual void InitializeImageryMetadataCompleted(object sender, DownloadStringCompletedEventArgs e)
Parameters
System.Object sender

The sender.

System.Net.DownloadStringCompletedEventArgs e

The System.Net.DownloadStringCompletedEventArgs instance containing the event data.

InitializeImageryService()

Initializes the imagery service.

Declaration
protected virtual void InitializeImageryService()
Exceptions
System.Exception

InitializeSessionCompleted(Object, DownloadStringCompletedEventArgs)

Initialization of the session is completed.

Declaration
protected virtual void InitializeSessionCompleted(object sender, DownloadStringCompletedEventArgs e)
Parameters
System.Object sender

The sender.

System.Net.DownloadStringCompletedEventArgs e

The System.Net.DownloadStringCompletedEventArgs instance containing the event data.

OnCalculateElevationCompleted(Object, DownloadStringCompletedEventArgs)

Declaration
protected virtual void OnCalculateElevationCompleted(object sender, DownloadStringCompletedEventArgs e)
Parameters
System.Object sender

System.Net.DownloadStringCompletedEventArgs e

OnCalculateElevationCompleted(ElevationCompletedEventArgs)

Declaration
protected virtual void OnCalculateElevationCompleted(ElevationCompletedEventArgs e)
Parameters
ElevationCompletedEventArgs e

OnCalculateElevationError(CalculateElevationErrorEventArgs)

Declaration
protected virtual void OnCalculateElevationError(CalculateElevationErrorEventArgs e)
Parameters
CalculateElevationErrorEventArgs e

OnCalculateRouteCompleted(Object, DownloadStringCompletedEventArgs)

Declaration
protected virtual void OnCalculateRouteCompleted(object sender, DownloadStringCompletedEventArgs e)
Parameters
System.Object sender

System.Net.DownloadStringCompletedEventArgs e

OnCalculateRouteCompleted(RoutingCompletedEventArgs)

Declaration
protected virtual void OnCalculateRouteCompleted(RoutingCompletedEventArgs e)
Parameters
RoutingCompletedEventArgs e

OnCalculateRouteError(CalculateRouteErrorEventArgs)

Declaration
protected virtual void OnCalculateRouteError(CalculateRouteErrorEventArgs e)
Parameters
CalculateRouteErrorEventArgs e

OnCalculateTruckRouteCompleted(Object, UploadStringCompletedEventArgs)

Declaration
protected virtual void OnCalculateTruckRouteCompleted(object sender, UploadStringCompletedEventArgs e)
Parameters
System.Object sender

System.Net.UploadStringCompletedEventArgs e

OnCalculateTruckRouteCompleted(RoutingCompletedEventArgs)

Declaration
protected virtual void OnCalculateTruckRouteCompleted(RoutingCompletedEventArgs e)
Parameters
RoutingCompletedEventArgs e

OnCalculateTruckRouteError(CalculateRouteErrorEventArgs)

Declaration
protected virtual void OnCalculateTruckRouteError(CalculateRouteErrorEventArgs e)
Parameters
CalculateRouteErrorEventArgs e

OnFileLoadAsyncComplete(String, Byte[])

Called when an async file load is complete.

Declaration
protected virtual void OnFileLoadAsyncComplete(string fileName, byte[] content)
Parameters
System.String fileName

Name of the file.

System.Byte[] content

The content.

OnInitializationComplete(EventArgs)

Declaration
protected virtual void OnInitializationComplete(EventArgs e)
Parameters
System.EventArgs e

OnInitializationError(InitializationErrorEventArgs)

Declaration
protected virtual void OnInitializationError(InitializationErrorEventArgs e)
Parameters
InitializationErrorEventArgs e

OnProviderUpdated(EventArgs)

Declaration
protected virtual void OnProviderUpdated(EventArgs e)
Parameters
System.EventArgs e

OnSearchCompleted(SearchCompletedEventArgs)

Declaration
protected virtual void OnSearchCompleted(SearchCompletedEventArgs e)
Parameters
SearchCompletedEventArgs e

OnSearchError(SearchErrorEventArgs)

Declaration
protected virtual void OnSearchError(SearchErrorEventArgs e)
Parameters
SearchErrorEventArgs e

OnSearchRequestCompleted(Object, DownloadStringCompletedEventArgs)

Declaration
protected virtual void OnSearchRequestCompleted(object sender, DownloadStringCompletedEventArgs e)
Parameters
System.Object sender

System.Net.DownloadStringCompletedEventArgs e

OnTileDownloadComplete(Object, TileInfoEventArgs)

Called when a tile download is complete.

Declaration
protected virtual void OnTileDownloadComplete(object sender, TileInfoEventArgs e)
Parameters
System.Object sender

The sender.

TileInfoEventArgs e

The TileInfoEventArgs instance containing the event data.

SearchAsync(SearchRequest)

Declaration
public void SearchAsync(SearchRequest request)
Parameters
SearchRequest request

Implements
IMapSearchProvider.SearchAsync(SearchRequest)

SetView(MapViewInfo)

Declaration
public virtual void SetView(MapViewInfo view)
Parameters
MapViewInfo view

Implements
IMapProvider.SetView(MapViewInfo)

ViewportChanged(IMapViewport, ViewportChangeAction)

Declaration
public void ViewportChanged(IMapViewport viewport, ViewportChangeAction action)
Parameters
IMapViewport viewport

ViewportChangeAction action

Implements
IMapProvider.ViewportChanged(IMapViewport, ViewportChangeAction)

Events

CalculateElevationCompleted

Declaration
public event EventHandler<ElevationCompletedEventArgs> CalculateElevationCompleted
Event Type
System.EventHandler<ElevationCompletedEventArgs>

Implements
IMapElevationProvider.CalculateElevationCompleted

CalculateElevationError

Declaration
public event EventHandler<CalculateElevationErrorEventArgs> CalculateElevationError
Event Type
System.EventHandler<CalculateElevationErrorEventArgs>

Implements
IMapElevationProvider.CalculateElevationError

CalculateRouteCompleted

Declaration
public event EventHandler<RoutingCompletedEventArgs> CalculateRouteCompleted
Event Type
System.EventHandler<RoutingCompletedEventArgs>

Implements
IMapRouteProvider.CalculateRouteCompleted

CalculateRouteError

Declaration
public event EventHandler<CalculateRouteErrorEventArgs> CalculateRouteError
Event Type
System.EventHandler<CalculateRouteErrorEventArgs>

Implements
IMapRouteProvider.CalculateRouteError

CalculateTruckRouteCompleted

Declaration
public event EventHandler<RoutingCompletedEventArgs> CalculateTruckRouteCompleted
Event Type
System.EventHandler<RoutingCompletedEventArgs>

Implements
IMapTruckRouteProvider.CalculateTruckRouteCompleted

CalculateTruckRouteError

Declaration
public event EventHandler<CalculateRouteErrorEventArgs> CalculateTruckRouteError
Event Type
System.EventHandler<CalculateRouteErrorEventArgs>

Implements
IMapTruckRouteProvider.CalculateTruckRouteError

InitializationComplete

Declaration
public event EventHandler InitializationComplete
Event Type
System.EventHandler

Implements
IMapProvider.InitializationComplete

InitializationError

Declaration
public event InitializationErrorEventHandler InitializationError
Event Type
InitializationErrorEventHandler

Implements
IMapProvider.InitializationError

ProviderUpdated

Declaration
public event EventHandler ProviderUpdated
Event Type
System.EventHandler

Implements
IMapProvider.ProviderUpdated

SearchCompleted

Declaration
public event EventHandler<SearchCompletedEventArgs> SearchCompleted
Event Type
System.EventHandler<SearchCompletedEventArgs>

Implements
IMapSearchProvider.SearchCompleted

SearchError

Declaration
public event EventHandler<SearchErrorEventArgs> SearchError
Event Type
System.EventHandler<SearchErrorEventArgs>

Implements
IMapSearchProvider.SearchError

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.