YMKBoundingBoxHelper

@interface YMKBoundingBoxHelper : NSObject

Summary

Class methods

+ (nonnull YMKBoundingBox *)getBoundsWithBbox:(nonnull YMKBoundingBox *)bbox;
Gets bounds based on a bounding box

+ (nonnull YMKBoundingBox *)getBoundsWithPoint:(nonnull YMKPoint *)point;
Gets bounds based on a point

+ (nonnull YMKBoundingBox *)getBoundsWithPolyline:
    (nonnull YMKPolyline *)polyline;

Gets bounds based on a polyline

+ (nonnull YMKBoundingBox *)getBoundsWithRing:(nonnull YMKLinearRing *)ring;
Gets bounds based on a linear ring

+ (nonnull YMKBoundingBox *)getBoundsWithPolygon:(nonnull YMKPolygon *)polygon;
Gets bounds based on a polygon

+ (nonnull YMKBoundingBox *)getBoundsWithFirst:(nonnull YMKBoundingBox *)first
                                        second:(nonnull YMKBoundingBox *)second;

Gets bounds based on two bounding boxes

Class methods

getBoundsWithBbox:

+ (nonnull YMKBoundingBox *)getBoundsWithBbox:(nonnull YMKBoundingBox *)bbox;

Gets bounds based on a bounding box.


getBoundsWithPoint:

+ (nonnull YMKBoundingBox *)getBoundsWithPoint:(nonnull YMKPoint *)point;

Gets bounds based on a point.


getBoundsWithPolyline:

+ (nonnull YMKBoundingBox *)getBoundsWithPolyline:
    (nonnull YMKPolyline *)polyline;

Gets bounds based on a polyline.


getBoundsWithRing:

+ (nonnull YMKBoundingBox *)getBoundsWithRing:(nonnull YMKLinearRing *)ring;

Gets bounds based on a linear ring.


getBoundsWithPolygon:

+ (nonnull YMKBoundingBox *)getBoundsWithPolygon:(nonnull YMKPolygon *)polygon;

Gets bounds based on a polygon.


getBoundsWithFirst:second:

+ (nonnull YMKBoundingBox *)getBoundsWithFirst:(nonnull YMKBoundingBox *)first
                                        second:(nonnull YMKBoundingBox *)second;

Gets bounds based on two bounding boxes.