在進(jìn)行地圖應(yīng)用開發(fā)的時(shí)候經(jīng)常使用圖片自定義標(biāo)記物历恐。但是如果有這樣的需求:根據(jù)服務(wù)器返回?cái)?shù)據(jù)的時(shí)間距當(dāng)前時(shí)間的遠(yuǎn)近展示不同透明度的標(biāo)記物,該怎么辦呢?
我是這樣實(shí)現(xiàn)的来颤。首先要實(shí)現(xiàn)自定義的annotation嗡午,應(yīng)該先創(chuàng)建一個(gè)遵守<MKAnnotation>的類囤躁,頭文件應(yīng)該是這樣的:
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface HZYAnnotation : NSObject<MKAnnotation>
@property (nonatomic) CLLocationCoordinate2D coordinate;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *subtitle;
@end
為了實(shí)現(xiàn)我們的需求,現(xiàn)在給這個(gè)類添加一個(gè)屬性荔睹,用來(lái)記錄標(biāo)記物的透明度
@property (nonatomic, assign) CGFloat alpha;
接下來(lái)狸演,在mapView所在的控制器中實(shí)現(xiàn)MKMapView的這個(gè)代理方法
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(HZYAnnotation *)annotation{
static NSString *ID = @"anno";
if ([annotation isKindOfClass:[MKUserLocation class]]) {
return nil;
}
MKAnnotationView *annoView = [mapView dequeueReusableAnnotationViewWithIdentifier:ID];
if (annoView == nil) {
annoView = [[MKAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:ID];
}
annoView.canShowCallout = YES;
annoView.image = [[UIImage imageNamed:@"danger_dot"] imageByApplyingAlpha:annotation.alpha];
return annoView;
}
亮點(diǎn)就在倒數(shù)第三行,annoView的image僻他,通過(guò)annotation的alpha屬性設(shè)置了透明度宵距。為什么不直接設(shè)置annoView的alpha?因?yàn)檫@樣做會(huì)導(dǎo)致Callout(就是點(diǎn)擊標(biāo)記物出現(xiàn)的小標(biāo)簽)的透明度一起變化吨拗。
最后满哪,在添加標(biāo)記物的方法中給annotation的alpha屬性賦值就可以了婿斥,例如這樣:
HZYAnnotation *annotation = [[HZYAnnotation alloc]init];
CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(anno.latitude, anno.longitude);
annotation.coordinate = coordinate;
annotation.title = anno.addr;
annotation.subtitle = [self caculateHourBefore:anno.time];
annotation.alpha = 1 - (currentDate - anno.time) / (60 * 60 * 4.0);
[self.mapView addAnnotation:annotation];
擴(kuò)展開來(lái),通過(guò)這個(gè)思路哨鸭,你可以為HZYAnnotion這個(gè)類添加任何屬性民宿,并據(jù)此來(lái)改變標(biāo)記物的樣式。