单军华
2017-07-12 20d1260d26b028897f3c0935c12fc35aa37b2e93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  UserSignPage.h
//  istanbul
//
//  Created by WindShan on 2017/6/13.
//  Copyright © 2017年 WindShan. All rights reserved.
//
 
#import "BaseNavPage.h"
#import <BaiduMapAPI_Map/BMKMapComponent.h>
#import <BaiduMapAPI_Location/BMKLocationComponent.h>
#import<BaiduMapAPI_Search/BMKPoiSearchType.h>
#import<BaiduMapAPI_Search/BMKGeocodeSearch.h>
 
@interface UserSignPage : BaseNavPage
{
    BMKMapView* _mapView;
    BMKLocationService* _locService;
    BMKGeoCodeSearch *_geocodesearch; //地理编码主类,用来查询、返回结果信息
}
 
 
-(void)startLocation;
-(void)stopLocation;
 
@end