CLRegion creation error in version 1.7.0.0

I just updated to v.1.7.0.0 and I get this message:

error CS1729: The type `U3DXT.iOS.Native.CoreLocation.CLRegion’ does not contain a constructor that takes 3 arguments

For this code that used to work:

CLRegion cornerStore = new CLRegion (myCoords, theRadius, myRegion);

Any guidance would be greatly appreciated. Thanks.

Use the derived class CLCircularRegion for this. http://u3dxt.com/api/?topic=html/M_U3DXT_iOS_Native_CoreLocation_CLCircularRegion__ctor_1.htm

CLRegion cornerStore = new CLCircularRegion(myCoords, theRadius, myRegion);