YMKCircle

@interface YMKCircle : NSObject

A circle around the specified point.

Summary

Class methods

+ (nonnull YMKCircle *)circleWithCenter:(nonnull YMKPoint *)center
                                 radius:( float)radius;

Properties

@property (nonatomic, readonly, nonnull) YMKPoint *center;
The coordinates of the center of the circle

@property (nonatomic, readonly) float radius;
The radius of the circle in meters

Class methods

circleWithCenter:radius:

+ (nonnull YMKCircle *)circleWithCenter:(nonnull YMKPoint *)center
                                 radius:( float)radius;


Properties

center

@property (nonatomic, readonly, nonnull) YMKPoint *center;

The coordinates of the center of the circle.


radius

@property (nonatomic, readonly) float radius;

The radius of the circle in meters.