another.im-ios/Monal/Classes/MLChatMapsCell.h

24 lines
461 B
C
Raw Permalink Normal View History

2024-11-18 14:53:52 +00:00
//
// MLChatMapsCell.h
// Monal
//
// Created by Friedrich Altheide on 29.03.20.
// Copyright © 2020 Monal.im. All rights reserved.
//
#import <MapKit/MapKit.h>
#import "MLBaseCell.h"
@interface MLChatMapsCell : MLBaseCell
@property (nonatomic, weak) IBOutlet MKMapView *map;
@property (nonatomic) CLLocationDegrees longitude;
@property (nonatomic) CLLocationDegrees latitude;
-(void) loadCoordinatesWithCompletion:(void (^)(void))completion;
@end