Christer Nordvik
Christer Nordvik

Reputation: 2528

MKCoordinateRegionMakeWithDistance is unavailable on MonoTouch?

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

Answers (1)

mloenow
mloenow

Reputation: 36

It's there in MonoTouch 4.

using MonoTouch.MapKit;
...
var region = MKCoordinateRegion.FromDistance(center, latmeters, lngmeters);

Hope this helps.

Upvotes: 2

Related Questions