зеркало из https://github.com/DeGsoft/maui-linux.git
45 строки
922 B
C#
45 строки
922 B
C#
using System;
|
|
using Android.App;
|
|
using Android.Content;
|
|
using Android.Gms.Common;
|
|
using Android.Gms.Maps;
|
|
using Android.OS;
|
|
using Xamarin.Forms.Maps.Android;
|
|
|
|
namespace Xamarin
|
|
{
|
|
public static class FormsMaps
|
|
{
|
|
public static bool IsInitialized { get; private set; }
|
|
|
|
public static Context Context { get; private set; }
|
|
|
|
public static void Init(Activity activity, Bundle bundle)
|
|
{
|
|
if (IsInitialized)
|
|
return;
|
|
IsInitialized = true;
|
|
|
|
Context = activity;
|
|
|
|
MapRenderer.Bundle = bundle;
|
|
|
|
#pragma warning disable 618
|
|
if (GooglePlayServicesUtil.IsGooglePlayServicesAvailable(Context) == ConnectionResult.Success)
|
|
#pragma warning restore 618
|
|
{
|
|
try
|
|
{
|
|
MapsInitializer.Initialize(Context);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine("Google Play Services Not Found");
|
|
Console.WriteLine("Exception: {0}", e);
|
|
}
|
|
}
|
|
|
|
GeocoderBackend.Register(Context);
|
|
}
|
|
}
|
|
} |