You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- If needed, Google map can be use on all platform.
9
+
- The solution generate three independant nuget.
6
10
7
11
## Getting Started
8
12
9
13
### **Samples**
10
14
- Clone project a sample is available.
11
15
- For seeing samples, build and install app with VS on the desire device (Android, IOS, or UWP)
12
16
13
-
14
-
## **DynamicMap**
17
+
### API Key (not needed for mapService)
18
+
- For Google map (Android), you need to [create your Api Key](https://developers.google.com/maps/documentation/javascript/get-api-key)
19
+
- For Bing map, you should need a [Bing Api Key](https://learn.microsoft.com/en-us/bingmaps/getting-started/bing-maps-dev-center-help/getting-a-bing-maps-key) but work fine without it in sample.
20
+
21
+
set it in : sample.shared => Constants.
22
+
23
+
```csharp
24
+
publicclassGoogleMaps
25
+
{
26
+
//TODO: Get new API Key
27
+
publicconststringApiKey="";
28
+
}
29
+
```
30
+
31
+
### **DynamicMap**
32
+
33
+
- Setup your permission, in your AssemblyInfo of Android.
34
+
- For windows location is in Package.appxmanifest under capabilities, select Location and Internet(Client).
0 commit comments