たとえば、会社名を使用して、地図上で会社を見つけたい簡単な地図を作成しています。例:「AppleInc。」。
どうすればこれができるか知っていますか?
どうもありがとう!
REgards、Yashu
たとえば、会社名を使用して、地図上で会社を見つけたい簡単な地図を作成しています。例:「AppleInc。」。
どうすればこれができるか知っていますか?
どうもありがとう!
REgards、Yashu
MKAnnotationプロトコルを実装するクラスが必要です。これが例です
@interface MapPin : NSObject<MKAnnotation> {
CLLocationCoordinate2D coordinate;
NSString *title;
NSString *subtitle;
}
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
@property (nonatomic, readonly) NSString *title;
@property (nonatomic, readonly) NSString *subtitle;
- (id)initWithCoordinates:(CLLocationCoordinate2D)location placeName:(NSString *)placeName description:(NSString *)description;
@end
実装は次のとおりです。
@implementation MapPin
@synthesize coordinate;
@synthesize title;
@synthesize subtitle;
- (id)initWithCoordinates:(CLLocationCoordinate2D)location placeName:placeName description:description {
self = [super init];
if (self != nil) {
coordinate = location;
title = placeName;
[title retain];
subtitle = description;
[subtitle retain];
}
return self;
}
- (void)dealloc {
[title release];
[subtitle release];
[super dealloc];
}
@end
次に、MapViewで、次のように会社の場所を追加する必要があります。
CLLocationCoordinate2D coord = [[[CLLocation alloc] initWithLatitude:35.936902 longitude:-79.024953] coordinate];//Here you need to mention your company latitude and longitude
MapPin *pin = [[MapPin alloc] initWithCoordinates:coord placeName:@"Apple Inc" description:@""];
[map addAnnotation:pin];
これがお役に立てば幸いです。