I have a dataset of ~300 electoral districts (~10MB - 45MB depending on the file format - GML/KML/SHAPE/JSON). I'm hoping to build a mobile app (iOS/Android/Windows Phone) that will determine which electoral district a user is in based on their current lat/lon.
My original plan was to set up an Azure webservice and use SQL Server or DocumentDB's spatial functionality to provide the answer. But the electoral districts are fairly static, so if I can do this on the device it might be better.
I'm thinking I'll likely use Xamarin.Forms to build my app since the UI doesn't need to be that complex (I don't need to draw maps or electoral districts).
I see that EF6 seems to have spatial functionality that would work, but I'm finding conflicting info about whether or not that will work with Xamarin.Forms, or if the performance will be reasonable.
What's the best (fastest/simplest) library/class I can use to determine the electoral district locally in a Xamarin.Forms app?