Torben Schramme
Torben Schramme

Reputation: 2140

.net WP8.1/Win10 UWP: Namespace for MapControl not found in Visual Studio Designer

Edit: the described issue below occurs also in a Win 10 UWP application (VS2015, Win10) when using the MapControl.

I have a weird problem using the MapControl in a Windows Phone 8.1 (universal app) application. After adding the control to a page, Visual Studio says The name "MapControl" does not exist in the namespace "using:Windows.UI.Xaml.Controls.Maps". Building the app works, I can deploy it to the phone and the map is shown and everything is fine - but I cannot use the Designer for this page any longer since it claims that error.

The problem occured in a bigger project originally started in VS2013 (update 4) on Windows 8.1. My first thought was that my VS-installation was kind of broken. But also after a clean new installation of Windows 10 (10240) and VS2015 RTM the problem occured. My steps to reproduce are quite simple:

What's the problem here? How can I make Visual Studio designer to work with pages with MapControls again? First I thought of a bug in VS2013 - but that simple to reproduce, not fixed in VS2015 and no information about it on the internet? What did I wrong?

Design view and xaml is broken after editing (but compilation and deploying works)

Upvotes: 15

Views: 1702

Answers (3)

frenk91
frenk91

Reputation: 929

There is a bug on Visual Studio Tools for Universal Windows Apps 1.0 causing this issue with the map, installing this update should fix the issue Update

Procedure to correctly use the map sdk

Windows 8.1

  1. Go to Tools-> extension and update -> install Bing Map SDK.
  2. Right click on the project->Add reference->Windows->Extensions->Bing maps
  3. Set configuration to x86 (Configuration Properties -> Configuration)
  4. Add the map reference to your page using xmlns:maps="using:Bing.Maps"
  5. Adding this line to your xaml <maps:Map />

and now you are good to go

Windows Phone and Windows 10 UAP

Add this reference in your xaml

xmlns:maps="using:Windows.UI.Xaml.Controls.Maps"

and then add this line to your xaml

<maps:MapControl />

Upvotes: 1

Rehan Parvez
Rehan Parvez

Reputation: 143

Make the correct map library reference

xmlns:Maps="clr-namespace:Microsoft.Phone.Maps.Controls;assembly=Microsoft.Phone.Maps"

Instead of

xmlns:Maps="using:Microsoft.Phone.Maps.Controls;assembly=Microsoft.Phone.Maps"

Upvotes: -1

Related Questions