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