/MapView/Map/RMMapLayer.m

http://github.com/route-me/route-me · Objective C · 73 lines · 34 code · 11 blank · 28 comment · 9 complexity · 4e666679d4a0b0cfe4b8123f687e1bb1 MD5 · raw file

  1. //
  2. // RMMapLayer.m
  3. //
  4. // Copyright (c) 2008-2009, Route-Me Contributors
  5. // All rights reserved.
  6. //
  7. // Redistribution and use in source and binary forms, with or without
  8. // modification, are permitted provided that the following conditions are met:
  9. //
  10. // * Redistributions of source code must retain the above copyright notice, this
  11. // list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above copyright notice,
  13. // this list of conditions and the following disclaimer in the documentation
  14. // and/or other materials provided with the distribution.
  15. //
  16. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  17. // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  20. // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  23. // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  24. // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  25. // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  26. // POSSIBILITY OF SUCH DAMAGE.
  27. #import "RMMapLayer.h"
  28. #import "RMPixel.h"
  29. @implementation RMMapLayer
  30. - (id) init
  31. {
  32. if (![super init])
  33. return nil;
  34. return self;
  35. }
  36. - (id)initWithLayer:(id)layer
  37. {
  38. if (![super initWithLayer:layer])
  39. return nil;
  40. return self;
  41. }
  42. /// \bug why return nil for the "position" and "bounds" actionForKey? Does this do anything besides block Core Animation?
  43. - (id<CAAction>)actionForKey:(NSString *)key
  44. {
  45. if ([key isEqualToString:@"position"]
  46. || [key isEqualToString:@"bounds"])
  47. return nil;
  48. else return [super actionForKey:key];
  49. }
  50. - (void)moveBy: (CGSize) delta
  51. {
  52. self.position = RMTranslateCGPointBy(self.position, delta);
  53. }
  54. - (void)zoomByFactor: (float) zoomFactor near:(CGPoint) pivot
  55. {
  56. // a empty layer has size=(0,0) which cause divide by 0 if scaled
  57. if(self.bounds.size.width == 0.0 || self.bounds.size.height == 0.0)
  58. return;
  59. self.position = RMScaleCGPointAboutPoint(self.position, zoomFactor, pivot);
  60. self.bounds = RMScaleCGRectAboutPoint(self.bounds, zoomFactor, self.anchorPoint);
  61. }
  62. @end