Hello,
I recently started a new project which references 60 day evaluation dll’s from the ThinkGeo Product Center. I can get everything to build, deploy and run okay with out any references to the dll’s I obtained. But, when I add a MapVIew
Main.axml:
<ThinkGeo.MapSuite.AndroidEdition.MapView
android:id="@+id/RoverMap"
android:layout_width=“fill_parent”
android:layout_height=“fill_parent” />
MainActivity.cs
MapView map = FindViewById(Resource.Id.RoverMap);
map.MapUnit = GeographyUnit.DecimalDegree;
The app will build, deploy but then crash. I am unsure how to proceed as I have tried many different options to get this working. Could anyone provide and tips as to what I may be doing wrong. I am using Visual Studio 2017 with the VisualStudio_android-23_arm_tablet(Android 6.0 - API 23) emulator. I do also have the iOS project in the same solution with my android application.
Thanks!