DistanceModel.h 442 B

12345678910111213141516171819
  1. //
  2. // DistanceModel.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/10/24.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <QMapKit/QMapKit.h>
  10. #import <QMapSearchKit/QMapSearchKit.h>
  11. @interface DistanceModel : NSObject
  12. @property (nonatomic, strong) NSMutableArray *distanceArray;
  13. - (NSMutableArray *)CalculateDistanceWithArray:(NSMutableArray *)DisArray andPoint:(QMapPoint )point;
  14. @end