Using Xamarin.Forms.Maps: You have to Init() first!
The first time I wrote a Xamarin.Forms.Maps program, I couldn't figure out why my map wasn't appearing. And then I put a call to Xamarin.FormsMaps.Init()
into the AppDelegate
(iOS) and MainActivity
(Android):
Shared:
[code lang="csharp"]
public class App
{
public static Page GetMainPage ()
{
return new ContentPage …