https://developer.apple.com/documentation/corelocation/clcircularregion
"A circular geographic region, specified as a center point and radius."
중심점과 반경으로 구체화되는 원형 모양의 지리적 지역입니다.
class CLCircularRegion : CLRegion
CLCircularRegion
클래스는 원형 모양의 지리적 지역에 대한 위치와 경계를 정의합니다. 특정 위치에 대한 geo fence를 정의하기 위해 이 클래스의 인스턴스를 사용할 수 있습니다. geo fence의 경계를 건너는 것은 위치 매니저가 이에 대한 내용을 딜리게이트에게 알려줄 수 있도록 합니다.
사용자가 지리적 지역에 진입하는 혹은 떠나는 시점을 확인하기 위해 지역 모니터링을 사용합니다.
https://developer.apple.com/documentation/corelocation/monitoring_the_user_s_proximity_to_geographic_regions
https://velog.io/@panther222128/Monitoring-the-Users-Proximity-to-Geographic-Regions
모니터링될 수 있는 지역을 나타내는 베이스 클래스입니다.
https://developer.apple.com/documentation/corelocation/clregion
https://velog.io/@panther222128/CLRegion