Authored by Justin R. Miller

typo fix for constraints method

... ... @@ -210,7 +210,7 @@ typedef enum {
- (BOOL)projectedBounds:(RMProjectedRect)bounds containsPoint:(RMProjectedPoint)point;
- (BOOL)tileSourceBoundsContainProjectedPoint:(RMProjectedPoint)point;
- (void)setConstraintsSouthWest:(CLLocationCoordinate2D)southWest northEeast:(CLLocationCoordinate2D)northEast;
- (void)setConstraintsSouthWest:(CLLocationCoordinate2D)southWest northEast:(CLLocationCoordinate2D)northEast;
- (void)setProjectedConstraintsSouthWest:(RMProjectedPoint)southWest northEast:(RMProjectedPoint)northEast;
#pragma mark -
... ...
... ... @@ -435,7 +435,7 @@
// ===
- (void)setConstraintsSouthWest:(CLLocationCoordinate2D)southWest northEeast:(CLLocationCoordinate2D)northEast
- (void)setConstraintsSouthWest:(CLLocationCoordinate2D)southWest northEast:(CLLocationCoordinate2D)northEast
{
RMProjectedPoint projectedSouthWest = [projection coordinateToProjectedPoint:southWest];
RMProjectedPoint projectedNorthEast = [projection coordinateToProjectedPoint:northEast];
... ...