public static MKPolyline create(CLLocationCoordinate2D[] coords) { CLLocationCoordinate2D first = Struct.allocate(CLLocationCoordinate2D.class, coords.length); first.update(coords); return create(first, coords.length); }
/*</members>*/ public static MKPolyline create(MKMapPoint[] points) { MKMapPoint first = Struct.allocate(MKMapPoint.class, points.length); first.update(points); return create(first, points.length); }