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.
38 lines
868 B
38 lines
868 B
![]()
2 years ago
|
//
|
||
|
// MapViewController.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by xTT on 2017/7/3.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "baseViewController.h"
|
||
|
#import <MapKit/MapKit.h>
|
||
|
|
||
|
#import "WTListButton.h"
|
||
|
|
||
|
@interface MapViewController : baseViewController
|
||
|
|
||
|
@property(weak ,nonatomic) IBOutlet MKMapView *mapView;
|
||
|
|
||
|
|
||
|
//@property (strong, nonatomic) NSMutableArray *mapPoints;//设备轨迹点数组
|
||
|
//放大和缩小按钮的 View
|
||
|
@property (strong, nonatomic) IBOutlet UIView *zoomBtnView;
|
||
|
//放大按钮
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *addZoomBtn;
|
||
|
//缩小按钮
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *subtractZoomBtn;
|
||
|
|
||
|
/// 定位按钮
|
||
|
@property(weak ,nonatomic) IBOutlet UIButton *btn_CurLocation;
|
||
|
|
||
|
|
||
|
@property(weak ,nonatomic) IBOutlet UIButton *btn_UserLocation;
|
||
|
|
||
|
|
||
|
|
||
|
@property(weak ,nonatomic) IBOutlet UIView *adIconSuperView;
|
||
|
|
||
|
@end
|