New to Telerik UI for WinUI? Start a free 30-day trial
Empty provider
Updated on Mar 26, 2026
The Empty Provider is a provider which doesn't connect to any real imagery services (Virtual Earth, Google etc). It provides definitions and methods which can be used to calculate positions of the framework elements, map shapes and pin points. By using this provider you can create map-relative applications which do not require visibility of the real map data (landscapes or roads), but which require visible elements to be positioned according to the geographical coordinates.
Here is an example of creating an EmptyProivder and setting it to the RadMap:
Example 1
XAML
<dataVisualization:RadMap x:Name="radMap">
<dataVisualization:RadMap.Providers>
<telerikMap:EmptyProvider/>
</dataVisualization:RadMap.Providers>
</dataVisualization:RadMap>
Example 2
C#
EmptyProvider provider = new EmptyProvider();
this.radMap.Provider = provider;