I want to know if xamarin is suitable for my need, I have sarched and only have seen a couple of xamarin Libraries for what I required, and it is: Geofencing, indoor-maping, and custom maps, like an image of a map and add overlays(images, like icons etc) on top of that image(map).... I also know there are very very good native libraries, but I would definitively like to use Xamarin.forms, and I am just exploring the options and see how easy is this.(my use case has nothing to do with showing maps of the world[like google maps or apple maps), given I know this can be easily done using google maps or something like that).
Thanks in advance
Answers
@JoseEduardoChirinosOdio - You do have the option of binding native libraries to use in Xamarin. Xamarin has a 1-1 mapping of native APIs so nothing is off limits.
For example, in Android you would do this: https://developer.xamarin.com/guides/android/advanced_topics/binding-a-java-library/
Then you would need to create a common abstraction/interface and use dependency injection, if using a class library, to call upon native functions in Xamarin.Forms.
@JoseEduardoChirinosOdio Have you find a way, how to do Indoor mapping in xamarin.forms?