4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
24 lines
612 B
Objective-C
24 lines
612 B
Objective-C
//
|
|
// PastquakesAnnotation.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 04/11/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <MapKit/MapKit.h>
|
|
#import "Costanti.h"
|
|
|
|
@interface PastquakesAnnotation : NSObject <MKAnnotation>
|
|
|
|
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
|
|
@property (nonatomic, copy) NSString *title;
|
|
@property (nonatomic, readonly) int intensita;
|
|
|
|
-(id)initWithTitle:(NSString *)title location:(CLLocationCoordinate2D )coordinate intensita:(int)intensita;
|
|
-(MKAnnotationView *)annotationView ;
|
|
|
|
|
|
@end
|