RMMapView.m 57.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
//
//  RMMapView.m
//
// Copyright (c) 2008-2009, Route-Me Contributors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
//   list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
//   this list of conditions and the following disclaimer in the documentation
//   and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.

#import "RMMapView.h"
#import "RMMapViewDelegate.h"

#import "RMTileLoader.h"

#import "RMMercatorToScreenProjection.h"
#import "RMMarker.h"
#import "RMFoundation.h"
#import "RMProjection.h"
#import "RMMarkerManager.h"
#import "RMMarkerLayer.h"
#import "RMMarker.h"

#import "RMMercatorToScreenProjection.h"
#import "RMMercatorToTileProjection.h"
#import "RMOpenStreetMapSource.h"

#import "RMTileCache.h"
#import "RMTileSource.h"
#import "RMTileLoader.h"
#import "RMTileImageSet.h"

#import "RMCoreAnimationRenderer.h"

#pragma mark --- begin constants ----

#define kDefaultDecelerationFactor .88f
#define kMinDecelerationDelta 0.6f
#define kDecelerationTimerInterval 0.02f

#define kZoomAnimationStepTime 0.03f
#define kZoomAnimationAnimationTime 0.1f
#define kiPhoneMilimeteresPerPixel .1543
#define kZoomRectPixelBuffer 50

#define kMoveAnimationDuration 0.25f
#define kMoveAnimationStepDuration 0.02f

#define kDefaultInitialLatitude -33.858771
#define kDefaultInitialLongitude 151.201596

#define kDefaultMinimumZoomLevel 0.0
#define kDefaultMaximumZoomLevel 25.0
#define kDefaultInitialZoomLevel 13.0

#pragma mark --- end constants ----

@interface RMMapView (PrivateMethods)

@property (nonatomic, retain) RMMarkerLayer *overlay;

// methods for post-touch deceleration
- (void)startDecelerationWithDelta:(CGSize)delta;
- (void)incrementDeceleration:(NSTimer *)timer;
- (void)stopDeceleration;

- (void)animationFinishedWithZoomFactor:(float)zoomFactor near:(CGPoint)p;
- (void)animationStepped;

@end

#pragma mark -

@implementation RMMapView

@synthesize decelerationFactor;
@synthesize deceleration;

@synthesize enableDragging;
@synthesize enableZoom;
@synthesize lastGesture;

@synthesize boundingMask;
@synthesize minZoom;
@synthesize maxZoom;
@synthesize screenScale;
@synthesize markerManager;
@synthesize imagesOnScreen;
@synthesize tileCache;

#pragma mark -
#pragma mark Initialization

- (void)performInitialSetup
{
	LogMethod();

	enableDragging = YES;
	enableZoom = YES;
	decelerationFactor = kDefaultDecelerationFactor;
	deceleration = NO;

	if (enableZoom)
		[self setMultipleTouchEnabled:TRUE];

	self.backgroundColor = [UIColor grayColor];

	_constrainMovement = NO;
}

- (id)initWithFrame:(CGRect)frame
{
	LogMethod();
    return [self initWithFrame:frame andTilesource:[[RMOpenStreetMapSource new] autorelease]];
}

- (id)initWithFrame:(CGRect)frame andTilesource:(id <RMTileSource>)newTilesource
{
	LogMethod();
	CLLocationCoordinate2D coordinate;
	coordinate.latitude = kDefaultInitialLatitude;
	coordinate.longitude = kDefaultInitialLongitude;

	return [self initWithFrame:frame
                 andTilesource:newTilesource
              centerCoordinate:coordinate
                     zoomLevel:kDefaultInitialZoomLevel
                  maxZoomLevel:kDefaultMaximumZoomLevel
                  minZoomLevel:kDefaultMinimumZoomLevel
               backgroundImage:nil];
}

- (id)initWithFrame:(CGRect)frame
      andTilesource:(id <RMTileSource>)newTilesource
   centerCoordinate:(CLLocationCoordinate2D)initialCenterCoordinate
          zoomLevel:(float)initialZoomLevel
       maxZoomLevel:(float)maxZoomLevel
       minZoomLevel:(float)minZoomLevel
    backgroundImage:(UIImage *)backgroundImage
{
    LogMethod();
    if (!(self = [super initWithFrame:frame]))
        return nil;

    [self performInitialSetup];

    tileSource = nil;
    projection = nil;
    mercatorToTileProjection = nil;
    renderer = nil;
    imagesOnScreen = nil;
    tileLoader = nil;

    screenScale = 1.0;
    if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
    {
        screenScale = [[[UIScreen mainScreen] valueForKey:@"scale"] floatValue];
    }

    boundingMask = RMMapMinWidthBound;

    mercatorToScreenProjection = [[RMMercatorToScreenProjection alloc] initFromProjection:[newTilesource projection] toScreenBounds:[self bounds]];

    [self setTileCache:[[[RMTileCache alloc] init] autorelease]];
    [self setTileSource:newTilesource];
    [self setRenderer:[[[RMCoreAnimationRenderer alloc] initWithView:self] autorelease]];

    imagesOnScreen = [[RMTileImageSet alloc] initWithDelegate:renderer];
    [imagesOnScreen setTileSource:tileSource];
    [imagesOnScreen setTileCache:tileCache];
    [imagesOnScreen setCurrentCacheKey:[newTilesource uniqueTilecacheKey]];

    tileLoader = [[RMTileLoader alloc] initWithView:self];
    [tileLoader setSuppressLoading:YES];

    [self setMinZoom:minZoomLevel];
    [self setMaxZoom:maxZoomLevel];
    [self setZoom:initialZoomLevel];
    [self moveToCoordinate:initialCenterCoordinate];

    [tileLoader setSuppressLoading:NO];

    /// \bug TODO: Make a nice background class
    [self setBackground:[[[CALayer alloc] init] autorelease]];
    [self setOverlay:[[[RMMarkerLayer alloc] initWithView:self] autorelease]];
    markerManager = [[RMMarkerManager alloc] initWithView:self];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(handleMemoryWarningNotification:)
                                                 name:UIApplicationDidReceiveMemoryWarningNotification
                                               object:nil];

    RMLog(@"Map initialised. tileSource:%@, renderer:%@, minZoom:%.0f, maxZoom:%.0f", tileSource, renderer, [self minZoom], [self maxZoom]);
    return self;
}

- (void)setFrame:(CGRect)frame
{
    CGRect r = self.frame;
    [super setFrame:frame];

    // only change if the frame changes
    if (!CGRectEqualToRect(r, frame)) {
        CGRect bounds = CGRectMake(0, 0, frame.size.width, frame.size.height);
        [mercatorToScreenProjection setScreenBounds:bounds];
        background.frame = bounds;
        overlay.frame = bounds;
        [tileLoader clearLoadedBounds];
        [tileLoader updateLoadedImages];
        [overlay correctPositionOfAllSublayers];
    }
}

- (void)dealloc
{
    LogMethod();
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    [self setDelegate:nil];
    [self stopDeceleration];
    [imagesOnScreen cancelLoading];
    [self setRenderer:nil];
    [self setTileCache:nil];
    [imagesOnScreen release]; imagesOnScreen = nil;
    [tileLoader release]; tileLoader = nil;
    [projection release]; projection = nil;
    [mercatorToTileProjection release]; mercatorToTileProjection = nil;
    [mercatorToScreenProjection release]; mercatorToScreenProjection = nil;
    [tileSource release]; tileSource = nil;
    [self setOverlay:nil];
    [self setBackground:nil];
    [markerManager release]; markerManager = nil;
    [super dealloc];
}

- (void)didReceiveMemoryWarning
{
    LogMethod();
    [tileSource didReceiveMemoryWarning];
    [tileCache didReceiveMemoryWarning];
}

- (void)handleMemoryWarningNotification:(NSNotification *)notification
{
	[self didReceiveMemoryWarning];
}

- (NSString *)description
{
	CGRect bounds = [self bounds];
	return [NSString stringWithFormat:@"MapView at %.0f,%.0f-%.0f,%.0f", bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height];
}

#pragma mark -
#pragma mark Delegate

@dynamic delegate;

- (void)setDelegate:(id <RMMapViewDelegate>)aDelegate
{
    if (delegate == aDelegate)
        return;

    delegate = aDelegate;

    _delegateHasBeforeMapMove = [delegate respondsToSelector:@selector(beforeMapMove:)];
    _delegateHasAfterMapMove  = [delegate respondsToSelector:@selector(afterMapMove:)];
    _delegateHasAfterMapMoveDeceleration = [delegate respondsToSelector:@selector(afterMapMoveDeceleration:)];

    _delegateHasBeforeMapZoomByFactor = [delegate respondsToSelector:@selector(beforeMapZoom:byFactor:near:)];
    _delegateHasAfterMapZoomByFactor  = [delegate respondsToSelector:@selector(afterMapZoom:byFactor:near:)];

    _delegateHasMapViewRegionDidChange = [delegate respondsToSelector:@selector(mapViewRegionDidChange:)];

    _delegateHasBeforeMapRotate  = [delegate respondsToSelector:@selector(beforeMapRotate:fromAngle:)];
    _delegateHasAfterMapRotate  = [delegate respondsToSelector:@selector(afterMapRotate:toAngle:)];

    _delegateHasDoubleTapOnMap = [delegate respondsToSelector:@selector(doubleTapOnMap:at:)];
    _delegateHasDoubleTapTwoFingersOnMap = [delegate respondsToSelector:@selector(doubleTapTwoFingersOnMap:at:)];
    _delegateHasSingleTapOnMap = [delegate respondsToSelector:@selector(singleTapOnMap:at:)];
    _delegateHasLongSingleTapOnMap = [delegate respondsToSelector:@selector(longSingleTapOnMap:at:)];

    _delegateHasTapOnMarker = [delegate respondsToSelector:@selector(tapOnMarker:onMap:)];
    _delegateHasTapOnLabelForMarker = [delegate respondsToSelector:@selector(tapOnLabelForMarker:onMap:)];

    _delegateHasAfterMapTouch  = [delegate respondsToSelector:@selector(afterMapTouch:)];

    _delegateHasShouldDragMarker = [delegate respondsToSelector:@selector(mapView:shouldDragMarker:withEvent:)];
    _delegateHasDidDragMarker = [delegate respondsToSelector:@selector(mapView:didDragMarker:withEvent:)];
}

- (id <RMMapViewDelegate>)delegate
{
	return delegate;
}

#pragma mark -
#pragma mark Tile Source Bounds

- (BOOL)projectedBounds:(RMProjectedRect)bounds containsPoint:(RMProjectedPoint)point
{
    if (bounds.origin.easting > point.easting ||
        bounds.origin.easting + bounds.size.width < point.easting ||
        bounds.origin.northing > point.northing ||
        bounds.origin.northing + bounds.size.height < point.northing)
    {
        return NO;
    }

    return YES;
}

- (RMProjectedRect)projectedRectFromLatitudeLongitudeBounds:(RMSphericalTrapezium)bounds
{
    CLLocationCoordinate2D ne = bounds.northeast;
    CLLocationCoordinate2D sw = bounds.southwest;
    float pixelBuffer = kZoomRectPixelBuffer;
    CLLocationCoordinate2D midpoint = {
        .latitude = (ne.latitude + sw.latitude) / 2,
        .longitude = (ne.longitude + sw.longitude) / 2
    };
    RMProjectedPoint myOrigin = [projection coordinateToProjectedPoint:midpoint];
    RMProjectedPoint nePoint = [projection coordinateToProjectedPoint:ne];
    RMProjectedPoint swPoint = [projection coordinateToProjectedPoint:sw];
    RMProjectedPoint myPoint = {.easting = nePoint.easting - swPoint.easting, .northing = nePoint.northing - swPoint.northing};

    // Create the new zoom layout
    RMProjectedRect zoomRect;

    //Default is with scale = 2.0 mercators/pixel
    zoomRect.size.width = [self screenBounds].size.width * 2.0;
    zoomRect.size.height = [self screenBounds].size.height * 2.0;
    if ((myPoint.easting / [self screenBounds].size.width) < (myPoint.northing / [self screenBounds].size.height))
    {
        if ((myPoint.northing / ([self screenBounds].size.height - pixelBuffer)) > 1)
        {
            zoomRect.size.width = [self screenBounds].size.width * (myPoint.northing / ([self screenBounds].size.height - pixelBuffer));
            zoomRect.size.height = [self screenBounds].size.height * (myPoint.northing / ([self screenBounds].size.height - pixelBuffer));
        }
    }
    else
    {
        if ((myPoint.easting / ([self screenBounds].size.width - pixelBuffer)) > 1)
        {
            zoomRect.size.width = [self screenBounds].size.width * (myPoint.easting / ([self screenBounds].size.width - pixelBuffer));
            zoomRect.size.height = [self screenBounds].size.height * (myPoint.easting / ([self screenBounds].size.width - pixelBuffer));
        }
    }
    myOrigin.easting = myOrigin.easting - (zoomRect.size.width / 2);
    myOrigin.northing = myOrigin.northing - (zoomRect.size.height / 2);

    RMLog(@"Origin is calculated at: %f, %f", [projection projectedPointToCoordinate:myOrigin].latitude, [projection projectedPointToCoordinate:myOrigin].longitude);

    zoomRect.origin = myOrigin;

//    RMLog(@"Origin: x=%f, y=%f, w=%f, h=%f", zoomRect.origin.easting, zoomRect.origin.northing, zoomRect.size.width, zoomRect.size.height);

    return zoomRect;
}

- (BOOL)tileSourceBoundsContainProjectedPoint:(RMProjectedPoint)point
{
    RMSphericalTrapezium bounds = [self.tileSource latitudeLongitudeBoundingBox];
    if (bounds.northeast.latitude == 90 && bounds.northeast.longitude == 180 &&
        bounds.southwest.latitude == -90 && bounds.southwest.longitude == -180) {
        return YES;
    }
    return [self projectedBounds:tileSourceProjectedBounds containsPoint:point];
}

- (BOOL)tileSourceBoundsContainScreenPoint:(CGPoint)point
{
    RMProjectedPoint projectedPoint = [mercatorToScreenProjection projectScreenPointToProjectedPoint:point];
    return [self tileSourceBoundsContainProjectedPoint:projectedPoint];
}

#pragma mark -
#pragma mark Movement

- (void)moveToProjectedPoint:(RMProjectedPoint)aPoint
{
    if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
    [self setMapCenterProjectedPoint:aPoint];
    if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
    if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}

- (void)moveToCoordinate:(CLLocationCoordinate2D)coordinate
{
    if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
	RMProjectedPoint projectedPoint = [[self projection] coordinateToProjectedPoint:coordinate];
	[self setMapCenterProjectedPoint:projectedPoint];
    if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
    if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}

- (void)moveBy:(CGSize)delta andCorrectAllSublayers:(BOOL)correctAllSublayers
{
    RMProjectedPoint projectedCenter = [mercatorToScreenProjection projectedCenter];
    RMProjectedSize XYDelta = [mercatorToScreenProjection projectScreenSizeToProjectedSize:delta];
    projectedCenter.easting = projectedCenter.easting - XYDelta.width;
    projectedCenter.northing = projectedCenter.northing - XYDelta.height;

    if (![self tileSourceBoundsContainProjectedPoint:projectedCenter])
        return;

	[mercatorToScreenProjection moveScreenBy:delta];
	[imagesOnScreen moveBy:delta];
	[tileLoader moveBy:delta];
	[overlay moveBy:delta];
	[overlay correctPositionOfAllSublayersIncludingInvisibleLayers:correctAllSublayers];
}

- (void)moveToCoordinate:(CLLocationCoordinate2D)coordinate animated:(BOOL)animated
{
    if (!animated) {
        [self moveToCoordinate:coordinate];
        return;
    }

    if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        long int steps = lroundf(kMoveAnimationDuration / kMoveAnimationStepDuration);

        while (--steps > 0)
        {
            [NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:kMoveAnimationStepDuration]];

            CGPoint startPoint = [self coordinateToPixel:self.mapCenterCoordinate];
            CGPoint endPoint   = [self coordinateToPixel:coordinate];
            CGPoint delta = CGPointMake((startPoint.x - endPoint.x) / steps, (startPoint.y - endPoint.y) / steps);
            if (delta.x == 0.0 && delta.y == 0.0) return;

            RMLog(@"%d steps from (%f,%f) to final location (%f,%f)", steps, self.mapCenterCoordinate.longitude, self.mapCenterCoordinate.latitude, coordinate.longitude, coordinate.latitude);

            dispatch_sync(dispatch_get_main_queue(), ^{
                [self moveBy:CGSizeMake(delta.x, delta.y) andCorrectAllSublayers:NO];
            });
        }

        dispatch_async(dispatch_get_main_queue(), ^{
            [self moveToCoordinate:coordinate];
            if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
            if (_delegateHasAfterMapMoveDeceleration) [delegate afterMapMoveDeceleration:self];
            if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
        });
    });
}

- (void)moveBy:(CGSize)delta isAnimationStep:(BOOL)isAnimationStep
{
    if (_constrainMovement)
    {
        RMMercatorToScreenProjection *mtsp = self.mercatorToScreenProjection;

        // calculate new bounds after move
        RMProjectedRect pBounds = [mtsp projectedBounds];
        RMProjectedSize XYDelta = [mtsp projectScreenSizeToProjectedSize:delta];
        CGSize sizeRatio = CGSizeMake(((delta.width == 0) ? 0 : XYDelta.width / delta.width),
                                      ((delta.height == 0) ? 0 : XYDelta.height / delta.height));
        RMProjectedRect newBounds = pBounds;

        // move the rect by delta
        newBounds.origin.northing -= XYDelta.height;
        newBounds.origin.easting -= XYDelta.width;

        // see if new bounds are within constrained bounds, and constrain if necessary
        BOOL constrained = NO;
        if (newBounds.origin.northing < _southWestConstraint.northing) {
            newBounds.origin.northing = _southWestConstraint.northing;
            constrained = YES;
        }
        if (newBounds.origin.northing + newBounds.size.height > _northEastConstraint.northing) {
            newBounds.origin.northing = _northEastConstraint.northing - newBounds.size.height;
            constrained = YES;
        }
        if (newBounds.origin.easting < _southWestConstraint.easting) {
            newBounds.origin.easting = _southWestConstraint.easting;
            constrained = YES;
        }
        if (newBounds.origin.easting + newBounds.size.width > _northEastConstraint.easting) {
            newBounds.origin.easting = _northEastConstraint.easting - newBounds.size.width;
            constrained = YES;
        }

        if (constrained)
        {
            // Adjust delta to match constraint
            XYDelta.height = pBounds.origin.northing - newBounds.origin.northing;
            XYDelta.width = pBounds.origin.easting - newBounds.origin.easting;
            delta = CGSizeMake(((sizeRatio.width == 0) ? 0 : XYDelta.width / sizeRatio.width), 
                               ((sizeRatio.height == 0) ? 0 : XYDelta.height / sizeRatio.height));
        }
    }

    if (_delegateHasBeforeMapMove) [delegate beforeMapMove:self];
    [self moveBy:delta andCorrectAllSublayers:!isAnimationStep];
    if (_delegateHasAfterMapMove) [delegate afterMapMove:self];
}

- (void)moveBy:(CGSize)delta
{
    [self moveBy:delta isAnimationStep:NO];
}

- (void)setConstraintsSouthWest:(CLLocationCoordinate2D)sw northEeast:(CLLocationCoordinate2D)ne
{
    RMProjection *proj = self.projection;

    RMProjectedPoint projectedNE = [proj coordinateToProjectedPoint:ne];
    RMProjectedPoint projectedSW = [proj coordinateToProjectedPoint:sw];

    [self setProjectedConstraintsSouthWest:projectedSW northEast:projectedNE];
}

- (void)setProjectedConstraintsSouthWest:(RMProjectedPoint)sw northEast:(RMProjectedPoint)ne
{
    _southWestConstraint = sw;
    _northEastConstraint = ne;
    _constrainMovement = YES;
}

#pragma mark -
#pragma mark Zoom

- (float)adjustedZoomForCurrentBoundingMask:(float)zoomFactor
{
    if (boundingMask == RMMapNoMinBound)
        return zoomFactor;

    double newMPP = self.metersPerPixel / zoomFactor;

    RMProjectedRect mercatorBounds = [[tileSource projection] planetBounds];

    // Check for MinWidthBound
    if (boundingMask & RMMapMinWidthBound)
    {
        double newMapContentsWidth = mercatorBounds.size.width / newMPP;
        double screenBoundsWidth = [self screenBounds].size.width;
        double mapContentWidth;

        if (newMapContentsWidth < screenBoundsWidth)
        {
            // Calculate new zoom facter so that it does not shrink the map any further.
            mapContentWidth = mercatorBounds.size.width / self.metersPerPixel;
            zoomFactor = screenBoundsWidth / mapContentWidth;
        }
    }

    // Check for MinHeightBound
    if (boundingMask & RMMapMinHeightBound)
    {
        double newMapContentsHeight = mercatorBounds.size.height / newMPP;
        double screenBoundsHeight = [self screenBounds].size.height;
        double mapContentHeight;

        if (newMapContentsHeight < screenBoundsHeight)
        {
            // Calculate new zoom facter so that it does not shrink the map any further.
            mapContentHeight = mercatorBounds.size.height / self.metersPerPixel;
            zoomFactor = screenBoundsHeight / mapContentHeight;
        }
    }

    return zoomFactor;
}

- (BOOL)shouldZoomToTargetZoom:(float)targetZoom withZoomFactor:(float)zoomFactor
{
    // bools for syntactical sugar to understand the logic in the if statement below
    BOOL zoomAtMax = ([self zoom] == [self maxZoom]);
    BOOL zoomAtMin = ([self zoom] == [self minZoom]);
    BOOL zoomGreaterMin = ([self zoom] > [self minZoom]);
    BOOL zoomLessMax = ([self zoom] < [self maxZoom]);

    //zooming in zoomFactor > 1
    //zooming out zoomFactor < 1
    if ((zoomGreaterMin && zoomLessMax) || (zoomAtMax && zoomFactor<1) || (zoomAtMin && zoomFactor>1)) {
        return YES;
    } else {
        return NO;
    }
}

// \bug this is a no-op, not a clamp, if new zoom would be outside of minzoom/maxzoom range
- (void)zoomContentByFactor:(float)zoomFactor near:(CGPoint)pivot
{
    if (![self tileSourceBoundsContainScreenPoint:pivot])
        return;

    zoomFactor = [self adjustedZoomForCurrentBoundingMask:zoomFactor];

    // pre-calculate zoom so we can tell if we want to perform it
    float newZoom = [mercatorToTileProjection calculateZoomFromScale:(self.metersPerPixel / zoomFactor)];

    if ((newZoom > minZoom) && (newZoom < maxZoom))
    {
        [mercatorToScreenProjection zoomScreenByFactor:zoomFactor near:pivot];
        [imagesOnScreen zoomByFactor:zoomFactor near:pivot];
        [tileLoader zoomByFactor:zoomFactor near:pivot];
        [overlay zoomByFactor:zoomFactor near:pivot];
        [overlay correctPositionOfAllSublayers];
    }
}

- (void)zoomContentByFactor:(float)zoomFactor near:(CGPoint)pivot animated:(BOOL)animated withCallback:(RMMapView *)callback isAnimationStep:(BOOL)isAnimationStep
{
    if (![self tileSourceBoundsContainScreenPoint:pivot])
        return;

    zoomFactor = [self adjustedZoomForCurrentBoundingMask:zoomFactor];
    float zoomDelta = log2f(zoomFactor);
    float targetZoom = zoomDelta + [self zoom];

    if (targetZoom == [self zoom])
        return;

    // clamp zoom to remain below or equal to maxZoom after zoomAfter will be applied
    // Set targetZoom to maxZoom so the map zooms to its maximum
    if (targetZoom > [self maxZoom]) {
        zoomFactor = exp2f([self maxZoom] - [self zoom]);
        targetZoom = [self maxZoom];
    }

    // clamp zoom to remain above or equal to minZoom after zoomAfter will be applied
    // Set targetZoom to minZoom so the map zooms to its maximum
    if (targetZoom < [self minZoom]) {
        zoomFactor = 1/exp2f([self zoom] - [self minZoom]);
        targetZoom = [self minZoom];
    }

    if ([self shouldZoomToTargetZoom:targetZoom withZoomFactor:zoomFactor])
    {
        if (animated)
        {
            // goal is to complete the animation in animTime seconds
            double nSteps = round(kZoomAnimationAnimationTime / kZoomAnimationStepTime);
            double zoomIncr = zoomDelta / nSteps;

            NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:
                                      [NSNumber numberWithDouble:zoomIncr], @"zoomIncr",
                                      [NSNumber numberWithDouble:targetZoom], @"targetZoom",
                                      [NSValue valueWithCGPoint:pivot], @"pivot",
                                      [NSNumber numberWithFloat:zoomFactor], @"factor",
                                      callback, @"callback",
                                      nil];
            [NSTimer scheduledTimerWithTimeInterval:kZoomAnimationStepTime
                                             target:self
                                           selector:@selector(animatedZoomStep:)
                                           userInfo:userInfo
                                            repeats:YES];
        }
        else
        {
            [mercatorToScreenProjection zoomScreenByFactor:zoomFactor near:pivot];
            [imagesOnScreen zoomByFactor:zoomFactor near:pivot];
            [tileLoader zoomByFactor:zoomFactor near:pivot];
            [overlay zoomByFactor:zoomFactor near:pivot];
            [overlay correctPositionOfAllSublayersIncludingInvisibleLayers:!isAnimationStep];
        }
    }
    else
    {
        if ([self zoom] > [self maxZoom])
            [self setZoom:[self maxZoom]];
        if ([self zoom] < [self minZoom])
            [self setZoom:[self minZoom]];
    }
}

- (void)zoomContentByFactor:(float)zoomFactor near:(CGPoint)pivot animated:(BOOL)animated
{
    [self zoomContentByFactor:zoomFactor near:pivot animated:animated withCallback:nil isAnimationStep:NO];
}

- (void)animationStepped
{
    if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
}

- (void)animationFinishedWithZoomFactor:(float)zoomFactor near:(CGPoint)p
{
    if (_delegateHasAfterMapZoomByFactor)
        [delegate afterMapZoom:self byFactor:zoomFactor near:p];
}

- (void)animatedZoomStep:(NSTimer *)timer
{
    double zoomIncr = [[[timer userInfo] objectForKey:@"zoomIncr"] doubleValue];
    double targetZoom = [[[timer userInfo] objectForKey:@"targetZoom"] doubleValue];

    NSDictionary *userInfo = [[[timer userInfo] retain] autorelease];
    RMMapView *callback = [userInfo objectForKey:@"callback"];

    if ((zoomIncr > 0 && [self zoom] >= targetZoom-1.0e-6) || (zoomIncr < 0 && [self zoom] <= targetZoom+1.0e-6))
    {
        if ([self zoom] != targetZoom)
            [self setZoom:targetZoom];

        [timer invalidate];	// ASAP
        if ([callback respondsToSelector:@selector(animationFinishedWithZoomFactor:near:)])
            [callback animationFinishedWithZoomFactor:[[userInfo objectForKey:@"factor"] floatValue] near:[[userInfo objectForKey:@"pivot"] CGPointValue]];

        [overlay correctPositionOfAllSublayersIncludingInvisibleLayers:YES];
    }
    else
    {
        float zoomFactorStep = exp2f(zoomIncr);
        [self zoomContentByFactor:zoomFactorStep near:[[[timer userInfo] objectForKey:@"pivot"] CGPointValue] animated:NO withCallback:nil isAnimationStep:YES];
        if ([callback respondsToSelector:@selector(animationStepped)])
            [callback animationStepped];
    }
}

- (float)nextNativeZoomFactor
{
    float newZoom = fminf(floorf([self zoom] + 1.0), [self maxZoom]);
    return exp2f(newZoom - [self zoom]);
}

- (float)previousNativeZoomFactor
{
    float newZoom = fmaxf(floorf([self zoom] - 1.0), [self minZoom]);
    return exp2f(newZoom - [self zoom]);
}

- (void)zoomInToNextNativeZoomAt:(CGPoint)pivot
{
    [self zoomInToNextNativeZoomAt:pivot animated:NO];
}

- (void)zoomInToNextNativeZoomAt:(CGPoint)pivot animated:(BOOL)animated
{
    // Calculate rounded zoom
    float newZoom = fmin(floorf([self zoom] + 1.0), [self maxZoom]);
    RMLog(@"[self minZoom] %f [self zoom] %f [self maxZoom] %f newzoom %f", [self minZoom], [self zoom], [self maxZoom], newZoom);

    float factor = exp2f(newZoom - [self zoom]);
    [self zoomContentByFactor:factor near:pivot animated:animated];
}

- (void)zoomOutToNextNativeZoomAt:(CGPoint)pivot animated:(BOOL) animated
{
    // Calculate rounded zoom
    float newZoom = fmax(ceilf([self zoom] - 1.0), [self minZoom]);
    RMLog(@"[self minZoom] %f [self zoom] %f [self maxZoom] %f newzoom %f", [self minZoom], [self zoom], [self maxZoom], newZoom);

    float factor = exp2f(newZoom - [self zoom]);
    [self zoomContentByFactor:factor near:pivot animated:animated];
}

- (void)zoomOutToNextNativeZoomAt:(CGPoint)pivot
{
	[self zoomOutToNextNativeZoomAt:pivot animated:NO];
}

- (void)zoomByFactor:(float)zoomFactor near:(CGPoint)center animated:(BOOL)animated
{
    if (_constrainMovement)
    {
        // check that bounds after zoom don't exceed map constraints
        // the logic is copued from the method zoomByFactor,
        float _zoomFactor = [self adjustedZoomForCurrentBoundingMask:zoomFactor];
        float zoomDelta = log2f(_zoomFactor);
        float targetZoom = zoomDelta + [self zoom];
        BOOL canZoom = NO;
        if (targetZoom == [self zoom]) {
            //OK... . I could even do a return here.. but it will hamper with future logic..
            canZoom = YES;
        }
        // clamp zoom to remain below or equal to maxZoom after zoomAfter will be applied
        if (targetZoom > [self maxZoom]) {
            zoomFactor = exp2f([self maxZoom] - [self zoom]);
        }

        // clamp zoom to remain above or equal to minZoom after zoomAfter will be applied
        if (targetZoom < [self minZoom]) {
            zoomFactor = 1/exp2f([self zoom] - [self minZoom]);
        }

        // bools for syntactical sugar to understand the logic in the if statement below
        BOOL zoomAtMax = ([self zoom] == [self maxZoom]);
        BOOL zoomAtMin = ([self zoom] == [self minZoom]);
        BOOL zoomGreaterMin = ([self zoom] > [self minZoom]);
        BOOL zoomLessMax = ([self zoom] < [ self maxZoom]);

        //zooming in zoomFactor > 1
        //zooming out zoomFactor < 1
        if ((zoomGreaterMin && zoomLessMax) || (zoomAtMax && zoomFactor<1) || (zoomAtMin && zoomFactor>1))
        {
            // if I'm here it means I could zoom, now we have to see what will happen after zoom
            RMMercatorToScreenProjection *mtsp = self.mercatorToScreenProjection;

            // get copies of mercatorRoScreenProjection's data
            RMProjectedPoint origin = [mtsp origin];
            float metersPerPixel = mtsp.metersPerPixel;
            CGRect screenBounds = [mtsp screenBounds];

            // this is copied from [RMMercatorToScreenBounds zoomScreenByFactor]
            // First we move the origin to the pivot...
            origin.easting += center.x * metersPerPixel;
            origin.northing += (screenBounds.size.height - center.y) * metersPerPixel;

            // Then scale by 1/factor
            metersPerPixel /= _zoomFactor;

            // Then translate back
            origin.easting -= center.x * metersPerPixel;
            origin.northing -= (screenBounds.size.height - center.y) * metersPerPixel;

            origin = [mtsp.projection wrapPointHorizontally:origin];

            // calculate new bounds
            RMProjectedRect zRect;
            zRect.origin = origin;
            zRect.size.width = screenBounds.size.width * metersPerPixel;
            zRect.size.height = screenBounds.size.height * metersPerPixel;

            // can zoom only if within bounds
            canZoom = !(zRect.origin.northing < _southWestConstraint.northing || zRect.origin.northing+zRect.size.height > _northEastConstraint.northing ||
                        zRect.origin.easting < _southWestConstraint.easting || zRect.origin.easting+zRect.size.width > _northEastConstraint.easting);
        }

        if (!canZoom) {
            RMLog(@"Zooming will move map out of bounds: no zoom");
            return;
        }
    }

    if (_delegateHasBeforeMapZoomByFactor) [delegate beforeMapZoom:self byFactor:zoomFactor near:center];
    [self zoomContentByFactor:zoomFactor near:center animated:animated withCallback:((animated && (_delegateHasAfterMapZoomByFactor || _delegateHasMapViewRegionDidChange)) ? self : nil) isAnimationStep:!animated];

    if (!animated) {
        if (_delegateHasAfterMapZoomByFactor) [delegate afterMapZoom:self byFactor:zoomFactor near:center];
        if (_delegateHasMapViewRegionDidChange) [delegate mapViewRegionDidChange:self];
    }
}

- (void)zoomByFactor:(float)zoomFactor near:(CGPoint)center
{
	[self zoomByFactor:zoomFactor near:center animated:NO];
}

#pragma mark -
#pragma mark Zoom With Bounds

- (void)zoomWithLatitudeLongitudeBoundsSouthWest:(CLLocationCoordinate2D)sw northEast:(CLLocationCoordinate2D)ne
{
    if (ne.latitude == sw.latitude && ne.longitude == sw.longitude) //There are no bounds, probably only one marker.
    {
        RMProjectedRect zoomRect;
        RMProjectedPoint myOrigin = [projection coordinateToProjectedPoint:sw];
        // Default is with scale = 2.0 mercators/pixel
        zoomRect.size.width = [self screenBounds].size.width * 2.0;
        zoomRect.size.height = [self screenBounds].size.height * 2.0;
        myOrigin.easting = myOrigin.easting - (zoomRect.size.width / 2);
        myOrigin.northing = myOrigin.northing - (zoomRect.size.height / 2);
        zoomRect.origin = myOrigin;
        [self zoomWithProjectedBounds:zoomRect];
    }
    else
    {
        // Convert ne/sw into RMMercatorRect and call zoomWithBounds
        float pixelBuffer = kZoomRectPixelBuffer;
        CLLocationCoordinate2D midpoint = {
            .latitude = (ne.latitude + sw.latitude) / 2,
            .longitude = (ne.longitude + sw.longitude) / 2
        };
        RMProjectedPoint myOrigin = [projection coordinateToProjectedPoint:midpoint];
        RMProjectedPoint nePoint = [projection coordinateToProjectedPoint:ne];
        RMProjectedPoint swPoint = [projection coordinateToProjectedPoint:sw];
        RMProjectedPoint myPoint = {
            .easting = nePoint.easting - swPoint.easting,
            .northing = nePoint.northing - swPoint.northing
        };

		// Create the new zoom layout
        RMProjectedRect zoomRect;

        // Default is with scale = 2.0 mercators/pixel
        zoomRect.size.width = [self screenBounds].size.width * 2.0;
        zoomRect.size.height = [self screenBounds].size.height * 2.0;
        if ((myPoint.easting / [self screenBounds].size.width) < (myPoint.northing / [self screenBounds].size.height))
        {
            if ((myPoint.northing / ([self screenBounds].size.height - pixelBuffer)) > 1)
            {
                zoomRect.size.width = [self screenBounds].size.width * (myPoint.northing / ([self screenBounds].size.height - pixelBuffer));
                zoomRect.size.height = [self screenBounds].size.height * (myPoint.northing / ([self screenBounds].size.height - pixelBuffer));
            }
        }
        else
        {
            if ((myPoint.easting / ([self screenBounds].size.width - pixelBuffer)) > 1)
            {
                zoomRect.size.width = [self screenBounds].size.width * (myPoint.easting / ([self screenBounds].size.width - pixelBuffer));
                zoomRect.size.height = [self screenBounds].size.height * (myPoint.easting / ([self screenBounds].size.width - pixelBuffer));
            }
        }
        myOrigin.easting = myOrigin.easting - (zoomRect.size.width / 2);
        myOrigin.northing = myOrigin.northing - (zoomRect.size.height / 2);
        RMLog(@"Origin is calculated at: %f, %f", [projection projectedPointToCoordinate:myOrigin].latitude, [projection projectedPointToCoordinate:myOrigin].longitude);

        zoomRect.origin = myOrigin;
        [self zoomWithProjectedBounds:zoomRect];
    }

    [self moveBy:CGSizeZero andCorrectAllSublayers:YES];
}

- (void)zoomWithProjectedBounds:(RMProjectedRect)bounds
{
    [self setProjectedBounds:bounds];
    [tileLoader clearLoadedBounds];
    [tileLoader updateLoadedImages];
    [overlay correctPositionOfAllSublayers];
}

#pragma mark -
#pragma mark Cache

- (void)removeAllCachedImages
{
    [tileCache removeAllCachedImages];
}

#pragma mark -
#pragma mark Properties

- (void)setTileSource:(id <RMTileSource>)newTileSource
{
    if (tileSource == newTileSource)
        return;

    minZoom = newTileSource.minZoom;
    maxZoom = newTileSource.maxZoom + 1;

    [self setZoom:[self zoom]]; // setZoom clamps zoom level to min/max limits

    [tileSource autorelease];
    tileSource = [newTileSource retain];

    if (([tileSource minZoom] - minZoom) <= 1.0) {
        RMLog(@"Graphics & memory are overly taxed if [contents minZoom] is more than 1.5 smaller than [tileSource minZoom]");
    }

    [projection release];
    projection = [[tileSource projection] retain];

    [mercatorToTileProjection release];
    mercatorToTileProjection = [[tileSource mercatorToTileProjection] retain];
    tileSourceProjectedBounds = (RMProjectedRect)[self projectedRectFromLatitudeLongitudeBounds:[tileSource latitudeLongitudeBoundingBox]];

    [imagesOnScreen setTileCache:tileCache];
    [imagesOnScreen setTileSource:tileSource];
    [imagesOnScreen setCurrentCacheKey:[newTileSource uniqueTilecacheKey]];

    [tileLoader reset];
    [tileLoader reload];
}

- (id <RMTileSource>)tileSource
{
    return [[tileSource retain] autorelease];
}

- (void)setRenderer:(RMCoreAnimationRenderer *)newRenderer
{
    if (renderer == newRenderer)
        return;

    [imagesOnScreen setDelegate:newRenderer];

    [[renderer layer] removeFromSuperlayer];
    [renderer release];

    renderer = [newRenderer retain];
    if (renderer == nil)
        return;

    //	CGRect rect = [self screenBounds];
    //	RMLog(@"%f %f %f %f", rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
    [[renderer layer] setFrame:[self screenBounds]];

    if (background != nil)
        [self.layer insertSublayer:[renderer layer] above:background];
    else if (overlay != nil)
        [self.layer insertSublayer:[renderer layer] below:overlay];
    else
        [self.layer insertSublayer:[renderer layer] atIndex: 0];
}

- (RMCoreAnimationRenderer *)renderer
{
    return [[renderer retain] autorelease];
}

- (void)setBackground:(CALayer *)aLayer
{
    if (background == aLayer)
        return;

    if (background != nil) {
        [background release];
        [background removeFromSuperlayer];
    }

    background = [aLayer retain];
    if (background == nil)
        return;

    background.frame = [self screenBounds];

    if ([renderer layer] != nil)
        [self.layer insertSublayer:background below:[renderer layer]];
    else if (overlay != nil)
        [self.layer insertSublayer:background below:overlay];
    else
        [self.layer insertSublayer:[renderer layer] atIndex:0];
}

- (CALayer *)background
{
    return [[background retain] autorelease];
}

- (void)setOverlay:(RMMarkerLayer *)aLayer
{
    if (overlay == aLayer)
        return;

    if (overlay != nil)	{
        [overlay release];
        [overlay removeFromSuperlayer];
    }

    overlay = [aLayer retain];
    if (overlay == nil)
        return;

    overlay.frame = [self screenBounds];

    if ([renderer layer] != nil)
        [self.layer insertSublayer:overlay above:[renderer layer]];
    else if (background != nil)
        [self.layer insertSublayer:overlay above:background];
    else
        [self.layer insertSublayer:[renderer layer] atIndex:0];
}

- (RMMarkerLayer *)overlay
{
    return [[overlay retain] autorelease];
}

- (CLLocationCoordinate2D)mapCenterCoordinate
{
    return [projection projectedPointToCoordinate:[mercatorToScreenProjection projectedCenter]];
}

- (void)setMapCenterCoordinate:(CLLocationCoordinate2D)center
{
    [self moveToCoordinate:center];
}

- (RMProjectedPoint)mapCenterProjectedPoint
{
    return [mercatorToScreenProjection projectedCenter];
}

- (void)setMapCenterProjectedPoint:(RMProjectedPoint)projectedPoint
{
    if (![self tileSourceBoundsContainProjectedPoint:projectedPoint])
        return;

    [mercatorToScreenProjection setProjectedCenter:projectedPoint];
    [overlay correctPositionOfAllSublayers];
    [tileLoader reload];
    [overlay setNeedsDisplay];
}

- (RMProjectedRect)projectedBounds
{
    return [mercatorToScreenProjection projectedBounds];
}

- (void)setProjectedBounds:(RMProjectedRect)boundsRect
{
    [mercatorToScreenProjection setProjectedBounds:boundsRect];
}

- (RMTileRect)tileBounds
{
    return [mercatorToTileProjection projectRect:[mercatorToScreenProjection projectedBounds] atScale:[self scaledMetersPerPixel]];
}

- (CGRect)screenBounds
{
    if (mercatorToScreenProjection != nil)
        return [mercatorToScreenProjection screenBounds];
    else
        return CGRectZero;
}

- (float)metersPerPixel
{
    return [mercatorToScreenProjection metersPerPixel];
}

- (void)setMetersPerPixel:(float)newMPP
{
    float zoomFactor = self.metersPerPixel / newMPP;
    CGPoint pivot = CGPointZero;

    [mercatorToScreenProjection setMetersPerPixel:newMPP];
    [imagesOnScreen zoomByFactor:zoomFactor near:pivot];
    [tileLoader zoomByFactor:zoomFactor near:pivot];
    [overlay zoomByFactor:zoomFactor near:pivot];
    [overlay correctPositionOfAllSublayers];
}

- (float)scaledMetersPerPixel
{
    return [mercatorToScreenProjection metersPerPixel] / screenScale;
}

- (double)scaleDenominator
{
    double routemeMetersPerPixel = [self metersPerPixel];
    double iphoneMillimetersPerPixel = kiPhoneMilimeteresPerPixel;
    double truescaleDenominator =  routemeMetersPerPixel / (0.001 * iphoneMillimetersPerPixel);
    return truescaleDenominator;
}

- (void)setMaxZoom:(float)newMaxZoom
{
    maxZoom = newMaxZoom;
}

- (void)setMinZoom:(float)newMinZoom
{
    minZoom = newMinZoom;

    if (!tileSource || (([tileSource minZoom] - minZoom) <= 1.0)) {
        RMLog(@"Graphics & memory are overly taxed if [contents minZoom] is more than 1.5 smaller than [tileSource minZoom]");
    }
}

- (float)zoom
{
    return [mercatorToTileProjection calculateZoomFromScale:[mercatorToScreenProjection metersPerPixel]];
}

// if #zoom is outside of range #minZoom to #maxZoom, zoom level is clamped to that range.
- (void)setZoom:(float)zoom
{
    zoom = (zoom > maxZoom) ? maxZoom : zoom;
    zoom = (zoom < minZoom) ? minZoom : zoom;

    float scale = [mercatorToTileProjection calculateScaleFromZoom:zoom];
    [self setMetersPerPixel:scale];
}

- (RMTileImageSet *)imagesOnScreen
{
    return [[imagesOnScreen retain] autorelease];
}

- (RMTileLoader *)tileLoader
{
    return [[tileLoader retain] autorelease];
}

- (RMProjection *)projection
{
    return [[projection retain] autorelease];
}

- (id <RMMercatorToTileProjection>)mercatorToTileProjection
{
    return [[mercatorToTileProjection retain] autorelease];
}

- (RMMercatorToScreenProjection *)mercatorToScreenProjection
{
    return [[mercatorToScreenProjection retain] autorelease];
}

#pragma mark -
#pragma mark LatLng/Pixel translation functions

- (CGPoint)coordinateToPixel:(CLLocationCoordinate2D)latlong
{
    return [mercatorToScreenProjection projectProjectedPoint:[projection coordinateToProjectedPoint:latlong]];
}

- (CGPoint)coordinateToPixel:(CLLocationCoordinate2D)latlong withMetersPerPixel:(float)aScale
{
    return [mercatorToScreenProjection projectProjectedPoint:[projection coordinateToProjectedPoint:latlong] withMetersPerPixel:aScale];
}

- (RMTilePoint)coordinateToTilePoint:(CLLocationCoordinate2D)latlong withMetersPerPixel:(float)aScale
{
    return [mercatorToTileProjection project:[projection coordinateToProjectedPoint:latlong] atZoom:aScale];
}

- (CLLocationCoordinate2D)pixelToCoordinate:(CGPoint)aPixel
{
    return [projection projectedPointToCoordinate:[mercatorToScreenProjection projectScreenPointToProjectedPoint:aPixel]];
}

- (CLLocationCoordinate2D)pixelToCoordinate:(CGPoint)aPixel withMetersPerPixel:(float)aScale
{
    return [projection projectedPointToCoordinate:[mercatorToScreenProjection projectScreenPointToProjectedPoint:aPixel withMetersPerPixel:aScale]];
}

#pragma mark -
#pragma mark Markers and overlays

- (RMSphericalTrapezium)latitudeLongitudeBoundingBoxForScreen
{
    return [self latitudeLongitudeBoundingBoxFor:[mercatorToScreenProjection screenBounds]];
}

- (RMSphericalTrapezium)latitudeLongitudeBoundingBoxFor:(CGRect)rect
{
    RMSphericalTrapezium boundingBox;
    CGPoint northwestScreen = rect.origin;

    CGPoint southeastScreen;
    southeastScreen.x = rect.origin.x + rect.size.width;
    southeastScreen.y = rect.origin.y + rect.size.height;

    CGPoint northeastScreen, southwestScreen;
    northeastScreen.x = southeastScreen.x;
    northeastScreen.y = northwestScreen.y;
    southwestScreen.x = northwestScreen.x;
    southwestScreen.y = southeastScreen.y;

    CLLocationCoordinate2D northeastLL, northwestLL, southeastLL, southwestLL;
    northeastLL = [self pixelToCoordinate:northeastScreen];
    northwestLL = [self pixelToCoordinate:northwestScreen];
    southeastLL = [self pixelToCoordinate:southeastScreen];
    southwestLL = [self pixelToCoordinate:southwestScreen];

    boundingBox.northeast.latitude = fmax(northeastLL.latitude, northwestLL.latitude);
    boundingBox.southwest.latitude = fmin(southeastLL.latitude, southwestLL.latitude);

    // westerly computations:
    // -179, -178 -> -179 (min)
    // -179, 179  -> 179 (max)
    if (fabs(northwestLL.longitude - southwestLL.longitude) <= kMaxLong)
        boundingBox.southwest.longitude = fmin(northwestLL.longitude, southwestLL.longitude);
    else
        boundingBox.southwest.longitude = fmax(northwestLL.longitude, southwestLL.longitude);

    if (fabs(northeastLL.longitude - southeastLL.longitude) <= kMaxLong)
        boundingBox.northeast.longitude = fmax(northeastLL.longitude, southeastLL.longitude);
    else
        boundingBox.northeast.longitude = fmin(northeastLL.longitude, southeastLL.longitude);

    return boundingBox;
}

- (void)printDebuggingInformation
{
    [imagesOnScreen printDebuggingInformation];
}

- (short)tileDepth
{
    return imagesOnScreen.tileDepth;
}

- (void)setTileDepth:(short)value
{
    imagesOnScreen.tileDepth = value;
}

- (BOOL)fullyLoaded
{
    return imagesOnScreen.fullyLoaded;
}

#pragma mark Event handling

- (RMGestureDetails)gestureDetails:(NSSet *)touches
{
    RMGestureDetails gesture;
    gesture.center.x = gesture.center.y = 0;
    gesture.averageDistanceFromCenter = 0;
    gesture.angle = 0.0;

    int interestingTouches = 0;

    for (UITouch *touch in touches)
    {
        if ([touch phase] != UITouchPhaseBegan
            && [touch phase] != UITouchPhaseMoved
            && [touch phase] != UITouchPhaseStationary)
            continue;
        // RMLog(@"phase = %d", [touch phase]);

        interestingTouches++;

        CGPoint location = [touch locationInView: self];

        gesture.center.x += location.x;
        gesture.center.y += location.y;
    }

    if (interestingTouches == 0)
    {
        gesture.center = lastGesture.center;
        gesture.numTouches = 0;
        gesture.averageDistanceFromCenter = 0.0f;
        return gesture;
    }

    //	RMLog(@"interestingTouches = %d", interestingTouches);

    gesture.center.x /= interestingTouches;
    gesture.center.y /= interestingTouches;

    for (UITouch *touch in touches)
    {
        if ([touch phase] != UITouchPhaseBegan
            && [touch phase] != UITouchPhaseMoved
            && [touch phase] != UITouchPhaseStationary)
            continue;

        CGPoint location = [touch locationInView: self];

        //		RMLog(@"For touch at %.0f, %.0f:", location.x, location.y);
        float dx = location.x - gesture.center.x;
        float dy = location.y - gesture.center.y;
        //		RMLog(@"delta = %.0f, %.0f  distance = %f", dx, dy, sqrtf((dx*dx) + (dy*dy)));
        gesture.averageDistanceFromCenter += sqrtf((dx*dx) + (dy*dy));
    }

    gesture.averageDistanceFromCenter /= interestingTouches;
    gesture.numTouches = interestingTouches;

    if ([touches count] == 2)
    {
        CGPoint first = [[[touches allObjects] objectAtIndex:0] locationInView:[self superview]];
        CGPoint second = [[[touches allObjects] objectAtIndex:1] locationInView:[self superview]];
        CGFloat height = second.y - first.y;
        CGFloat width = first.x - second.x;
        gesture.angle = atan2(height,width);
    }

    return gesture;
}

- (void)handleLongPress
{
    if (deceleration && _decelerationTimer != nil)
        return;

    if (_delegateHasLongSingleTapOnMap)
        [delegate longSingleTapOnMap:self at:_longPressPosition];
}

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [[touches allObjects] objectAtIndex:0];
    //Check if the touch hit a RMMarker subclass and if so, forward the touch event on
    //so it can be handled there
    id furthestLayerDown = [self.overlay hitTest:[touch locationInView:self]];
    if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
        if ([furthestLayerDown respondsToSelector:@selector(touchesBegan:withEvent:)]) {
            [furthestLayerDown performSelector:@selector(touchesBegan:withEvent:) withObject:touches withObject:event];
            return;
        }
    }

    //	RMLog(@"touchesBegan %d", [[event allTouches] count]);
    lastGesture = [self gestureDetails:[event allTouches]];

    if (deceleration && _decelerationTimer != nil) {
        [self stopDeceleration];
    }

    _longPressPosition = lastGesture.center;
    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];

    if (lastGesture.numTouches == 1) {
        CALayer* hit = [self.overlay hitTest:[touch locationInView:self]];
        if (!hit || ![hit isKindOfClass: [RMMarker class]]) {            
            [self performSelector:@selector(handleLongPress) withObject:nil afterDelay:0.5];
        }
    }
}

// \bug touchesCancelled should clean up, not pass event to markers
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [[touches allObjects] objectAtIndex:0];

    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];

    // Check if the touch hit a RMMarker subclass and if so, forward the touch event on
    // so it can be handled there
    id furthestLayerDown = [self.overlay hitTest:[touch locationInView:self]];
    if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
        if ([furthestLayerDown respondsToSelector:@selector(touchesCancelled:withEvent:)]) {
            [furthestLayerDown performSelector:@selector(touchesCancelled:withEvent:) withObject:touches withObject:event];
            return;
        }
    }

    // I don't understand what the difference between this and touchesEnded is.
    [self touchesEnded:touches withEvent:event];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [[touches allObjects] objectAtIndex:0];

    //Check if the touch hit a RMMarker subclass and if so, forward the touch event on
    //so it can be handled there
    id furthestLayerDown = [self.overlay hitTest:[touch locationInView:self]];
    if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
        if ([furthestLayerDown respondsToSelector:@selector(touchesEnded:withEvent:)]) {
            [furthestLayerDown performSelector:@selector(touchesEnded:withEvent:) withObject:touches withObject:event];
            return;
        }
    }
    NSInteger lastTouches = lastGesture.numTouches;

    // Calculate the gesture.
    lastGesture = [self gestureDetails:[event allTouches]];

    BOOL decelerating = NO;

    [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];

    if (touch.tapCount >= 2)
    {
        BOOL twoFingerTap = [touches count] >= 2;
        if (_delegateHasDoubleTapOnMap) {
            if (twoFingerTap) {
                if (_delegateHasDoubleTapTwoFingersOnMap) [delegate doubleTapTwoFingersOnMap:self at:lastGesture.center];
            } else {
                if (_delegateHasDoubleTapOnMap) [delegate doubleTapOnMap: self at:lastGesture.center];
            }
        } else {
            // Default behaviour matches built in maps.app
            float nextZoomFactor = 0;
            if (twoFingerTap) {
                nextZoomFactor = [self previousNativeZoomFactor];
            } else {
                nextZoomFactor = [self nextNativeZoomFactor];
            }
            if (nextZoomFactor != 0)
                [self zoomByFactor:nextZoomFactor near:[touch locationInView:self] animated:YES];
        }
    } else if (lastTouches == 1 && touch.tapCount != 1) {
        // deceleration
        if (deceleration && enableDragging)
        {
            CGPoint prevLocation = [touch previousLocationInView:self];
            CGPoint currLocation = [touch locationInView:self];
            CGSize touchDelta = CGSizeMake(currLocation.x - prevLocation.x, currLocation.y - prevLocation.y);
            [self startDecelerationWithDelta:touchDelta];
            decelerating = YES;
        }
    }

    if (touch.tapCount == 1) 
    {
        if (lastGesture.numTouches == 0)
        {
            CALayer *hit = [self.overlay hitTest:[touch locationInView:self]];
            // RMLog(@"LAYER of type %@",[hit description]);

            if (hit != nil)
            {
                CALayer *superlayer = [hit superlayer];

                // See if tap was on a marker or marker label and send delegate protocol method
                if ([hit isKindOfClass: [RMMarker class]]) {
                    if (_delegateHasTapOnMarker) {
                        [delegate tapOnMarker:(RMMarker *)hit onMap:self];
                    }
                } else if (superlayer != nil && [superlayer isKindOfClass: [RMMarker class]]) {
                    if (_delegateHasTapOnLabelForMarker) {
                        [delegate tapOnLabelForMarker:(RMMarker *)superlayer onMap:self];
                    }
                } else if ([superlayer superlayer] != nil && [[superlayer superlayer] isKindOfClass:[RMMarker class]]) {
                    if (_delegateHasTapOnLabelForMarker) {
                        [delegate tapOnLabelForMarker:(RMMarker *)[superlayer superlayer] onMap:self];
                    }
                } else if (_delegateHasSingleTapOnMap) {
                    [delegate singleTapOnMap:self at:[touch locationInView:self]];
                }
            }
        }
        else if (!enableDragging && (lastGesture.numTouches == 1))
        {
            float prevZoomFactor = [self previousNativeZoomFactor];
            if (prevZoomFactor != 0)
                [self zoomByFactor:prevZoomFactor near:[touch locationInView:self] animated:YES];
        }
    }

    if (_delegateHasAfterMapTouch) [delegate afterMapTouch:self];
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [[touches allObjects] objectAtIndex:0];

    //Check if the touch hit a RMMarker subclass and if so, forward the touch event on
    //so it can be handled there
    id furthestLayerDown = [self.overlay hitTest:[touch locationInView:self]];
    if ([[furthestLayerDown class]isSubclassOfClass: [RMMarker class]]) {
        if ([furthestLayerDown respondsToSelector:@selector(touchesMoved:withEvent:)]) {
            [furthestLayerDown performSelector:@selector(touchesMoved:withEvent:) withObject:touches withObject:event];
            return;
        }
    }

    RMGestureDetails newGesture = [self gestureDetails:[event allTouches]];
    CGPoint newLongPressPosition = newGesture.center;
    CGFloat dx = newLongPressPosition.x - _longPressPosition.x;
    CGFloat dy = newLongPressPosition.y - _longPressPosition.y;
    if (sqrt(dx*dx + dy*dy) > 5.0)
        [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(handleLongPress) object:nil];

    CALayer *hit = [self.overlay hitTest:[touch locationInView:self]];
//	RMLog(@"LAYER of type %@",[hit description]);

    if (hit != nil)
    {   
        if ([hit isKindOfClass: [RMMarker class]]) {
            if (!_delegateHasShouldDragMarker || (_delegateHasShouldDragMarker && [delegate mapView:self shouldDragMarker:(RMMarker *)hit withEvent:event])) {
                if (_delegateHasDidDragMarker) {
                    [delegate mapView:self didDragMarker:(RMMarker *)hit withEvent:event];
                    return;
                }
            }
        }
    }

    if (newGesture.numTouches == lastGesture.numTouches)
    {
        CGSize delta;
        delta.width = newGesture.center.x - lastGesture.center.x;
        delta.height = newGesture.center.y - lastGesture.center.y;

        if (enableZoom && newGesture.numTouches > 1)
        {
            NSAssert (lastGesture.averageDistanceFromCenter > 0.0f && newGesture.averageDistanceFromCenter > 0.0f,
                      @"Distance from center is zero despite >1 touches on the screen");

            double zoomFactor = newGesture.averageDistanceFromCenter / lastGesture.averageDistanceFromCenter;

            [self moveBy:delta];
            [self zoomByFactor:zoomFactor near:newGesture.center];
        }
        else if (enableDragging)
        {
            [self moveBy:delta];
        }
    }

    lastGesture = newGesture;
}

#pragma mark Deceleration

- (void)startDecelerationWithDelta:(CGSize)delta
{
    if (fabsf(delta.width) >= 1.0f && fabsf(delta.height) >= 1.0f)
    {
        _decelerationDelta = delta;
        if ( !_decelerationTimer ) {
            _decelerationTimer = [NSTimer scheduledTimerWithTimeInterval:kDecelerationTimerInterval
                                                                  target:self
                                                                selector:@selector(incrementDeceleration:) 
                                                                userInfo:nil 
                                                                 repeats:YES];
        }
    }
}

- (void)incrementDeceleration:(NSTimer *)timer
{
    if (fabsf(_decelerationDelta.width) < kMinDecelerationDelta && fabsf(_decelerationDelta.height) < kMinDecelerationDelta) {
        [self stopDeceleration];
        return;
    }

    // avoid calling delegate methods? design call here
    [self moveBy:_decelerationDelta isAnimationStep:YES];

    _decelerationDelta.width *= self.decelerationFactor;
    _decelerationDelta.height *= self.decelerationFactor;
}

- (void)stopDeceleration
{
    if (_decelerationTimer != nil) {
        [_decelerationTimer invalidate]; _decelerationTimer = nil;
        _decelerationDelta = CGSizeZero;

        // call delegate methods; design call (see above)
        [self moveBy:CGSizeZero];
    }

    if (_delegateHasAfterMapMoveDeceleration)
        [delegate afterMapMoveDeceleration:self];
}

@end