Authored by Justin R. Miller

properly set marker scale based on source image

@@ -67,6 +67,7 @@ @@ -67,6 +67,7 @@
67 return nil; 67 return nil;
68 68
69 self.contents = (id)[image CGImage]; 69 self.contents = (id)[image CGImage];
  70 + self.contentsScale = image.scale;
70 self.bounds = CGRectMake(0, 0, image.size.width, image.size.height); 71 self.bounds = CGRectMake(0, 0, image.size.width, image.size.height);
71 self.anchorPoint = _anchorPoint; 72 self.anchorPoint = _anchorPoint;
72 73