1
In my shampoo I have:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Opa"
xmlns:maps="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms.Maps"
x:Class="Opa.MainPage">
<maps:Map MapType="Street" />
...
</ContentPage>
maps:Map type not found. Check if there is no map Missing Assembly reference and if all assemblies referenced were created.
But note that it is declared in the Contentpage header on that line:
xmlns:maps="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms.Maps"
Why the mistake?
Edit1
My project is called Ola
So is my headline
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Ola"
xmlns:maps="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms"
x:Class="Ola.MainPage">
<maps:Map MapType="Street" />
has already managed to resolve?
– Leandro Angelo
Dude, since I posted I couldn’t stop. Today I get home early and I’m going to continue. Solving I close the post and mark the answer.
– pnet
@Leandroangelo, I haven’t solved it yet but soon I’ll solve it
– pnet