Skip to content

Instantly share code, notes, and snippets.

View bluee's full-sized avatar

Martin Stααel bluee

  • Gold Coast, Australia
View GitHub Profile
@bluee
bluee / zoomToFitMapAnnotations.cs
Last active December 8, 2016 01:03
Xamarin.IOS ZoomToFitMapAnnoations
public static class MapHelper
{
public static void CenterMap(this MapKit.MKMapView map, CLLocationCoordinate2D mapCenter)
{
map.SetRegion(MKCoordinateRegion.FromDistance(mapCenter, 1000, 1000), true);
}
public static void ZoomToFitMapAnnotations(this MapKit.MKMapView map)
{
map.ShowAnnotations(map.Annotations, false);