Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorv.mikhaylenko <v.mikhaylenko@corp.mail.ru>2015-05-25 16:13:04 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:39 +0300
commit279c4e252521359d59d76e533b7cde41a74183e9 (patch)
tree614a5a8462f69c0b81342d7fbcf19f49cf2e8f18 /iphone/Maps/Classes/MWMDirectionView.h
parent279e4649433bcbc06e888d557f77d7dd8708fa98 (diff)
[ios] Made place page for iPad. Added big compas view. Added bookmarks edit.
Diffstat (limited to 'iphone/Maps/Classes/MWMDirectionView.h')
-rw-r--r--iphone/Maps/Classes/MWMDirectionView.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/MWMDirectionView.h b/iphone/Maps/Classes/MWMDirectionView.h
new file mode 100644
index 0000000000..9bab8d0b55
--- /dev/null
+++ b/iphone/Maps/Classes/MWMDirectionView.h
@@ -0,0 +1,21 @@
+//
+// MWMDirectionView.h
+// Maps
+//
+// Created by v.mikhaylenko on 27.05.15.
+// Copyright (c) 2015 MapsWithMe. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@interface MWMDirectionView : UIView
+
+@property (weak, nonatomic) IBOutlet UILabel * titleLabel;
+@property (weak, nonatomic) IBOutlet UILabel * typeLabel;
+@property (weak, nonatomic) IBOutlet UILabel * distanceLabel;
+@property (weak, nonatomic) IBOutlet UIImageView * directionArrow;
+@property (weak, nonatomic) IBOutlet UIView * contentView;
+
++ (MWMDirectionView *)directionViewForViewController:(UIViewController *)viewController;
+
+@end