Reputation: 2528
I am trying to convert a Map example from objective-c to MonoTouch but the MKCoordinateRegionMakeWithDistance isn't wrapped in .NET as far as I managed to find.
This issue has been marked as resolved by the MonoTouch team, so where is it? :-) https://bugzilla.novell.com/show_bug.cgi?id=629743
Upvotes: 1
Views: 605
Reputation: 36
It's there in MonoTouch 4.
using MonoTouch.MapKit;
...
var region = MKCoordinateRegion.FromDistance(center, latmeters, lngmeters);
Hope this helps.
Upvotes: 2