21 lines
0 B
21 lines
0 B
![]()
2 years ago
|
//
|
||
|
// CustomAnnotationView.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2017/11/6.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <MapKit/MapKit.h>
|
||
|
|
||
|
@interface CustomAnnotationView : MKAnnotationView
|
||
|
-(void)setImageWithURLString:(NSString*)urlString;
|
||
|
-(void)setImageWithString:(NSString*)string;
|
||
|
/**
|
||
|
旋转的弧度
|
||
|
|
||
|
@param radian 弧度
|
||
|
*/
|
||
|
-(void)setRadian:(double)radian;
|
||
|
@end
|