You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
647 B
34 lines
647 B
// |
|
// RailAddressViewController.h |
|
// watch |
|
// |
|
// Created by xTT on 2017/7/13. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseTabViewController.h" |
|
#import <MapKit/MapKit.h> |
|
#import "Rail.h" |
|
|
|
@interface RailAddressViewController : baseTabViewController |
|
|
|
@property(weak ,nonatomic) IBOutlet MKMapView *mapView; |
|
|
|
/** |
|
搜索栏 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UISearchBar *searchBar; |
|
|
|
@property (strong, nonatomic) Rail *infoRail; |
|
|
|
|
|
// 滑动块 |
|
@property (strong, nonatomic) IBOutlet UISlider *sliderView; |
|
|
|
/** |
|
电子围栏的距离范围 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UILabel *railRangeLabel; |
|
|
|
|
|
@end
|
|
|