123456789101112131415161718192021222324 |
- //
- // RDSMapHelper.h
- // SmartLightForBigFish
- //
- // Created by coderYK on 2017/9/11.
- // Copyright © 2017年 RD. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "RDSUserLocation.h"
- #define TheMapHelper [RDSMapHelper shareHelper]
- @interface RDSMapHelper : NSObject
- @property (nonatomic, strong) RDSUserLocation *userLocation;
- + (instancetype)shareHelper;
- - (void)rds_startLocationSevice:(void(^)(RDSUserLocation *userLocation))rdsLocationCompleted;
- @end
|