-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
徐东
committed
May 22, 2017
1 parent
62cb399
commit a2fc9c1
Showing
21 changed files
with
589 additions
and
289 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file modified
BIN
-2.57 MB
(60%)
ios/Frameworks/AMapFoundationKit.framework/AMapFoundationKit
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.4.0+foundation.e669e61 |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
26 changes: 26 additions & 0 deletions
26
ios/Frameworks/AMapLocationKit.framework/Headers/AMapGeoFenceError.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// AMapGeoFenceError.h | ||
// AMapLocationKit | ||
// | ||
// Created by eidan on 16/12/15. | ||
// Copyright © 2016年 Amap. All rights reserved. | ||
// | ||
|
||
#ifndef AMapGeoFenceError_h | ||
#define AMapGeoFenceError_h | ||
|
||
|
||
///AMapGeoFence errorDomain | ||
extern NSString * const AMapGeoFenceErrorDomain; | ||
|
||
///地理围栏错误码 | ||
typedef NS_ENUM(NSInteger, AMapGeoFenceErrorCode) { | ||
AMapGeoFenceErrorUnknown = 1, ///< 未知错误 | ||
AMapGeoFenceErrorInvalidParameter = 2, ///< 参数错误 | ||
AMapGeoFenceErrorFailureConnection = 3, ///< 网络连接异常 | ||
AMapGeoFenceErrorFailureAuth = 4, ///< 鉴权失败 | ||
AMapGeoFenceErrorNoValidFence = 5, ///< 无可用围栏 | ||
AMapGeoFenceErroFailureLocating = 6, ///< 定位错误 | ||
}; | ||
|
||
#endif /* AMapGeoFenceError_h */ |
Oops, something went wrong.