[GIS] Using GIS / Map inside c# WPF

cmappingwmswpf

How could i create e mapping applications that displays a custom map from this URL:
(Capabilties with a mapview)
http://openwms.statkart.no/skwms1/wms.sjo_hovedkart2?request=GetCapabilities&Service=WMS

inside c# with WPF controls.

It would be nice if there was some full feature map libraries so i could add pinpoints to certain Long,lats e.e (Like Openlayers for Javascript)

Google / bing maps API cannot be used as you are not allowed to replace their maps.

Best Answer

Esri's Runtime for WPF supports WMS layers.

It is not free, but the ArcGIS Silverlight SDK is and has many of the same capabilities. So you may want to try the Silverlight SDK in Out-of-browser mode, which is similar to running a WPF app. You need to set up a proxy though.

Related Question