MapServicePri.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MapServicePri.h
  3. // HondenMapService
  4. //
  5. // Created by work-cn on 2021/9/6.
  6. // Copyright © 2021 王俊杰的Mac mini. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define MSdebug @"debug"
  10. #define MSrelease @"release"
  11. #import <AMapLocationKit/AMapLocationKit.h>//高德定位SDK
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface MapServicePri : NSObject
  14. @property(nonatomic,strong)AMapLocationManager * locationManager;
  15. //经度
  16. @property(nonatomic,copy)NSString * lon;
  17. //纬度
  18. @property(nonatomic,copy)NSString * lat;
  19. //行政区划代码
  20. @property(nonatomic,copy)NSString * countryCode;
  21. //地址信息
  22. @property(nonatomic,copy)NSString * location;
  23. - (void)openServiceWithAppId:(NSString *)appId appSecurity:(NSString *)appSecurity enterpriseSenderCode:(NSString *)enterpriseSenderCode environment:(NSString *)environment listener:(void(^)(id model))listener;
  24. -(void)uploadLocationInfoWithLocationType:(NSString *)locationType driverNameView:(NSString*)driverNameView vehicleNumberView:(NSString*)vehicleNumberView shippingNoteInfos:(NSArray *)shippingNoteInfos remark:(NSString*)remark listener:(void(^)(id model))listener num:(NSInteger)num;
  25. -(void)uploadLocationInfoWithLocationType:(NSString *)locationType driverNameView:(NSString*)driverNameView vehicleNumberView:(NSString*)vehicleNumberView shippingNoteInfos:(NSArray *)shippingNoteInfos urlInfoList:(NSMutableArray *)urlInfoList remark:(NSString*)remark listener:(void(^)(id model))listener num:(NSInteger)num;
  26. @end
  27. NS_ASSUME_NONNULL_END