当用户放大或缩小时,Route-Me RMMarker缩放标记大小

时间:2012-11-09 20:10:18

标签: objective-c route-me

我有以下代码,它工作正常,显示路由我的标记,但我正在寻找一种方法来调整每次用户放大或缩小地图时标记的大小(例如,标记变大时放大时放大并变小)。我查看了“newMarker.contentsSize”的功能,但它似乎没有做任何事情。

是否有允许此功能的功能?

RMMarker *newMarker;
NSString *fileLocation;
fileLocation = [[NSBundle mainBundle] pathForResource:@"marker-blue" ofType:@"png"];
UIImage *startImage = [[UIImage alloc] initWithContentsOfFile:fileLocation];

newLocation.latitude = 47.580;
newLocation.longitude = -122.333;   
newMarker = [[RMMarker alloc] initWithUIImage:startImage anchorPoint:CGPointMake(0.5, 1.0)];
[mv.contents.markerManager addMarker:newMarker AtLatLong:newLocation];
newMarker = nil;

0 个答案:

没有答案