Acr.Geofencing.GeofenceManagerImpl.ToNative C# (CSharp) 메소드

ToNative() 보호된 메소드

protected ToNative ( GeofenceRegion region ) : CLCircularRegion
region GeofenceRegion
리턴 CLCircularRegion
        protected virtual CLCircularRegion ToNative(GeofenceRegion region)
        {
            return new CLCircularRegion(
                this.ToNative(region.Center),
                region.Radius.TotalMeters,
                region.Identifier
            )
            {
                NotifyOnExit = true,
                NotifyOnEntry = true
            };
        }
    }

Same methods

GeofenceManagerImpl::ToNative ( Position position ) : CLLocationCoordinate2D