RMMapContents.m
32 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
//
// RMMapContents.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 "RMGlobalConstants.h"
#import "RMMapContents.h"
#import "RMMapView.h"
#import "RMFoundation.h"
#import "RMProjection.h"
#import "RMMercatorToScreenProjection.h"
#import "RMMercatorToTileProjection.h"
#import "RMTileSource.h"
#import "RMTileLoader.h"
#import "RMTileImageSet.h"
#import "RMOpenStreetMapSource.h"
#import "RMCoreAnimationRenderer.h"
#import "RMCachedTileSource.h"
#import "RMLayerCollection.h"
#import "RMMarkerManager.h"
#import "RMMarker.h"
@interface RMMapContents (PrivateMethods)
- (void)animatedZoomStep:(NSTimer *)timer;
@end
@implementation RMMapContents (Internal)
BOOL delegateHasRegionUpdate;
@end
@implementation RMMapContents
@synthesize boundingMask;
@synthesize minZoom;
@synthesize maxZoom;
@synthesize screenScale;
@synthesize markerManager;
#pragma mark --- begin constants ----
#define kZoomAnimationStepTime 0.03f
#define kZoomAnimationAnimationTime 0.1f
#define kiPhoneMilimeteresPerPixel .1543
#define kZoomRectPixelBuffer 50
#pragma mark --- end constants ----
#pragma mark Initialisation
- (id)initWithView: (UIView*) view
{
LogMethod();
CLLocationCoordinate2D here;
here.latitude = kDefaultInitialLatitude;
here.longitude = kDefaultInitialLongitude;
return [self initWithView:view
tilesource:[[RMOpenStreetMapSource alloc] init]
centerLatLon:here
zoomLevel:kDefaultInitialZoomLevel
maxZoomLevel:kDefaultMaximumZoomLevel
minZoomLevel:kDefaultMinimumZoomLevel
backgroundImage:nil];
}
- (id)initWithView: (UIView*) view
tilesource:(id<RMTileSource>)newTilesource
{
LogMethod();
CLLocationCoordinate2D here;
here.latitude = kDefaultInitialLatitude;
here.longitude = kDefaultInitialLongitude;
return [self initWithView:view
tilesource:newTilesource
centerLatLon:here
zoomLevel:kDefaultInitialZoomLevel
maxZoomLevel:kDefaultMaximumZoomLevel
minZoomLevel:kDefaultMinimumZoomLevel
backgroundImage:nil];
}
- (id)initWithView:(UIView*)newView
tilesource:(id<RMTileSource>)newTilesource
centerLatLon:(CLLocationCoordinate2D)initialCenter
zoomLevel:(float)initialZoomLevel
maxZoomLevel:(float)maxZoomLevel
minZoomLevel:(float)minZoomLevel
backgroundImage:(UIImage *)backgroundImage
{
LogMethod();
if (![super init])
return nil;
NSAssert1([newView isKindOfClass:[RMMapView class]], @"view %@ must be a subclass of RMMapView", newView);
[(RMMapView *)newView setContents:self];
tileSource = nil;
projection = nil;
mercatorToTileProjection = nil;
renderer = nil;
imagesOnScreen = nil;
tileLoader = nil;
screenScale = 1.0;
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
{
Class screenClass = NSClassFromString(@"UIScreen");
if ( screenClass != Nil)
{
id scale = [[screenClass mainScreen] valueForKey:@"scale"];
screenScale = [scale floatValue];
}
}
boundingMask = RMMapMinWidthBound;
mercatorToScreenProjection = [[RMMercatorToScreenProjection alloc] initFromProjection:[newTilesource projection] ToScreenBounds:[newView bounds]];
layer = [[newView layer] retain];
[self setMinZoom:minZoomLevel];
[self setMaxZoom:maxZoomLevel];
[self setTileSource:newTilesource];
[self setRenderer: [[[RMCoreAnimationRenderer alloc] initWithContent:self] autorelease]];
imagesOnScreen = [[RMTileImageSet alloc] initWithDelegate:renderer];
[imagesOnScreen setTileSource:tileSource];
tileLoader = [[RMTileLoader alloc] initWithContent:self];
[tileLoader setSuppressLoading:YES];
[self setZoom:initialZoomLevel];
[self moveToLatLong:initialCenter];
[tileLoader setSuppressLoading:NO];
/// \bug TODO: Make a nice background class
RMMapLayer *theBackground = [[RMMapLayer alloc] init];
[self setBackground:theBackground];
[theBackground release];
RMLayerCollection *theOverlay = [[RMLayerCollection alloc] initForContents:self];
[self setOverlay:theOverlay];
[theOverlay release];
markerManager = [[RMMarkerManager alloc] initWithContents:self];
[newView setNeedsDisplay];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleMemoryWarningNotification:)
name:UIApplicationDidReceiveMemoryWarningNotification
object:nil];
RMLog(@"Map contents initialised. view: %@ tileSource %@ renderer %@", newView, tileSource, renderer);
return self;
}
/// deprecated at any moment after release 0.5
- (id) initForView: (UIView*) view
{
WarnDeprecated();
return [self initWithView:view];
}
/// deprecated at any moment after release 0.5
- (id) initForView: (UIView*) view WithLocation:(CLLocationCoordinate2D)latlong
{
WarnDeprecated();
LogMethod();
id<RMTileSource> _tileSource = [[RMOpenStreetMapSource alloc] init];
RMMapRenderer *_renderer = [[RMCoreAnimationRenderer alloc] initWithContent:self];
id mapContents = [self initForView:view WithTileSource:_tileSource WithRenderer:_renderer LookingAt:latlong];
[_tileSource release];
[_renderer release];
return mapContents;
}
/// deprecated at any moment after release 0.5
- (id) initForView: (UIView*) view WithTileSource: (id<RMTileSource>)_tileSource WithRenderer: (RMMapRenderer*)_renderer LookingAt:(CLLocationCoordinate2D)latlong
{
WarnDeprecated();
LogMethod();
if (![super init])
return nil;
NSAssert1([view isKindOfClass:[RMMapView class]], @"view %@ must be a subclass of RMMapView", view);
self.boundingMask = RMMapMinWidthBound;
// targetView = view;
mercatorToScreenProjection = [[RMMercatorToScreenProjection alloc] initFromProjection:[_tileSource projection] ToScreenBounds:[view bounds]];
tileSource = nil;
projection = nil;
mercatorToTileProjection = nil;
renderer = nil;
imagesOnScreen = nil;
tileLoader = nil;
layer = [[view layer] retain];
[self setTileSource:_tileSource];
[self setRenderer:_renderer];
imagesOnScreen = [[RMTileImageSet alloc] initWithDelegate:renderer];
[imagesOnScreen setTileSource:tileSource];
tileLoader = [[RMTileLoader alloc] initWithContent:self];
[tileLoader setSuppressLoading:YES];
[self setMinZoom:kDefaultMinimumZoomLevel];
[self setMaxZoom:kDefaultMaximumZoomLevel];
[self setZoom:kDefaultInitialZoomLevel];
[self moveToLatLong:latlong];
[tileLoader setSuppressLoading:NO];
/// \bug TODO: Make a nice background class
RMMapLayer *theBackground = [[RMMapLayer alloc] init];
[self setBackground:theBackground];
[theBackground release];
RMLayerCollection *theOverlay = [[RMLayerCollection alloc] initForContents:self];
[self setOverlay:theOverlay];
[theOverlay release];
markerManager = [[RMMarkerManager alloc] initWithContents:self];
[view setNeedsDisplay];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleMemoryWarningNotification:)
name:UIApplicationDidReceiveMemoryWarningNotification
object:nil];
RMLog(@"Map contents initialised. view: %@ tileSource %@ renderer %@", view, tileSource, renderer);
return self;
}
- (void)setFrame:(CGRect)frame
{
CGRect bounds = CGRectMake(0, 0, frame.size.width, frame.size.height);
[mercatorToScreenProjection setScreenBounds:bounds];
background.frame = bounds;
layer.frame = frame;
overlay.frame = bounds;
[tileLoader clearLoadedBounds];
[tileLoader updateLoadedImages];
[renderer setFrame:frame];
[overlay correctPositionOfAllSublayers];
}
-(void) dealloc
{
LogMethod();
[[NSNotificationCenter defaultCenter] removeObserver:self];
[imagesOnScreen cancelLoading];
[self setRenderer:nil];
[imagesOnScreen release];
[tileLoader release];
[projection release];
[mercatorToTileProjection release];
[mercatorToScreenProjection release];
[tileSource release];
[self setOverlay:nil];
[self setBackground:nil];
[layer release];
[markerManager release];
[super dealloc];
}
- (void)handleMemoryWarningNotification:(NSNotification *)notification
{
[self didReceiveMemoryWarning];
}
- (void) didReceiveMemoryWarning
{
LogMethod();
[tileSource didReceiveMemoryWarning];
}
#pragma mark Forwarded Events
- (void)moveToLatLong: (CLLocationCoordinate2D)latlong
{
RMProjectedPoint aPoint = [[self projection] latLongToPoint:latlong];
[self moveToProjectedPoint: aPoint];
}
- (void)moveToProjectedPoint: (RMProjectedPoint)aPoint
{
[mercatorToScreenProjection setProjectedCenter:aPoint];
[overlay correctPositionOfAllSublayers];
[tileLoader reload];
[renderer setNeedsDisplay];
[overlay setNeedsDisplay];
}
- (void)moveBy: (CGSize) delta
{
[mercatorToScreenProjection moveScreenBy:delta];
[imagesOnScreen moveBy:delta];
[tileLoader moveBy:delta];
[overlay moveBy:delta];
[overlay correctPositionOfAllSublayers];
[renderer setNeedsDisplay];
}
/// \bug doesn't really adjust anything, just makes a computation. CLANG flags some dead assignments (write-only variables)
- (float)adjustZoomForBoundingMask:(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;
//newMPP = self.metersPerPixel / zoomFactor;
//newMapContentsWidth = mercatorBounds.size.width / newMPP;
}
}
// 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;
//newMPP = self.metersPerPixel / zoomFactor;
//newMapContentsHeight = mercatorBounds.size.height / newMPP;
}
}
//[self adjustMapPlacementWithScale:newMPP];
return zoomFactor;
}
/// This currently is not called because it does not handle the case when the map is continous or not continous. At a certain scale
/// you can continuously move to the west or east until you get to a certain scale level that simply shows the entire world.
- (void)adjustMapPlacementWithScale:(float)aScale
{
CGSize adjustmentDelta = {0.0, 0.0};
RMLatLong rightEdgeLatLong = {0, kMaxLong};
RMLatLong leftEdgeLatLong = {0,- kMaxLong};
CGPoint rightEdge = [self latLongToPixel:rightEdgeLatLong withMetersPerPixel:aScale];
CGPoint leftEdge = [self latLongToPixel:leftEdgeLatLong withMetersPerPixel:aScale];
//CGPoint topEdge = [self latLongToPixel:myLatLong withMetersPerPixel:aScale];
//CGPoint bottomEdge = [self latLongToPixel:myLatLong withMetersPerPixel:aScale];
CGRect containerBounds = [self screenBounds];
if ( rightEdge.x < containerBounds.size.width )
{
adjustmentDelta.width = containerBounds.size.width - rightEdge.x;
[self moveBy:adjustmentDelta];
}
if ( leftEdge.x > containerBounds.origin.x )
{
adjustmentDelta.width = containerBounds.origin.x - leftEdge.x;
[self moveBy:adjustmentDelta];
}
}
/// \bug this is a no-op, not a clamp, if new zoom would be outside of minzoom/maxzoom range
- (void)zoomByFactor: (float) zoomFactor near:(CGPoint) pivot
{
//[self zoomByFactor:zoomFactor near:pivot animated:NO];
zoomFactor = [self adjustZoomForBoundingMask:zoomFactor];
//RMLog(@"Zoom Factor: %lf for Zoom:%f", zoomFactor, [self zoom]);
// 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];
[renderer setNeedsDisplay];
}
}
- (void)zoomByFactor: (float) zoomFactor near:(CGPoint) pivot animated:(BOOL) animated
{
[self zoomByFactor:zoomFactor near:pivot animated:animated withCallback:nil];
}
- (void)zoomByFactor: (float) zoomFactor near:(CGPoint) pivot animated:(BOOL) animated withCallback:(id<RMMapContentsAnimationCallback>)callback
{
zoomFactor = [self adjustZoomForBoundingMask:zoomFactor];
float zoomDelta = log2f(zoomFactor);
float targetZoom = zoomDelta + [self zoom];
if (animated)
{
// goal is to complete the animation in animTime seconds
static const float stepTime = kZoomAnimationStepTime;
static const float animTime = kZoomAnimationAnimationTime;
float nSteps = animTime / stepTime;
float zoomIncr = zoomDelta / nSteps;
CFDictionaryRef pivotDictionary = CGPointCreateDictionaryRepresentation(pivot);
/// \bug magic string literals
NSDictionary *userInfo = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithFloat:zoomIncr], @"zoomIncr",
[NSNumber numberWithFloat:targetZoom], @"targetZoom",
pivotDictionary, @"pivot",
callback, @"callback", nil];
CFRelease(pivotDictionary);
[NSTimer scheduledTimerWithTimeInterval:stepTime
target:self
selector:@selector(animatedZoomStep:)
userInfo:userInfo
repeats:YES];
}
else
{
if (targetZoom == [self zoom]){
return;
}
// clamp zoom to remain below or equal to maxZoom after zoomAfter will be applied
if(targetZoom > [self maxZoom]){
zoomFactor = exp2f([self maxZoom] - [self zoom]);
}
//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))
{
[mercatorToScreenProjection zoomScreenByFactor:zoomFactor near:pivot];
[imagesOnScreen zoomByFactor:zoomFactor near:pivot];
[tileLoader zoomByFactor:zoomFactor near:pivot];
[overlay zoomByFactor:zoomFactor near:pivot];
[renderer setNeedsDisplay];
}
else
{
if([self zoom] > [self maxZoom])
[self setZoom:[self maxZoom]];
if([self zoom] < [self minZoom])
[self setZoom:[self minZoom]];
}
}
}
/// \bug magic strings embedded in code
- (void)animatedZoomStep:(NSTimer *)timer
{
float zoomIncr = [[[timer userInfo] objectForKey:@"zoomIncr"] floatValue];
float targetZoom = [[[timer userInfo] objectForKey:@"targetZoom"] floatValue];
if ((zoomIncr > 0 && [self zoom] >= targetZoom) || (zoomIncr < 0 && [self zoom] <= targetZoom))
{
NSDictionary * userInfo = [[timer userInfo] retain];
[timer invalidate]; // ASAP
id<RMMapContentsAnimationCallback> callback = [userInfo objectForKey:@"callback"];
if (callback && [callback respondsToSelector:@selector(animationFinishedWithZoomFactor:near:)]) {
CGPoint pivot;
CGPointMakeWithDictionaryRepresentation((CFDictionaryRef)[userInfo objectForKey:@"pivot"], &pivot);
[callback animationFinishedWithZoomFactor:targetZoom near:pivot];
}
[userInfo release];
}
else
{
float zoomFactorStep = exp2f(zoomIncr);
CGPoint pivot;
CGPointMakeWithDictionaryRepresentation((CFDictionaryRef)[[timer userInfo] objectForKey:@"pivot"], &pivot);
[self zoomByFactor:zoomFactorStep near:pivot animated:NO];
}
}
- (void)zoomInToNextNativeZoomAt:(CGPoint) pivot
{
[self zoomInToNextNativeZoomAt:pivot animated:NO];
}
- (float)nextNativeZoomFactor
{
float newZoom = fmin(floorf([self zoom] + 1.0), [self maxZoom]);
return exp2f(newZoom - [self zoom]);
}
- (float)prevNativeZoomFactor
{
float newZoom = fmax(floorf([self zoom] - 1.0), [self minZoom]);
return exp2f(newZoom - [self zoom]);
}
/// \deprecated appears to be unused
- (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 zoomByFactor:factor near:pivot animated:animated];
}
/// \deprecated appears to be unused except by zoomOutToNextNativeZoomAt:
- (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 zoomByFactor:factor near:pivot animated:animated];
}
/// \deprecated appears to be unused
- (void)zoomOutToNextNativeZoomAt:(CGPoint) pivot {
[self zoomOutToNextNativeZoomAt: pivot animated: FALSE];
}
- (void) drawRect: (CGRect) aRect
{
[renderer drawRect:aRect];
}
-(void)removeAllCachedImages
{
[tileSource removeAllCachedImages];
}
#pragma mark Properties
- (void) setTileSource: (id<RMTileSource>)newTileSource
{
if (tileSource == newTileSource)
return;
RMCachedTileSource *newCachedTileSource = [RMCachedTileSource cachedTileSourceWithSource:newTileSource];
newCachedTileSource = [newCachedTileSource retain];
[tileSource release];
tileSource = newCachedTileSource;
NSAssert(([tileSource minZoom] - minZoom) <= 1.0, @"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];
[imagesOnScreen setTileSource:tileSource];
[tileLoader reset];
[tileLoader reload];
}
- (id<RMTileSource>) tileSource
{
return [[tileSource retain] autorelease];
}
- (void) setRenderer: (RMMapRenderer*) 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)
[layer insertSublayer:[renderer layer] above:background];
else if (overlay != nil)
[layer insertSublayer:[renderer layer] below:overlay];
else
[layer insertSublayer:[renderer layer] atIndex: 0];
}
- (RMMapRenderer *)renderer
{
return [[renderer retain] autorelease];
}
- (void) setBackground: (RMMapLayer*) 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)
[layer insertSublayer:background below:[renderer layer]];
else if (overlay != nil)
[layer insertSublayer:background below:overlay];
else
[layer insertSublayer:[renderer layer] atIndex: 0];
}
- (RMMapLayer *)background
{
return [[background retain] autorelease];
}
- (void) setOverlay: (RMLayerCollection*) 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)
[layer insertSublayer:overlay above:[renderer layer]];
else if (background != nil)
[layer insertSublayer:overlay above:background];
else
[layer insertSublayer:[renderer layer] atIndex: 0];
/* Test to make sure the overlay is working.
CALayer *testLayer = [[CALayer alloc] init];
[testLayer setFrame:CGRectMake(100, 100, 200, 200)];
[testLayer setBackgroundColor:[[UIColor brownColor] CGColor]];
RMLog(@"added test layer");
[overlay addSublayer:testLayer];*/
}
- (RMLayerCollection *)overlay
{
return [[overlay retain] autorelease];
}
- (CLLocationCoordinate2D) mapCenter
{
RMProjectedPoint aPoint = [mercatorToScreenProjection projectedCenter];
return [projection pointToLatLong:aPoint];
}
-(void) setMapCenter: (CLLocationCoordinate2D) center
{
[self moveToLatLong:center];
}
-(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 = newMPP / self.metersPerPixel;
CGPoint pivot = CGPointZero;
[mercatorToScreenProjection setMetersPerPixel:newMPP];
[imagesOnScreen zoomByFactor:zoomFactor near:pivot];
[tileLoader zoomByFactor:zoomFactor near:pivot];
[overlay zoomByFactor:zoomFactor near:pivot];
[overlay correctPositionOfAllSublayers];
[renderer setNeedsDisplay];
}
-(float) scaledMetersPerPixel
{
return [mercatorToScreenProjection metersPerPixel] / screenScale;
}
-(void)setMaxZoom:(float)newMaxZoom
{
maxZoom = newMaxZoom;
}
-(void)setMinZoom:(float)newMinZoom
{
minZoom = newMinZoom;
NSAssert(!tileSource || (([tileSource minZoom] - minZoom) <= 1.0), @"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];
}
- (CALayer *)layer
{
return [[layer retain] autorelease];
}
static BOOL _performExpensiveOperations = YES;
+ (BOOL) performExpensiveOperations
{
return _performExpensiveOperations;
}
+ (void) setPerformExpensiveOperations: (BOOL)p
{
if (p == _performExpensiveOperations)
return;
_performExpensiveOperations = p;
if (p)
[[NSNotificationCenter defaultCenter] postNotificationName:RMResumeExpensiveOperations object:self];
else
[[NSNotificationCenter defaultCenter] postNotificationName:RMSuspendExpensiveOperations object:self];
}
#pragma mark LatLng/Pixel translation functions
- (CGPoint)latLongToPixel:(CLLocationCoordinate2D)latlong
{
return [mercatorToScreenProjection projectXYPoint:[projection latLongToPoint:latlong]];
}
- (CGPoint)latLongToPixel:(CLLocationCoordinate2D)latlong withMetersPerPixel:(float)aScale
{
return [mercatorToScreenProjection projectXYPoint:[projection latLongToPoint:latlong] withMetersPerPixel:aScale];
}
- (RMTilePoint)latLongToTilePoint:(CLLocationCoordinate2D)latlong withMetersPerPixel:(float)aScale
{
return [mercatorToTileProjection project:[projection latLongToPoint:latlong] atZoom:aScale];
}
- (CLLocationCoordinate2D)pixelToLatLong:(CGPoint)aPixel
{
return [projection pointToLatLong:[mercatorToScreenProjection projectScreenPointToXY:aPixel]];
}
- (CLLocationCoordinate2D)pixelToLatLong:(CGPoint)aPixel withMetersPerPixel:(float)aScale
{
return [projection pointToLatLong:[mercatorToScreenProjection projectScreenPointToXY:aPixel withMetersPerPixel:aScale]];
}
- (double)scaleDenominator {
double routemeMetersPerPixel = [self metersPerPixel];
double iphoneMillimetersPerPixel = kiPhoneMilimeteresPerPixel;
double truescaleDenominator = routemeMetersPerPixel / (0.001 * iphoneMillimetersPerPixel) ;
return truescaleDenominator;
}
#pragma mark Zoom With Bounds
- (void)zoomWithLatLngBoundsNorthEast:(CLLocationCoordinate2D)ne SouthWest:(CLLocationCoordinate2D)sw
{
if(ne.latitude == sw.latitude && ne.longitude == sw.longitude)//There are no bounds, probably only one marker.
{
RMProjectedRect zoomRect;
RMProjectedPoint myOrigin = [projection latLongToPoint: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 zoomWithRMMercatorRectBounds: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 latLongToPoint:midpoint];
RMProjectedPoint nePoint = [projection latLongToPoint:ne];
RMProjectedPoint swPoint = [projection latLongToPoint: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 pointToLatLong:myOrigin].latitude, [projection pointToLatLong:myOrigin].longitude);
/*It gets all messed up if our origin is lower than the lowest place on the map, so we check.
if(myOrigin.northing < -19971868.880409)
{
myOrigin.northing = -19971868.880409;
}*/
zoomRect.origin = myOrigin;
[self zoomWithRMMercatorRectBounds:zoomRect];
}
}
- (void)zoomWithRMMercatorRectBounds:(RMProjectedRect)bounds
{
[self setProjectedBounds:bounds];
[overlay correctPositionOfAllSublayers];
[tileLoader clearLoadedBounds];
[tileLoader updateLoadedImages];
[renderer setNeedsDisplay];
}
#pragma mark Markers and overlays
// Move overlays stuff here - at the moment overlay stuff is above...
- (RMSphericalTrapezium) latitudeLongitudeBoundingBoxForScreen
{
CGRect rect = [mercatorToScreenProjection screenBounds];
return [self latitudeLongitudeBoundingBoxFor:rect];
}
- (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 pixelToLatLong:northeastScreen];
northwestLL = [self pixelToLatLong:northwestScreen];
southeastLL = [self pixelToLatLong:southeastScreen];
southwestLL = [self pixelToLatLong: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) tilesUpdatedRegion:(CGRect)region
{
if(delegateHasRegionUpdate)
{
RMSphericalTrapezium locationBounds = [self latitudeLongitudeBoundingBoxFor:region];
[tilesUpdateDelegate regionUpdate:locationBounds];
}
}
- (void) printDebuggingInformation
{
[imagesOnScreen printDebuggingInformation];
}
@dynamic tilesUpdateDelegate;
- (void) setTilesUpdateDelegate: (id<RMTilesUpdateDelegate>) _tilesUpdateDelegate
{
if (tilesUpdateDelegate == _tilesUpdateDelegate) return;
tilesUpdateDelegate= _tilesUpdateDelegate;
//RMLog(@"Delegate type:%@",[(NSObject *) tilesUpdateDelegate description]);
delegateHasRegionUpdate = [(NSObject*) tilesUpdateDelegate respondsToSelector: @selector(regionUpdate:)];
}
- (id<RMTilesUpdateDelegate>) tilesUpdateDelegate
{
return tilesUpdateDelegate;
}
- (void)setRotation:(float)angle
{
[overlay setRotationOfAllSublayers:(-angle)]; // rotate back markers and paths if theirs allowRotate=NO
}
- (short)tileDepth {
return imagesOnScreen.tileDepth;
}
- (void)setTileDepth:(short)value {
imagesOnScreen.tileDepth = value;
}
- (BOOL)fullyLoaded {
return imagesOnScreen.fullyLoaded;
}
@end