protected override void OnCreate(Android.OS.Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);

            ContentView = new BaseMapsView(this);
            SetContentView(ContentView);

            Title = GetType().GetTitle();
            ActionBar.Subtitle = GetType().GetDescription();

            // Zoom to Central Europe so some texts would be visible
            MapPos europe = MapView.Options.BaseProjection.FromWgs84(new MapPos(15.2551, 54.5260));

            MapView.SetFocusPos(europe, 0);
            MapView.Zoom = 5;

            ContentView.CurrentLayer = ContentView.AddBaseLayer(CartoBaseMapStyle.CartoBasemapStyleVoyager);
            ContentView.StyleContent.HighlightDefault();
            ContentView.LanguageContent.Adapter.Languages = Languages.List;
            ContentView.LanguageContent.Adapter.NotifyDataSetChanged();
        }