RDSMapHelper.h 483 B

123456789101112131415161718192021222324
  1. //
  2. // RDSMapHelper.h
  3. // SmartLightForBigFish
  4. //
  5. // Created by coderYK on 2017/9/11.
  6. // Copyright © 2017年 RD. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RDSUserLocation.h"
  10. #define TheMapHelper [RDSMapHelper shareHelper]
  11. @interface RDSMapHelper : NSObject
  12. @property (nonatomic, strong) RDSUserLocation *userLocation;
  13. + (instancetype)shareHelper;
  14. - (void)rds_startLocationSevice:(void(^)(RDSUserLocation *userLocation))rdsLocationCompleted;
  15. @end