About Progress

  • Company
    • Company Overview
    • Leadership
    • Corporate Social Responsibility
    • Investor Relations
    • Press Releases
    • Press Coverage
    • Recognitions
    • Progress Labs
    • Events
    • Customers
    • Careers
    • Offices
  • Technology
    • Cloud Native App Dev Platform
    • Cognitive Services
    • Web Content Management
    • UI/UX Tools
    • Secure Data Connectivity and Integration
    • Secure Managed File Transfer
    • OpenEdge
    • Network Monitoring
  • Services
    • Consulting
    • Education
    • Modernization
    • Outsourcing
  • Product Bundles

    DevCraft

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

    • Conversational UI
    • Online Training
    • Document Processing Library
    Web
    Kendo UI UI for jQuery UI for Angular UI for React UI for Vue UI for ASP.NET AJAX UI for ASP.NET MVC UI for ASP.NET Core UI for Blazor UI for Silverlight UI for PHP UI for JSP
    Mobile
    UI for Xamarin NativeScript OSS framework
    Desktop
    UI for WPF UI for UWP UI for WinForms
    Reporting & Mocking
    Telerik Reporting Telerik Report Server Telerik JustMock
    Automated Testing
    Test Studio Test Studio Dev Edition
    Debugging
    FiddlerCore
    CMS
    Sitefinity
    UX Design
    Unite UX
    Document Management
    Telerik Document Processing
    Innovations Lab
    VR DataViz
    Free Tools
    Fiddler JustAssembly JustDecompile VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Docs & Support
  • Pricing
  • Search
  • Shopping cart
    • Account Overview
    • Edit Profile
    • Payment Profiles
    • Renewals & Upgrades
    • Support Tickets
    • Log out
  • Login
  • Contact Us
  • Try now

Class OpenStreetMapProvider

Inheritance
System.Object
OpenStreetMapProvider
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 OpenStreetMapProvider : IMapProvider, ICloneable, IMapTileProvider

Constructors

OpenStreetMapProvider()

Initializes a new instance of the OpenStreetMapProvider class.

Declaration
public OpenStreetMapProvider()

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

Properties

CacheProvider

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

Implements
IMapTileProvider.CacheProvider

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

ImageUrl

Gets or sets the image URL.

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

The image URL.

Initialized

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

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

true if initialized; 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

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

Methods

Clone()

Declaration
public virtual object Clone()
Returns
System.Object

Implements
System.ICloneable.Clone()

GetCacheKey(Int32, Int32, Int32)

Gets the key for cache storing.

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 IEnumerable<MapVisualElement> GetContent(IMapViewport viewport)
Parameters
IMapViewport viewport

Returns
System.Collections.Generic.IEnumerable<MapVisualElement>

Implements
IMapProvider.GetContent(IMapViewport)

GetSupportedViews()

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

Implements
IMapProvider.GetSupportedViews()

GetTile(Int32, Int32, Int32)

Gets the tile url.

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 for the provided tile info.

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

The tile information.

Initialize()

Declaration
public void Initialize()
Implements
IMapProvider.Initialize()

OnFileLoadAsyncComplete(String, Byte[])

Called when an asynchronous file loading 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

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.

SetView(MapViewInfo)

Declaration
public 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

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

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)

Was this article helpful?

 / 
Tell us how we can improve this article
Skip
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.