1

我有以下代码,它工作正常,显示带有 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;
4

0 回答 0