TencentMapSDK_iOS_3D_v6.7.0
QMSSearchError.h
1 //
2 // QMSSearchError.h
3 // QMapSearchKit
4 //
5 // Created by tabsong on 2023/2/28.
6 // Copyright © 2023 tencent. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 // Search Error Domain.
12 extern NSString * const QMSSearchErrorDomain;
13 
14 // Search Error Code
15 // 详细的error code 参考 https://lbs.qq.com/service/webService/webServiceGuide/status
16 typedef NS_ENUM(NSInteger, QMSSearchErrorCode)
17 {
18  QMSSearchErrorCancelled = -1,
19  QMSSearchErrorOK = 0,
20 };