summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Maps.Tizen/FormsMaps.cs
blob: 1961fadafa51df33272c5b4bd121d47890726891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Tizen.Maps;
using Xamarin.Forms.Maps.Tizen;
using Xamarin.Forms.Platform.Tizen;

namespace Xamarin
{
	public static class FormsMaps
	{
		static MapService _mapService = null;

		static string ProviderName { get; set; }

		static string AuthenticationToken { get; set; }

		internal static bool IsInitialized { get; private set; }

		internal static MapService MapService
		{
			get
			{
				Debug.Assert(_mapService != null, "FormsMaps is not initialized");
				return _mapService;
			}
		}

		public static void Init(string provider, string authenticationToken)
		{
			ProviderName = provider;
			AuthenticationToken = authenticationToken;

			if (IsInitialized)
				return;

			FormsApplication.RequestingUserConsentFunc = new Func<Task>(() =>
			{
				TaskCompletionSource<bool> userConsentWaiter = new TaskCompletionSource<bool>();
				UserConsentAction(userConsentWaiter);
				return userConsentWaiter.Task;
			});
		}

		static async void UserConsentAction(TaskCompletionSource<bool> tcs)
		{
			var result = await MapService.RequestUserConsent(ProviderName);
			{
				if (result)
				{
					_mapService = new MapService(ProviderName, AuthenticationToken);
					if (_mapService != null)
					{
						GeocoderBackend.Register();
						IsInitialized = true;
					}
				}
				else
				{
					Debug.WriteLine("Failed to get user consent which is required to use map service");
				}
				tcs.SetResult(result);
			}
		}
	}
}