Skip to content

ClemensFischer/XAML-Map-Control

Repository files navigation

XAML Map Control

A set of controls for WPF, UWP, WinUI and Avalonia UI for rendering digital maps from different providers and various types of map overlays.

Map providers can easily be added by specifying a template string for their map tile URLs. Map overlay layers allow to draw and interact with graphical objects and pushpins on the map. The Map Control API is similar to the Microsoft Bing Maps Control for WPF, except that no API key is required.

The project includes sample applications for both platforms, which demonstrate the features of XAML Map Control.

Map Control supports multiple map projections. However, the MapTileLayer class only works with WebMercatorProjection. For other projections, an appropriate WmtsTileLayer or WmsImageLayer could be used.


Main classes are

  • MapBase: The core map control. Provides properties like Center, ZoomLevel and Heading, which define the currently displayed map viewport.

  • Map: MapBase with basic mouse and touch input handling for zoom, pan, and rotation.

  • MapTileLayer: Provides tiled map content (e.g. from OpenStreetMap) by means of a TileSource.

  • MapImageLayer, WmsImageLayer: Provides single image map content, e.g. from a Web Map Service (WMS).

  • WmtsTileLayer: Provides tiled map content from a Web Map Tile Service (WMTS).

  • MapItemsControl: Displays a collection of MapItem objects (with a geographic Location).


The TileImageLoader class uses IDistributedCache for optional caching of map tile bitmaps. By default, the cache is a MemoryDistributedCache instance with all default options.

Map Control provides three minimal IDistributedCache implementations for persistent caching:

  • ImageFileCache, an implementation that stores each cached map tile as a single image file, in the original file format delivered by the map provider (typically PNG or JPG). ImageFileCache is part of the MapControl library.
  • FileDbCache, based on EzTools FileDb, a simple file based No-SQL database, in a separate library FileDbCache.
  • SQLiteCache, based on System.Data.SQLite, in a separate library SQLiteCache.

You can of course also use a full-featured cache like RedisCache.

To try the sample application with persistent caching, add an appropriate package reference to its Visual Studio project and uncomment the respective TileImageLoader.Cache assignment in MainWindow.xaml.cs.

Please note that some map providers may not allow persistent caching of their map data.


XAML Map Control is available on NuGet, with Package Id XAML.MapControl.


The project is not open for contributions. Pull requests will not be accepted.

About

XAML Map Control Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages