├── pic.gif
├── pic1.gif
├── 三级数据.png
├── 两级数据.png
├── 地址数据结构.png
├── LZCityPicker
├── LZCityPicker
│ ├── 40fe711f9b754b596159f3a6.jpg
│ ├── ViewController.h
│ ├── AppDelegate.h
│ ├── main.m
│ ├── Info.plist
│ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ ├── Assets.xcassets
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── AppDelegate.m
│ ├── ViewController.m
│ └── Address.plist
├── LZCityPicker.xcodeproj
│ ├── xcuserdata
│ │ ├── Artron_LQQ.xcuserdatad
│ │ │ ├── xcdebugger
│ │ │ │ └── Breakpoints_v2.xcbkptlist
│ │ │ └── xcschemes
│ │ │ │ ├── xcschememanagement.plist
│ │ │ │ └── LZCityPicker.xcscheme
│ │ └── LQiqiang.xcuserdatad
│ │ │ └── xcschemes
│ │ │ └── xcschememanagement.plist
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ ├── xcuserdata
│ │ │ ├── LQiqiang.xcuserdatad
│ │ │ │ └── UserInterfaceState.xcuserstate
│ │ │ └── Artron_LQQ.xcuserdatad
│ │ │ │ └── UserInterfaceState.xcuserstate
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── project.pbxproj
└── LZCityPickerUITests
│ ├── Info.plist
│ └── LZCityPickerUITests.m
├── LICENSE
├── File
├── LQCityPicker.h
├── LQPickerItem.h
├── LQPickerView.h
├── LQPickerItem.m
├── LQCityPicker.m
└── LQPickerView.m
└── README.md
/pic.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/pic.gif
--------------------------------------------------------------------------------
/pic1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/pic1.gif
--------------------------------------------------------------------------------
/三级数据.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/三级数据.png
--------------------------------------------------------------------------------
/两级数据.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/两级数据.png
--------------------------------------------------------------------------------
/地址数据结构.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/地址数据结构.png
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/40fe711f9b754b596159f3a6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/LZCityPicker/LZCityPicker/40fe711f9b754b596159f3a6.jpg
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/xcuserdata/Artron_LQQ.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/project.xcworkspace/xcuserdata/LQiqiang.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/LZCityPicker/LZCityPicker.xcodeproj/project.xcworkspace/xcuserdata/LQiqiang.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/project.xcworkspace/xcuserdata/Artron_LQQ.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qrices/LQPickerView/HEAD/LZCityPicker/LZCityPicker.xcodeproj/project.xcworkspace/xcuserdata/Artron_LQQ.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/ViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // LZCityPicker
4 | //
5 | // Created by Artron_LQQ on 16/8/29.
6 | // Copyright © 2016年 Artup. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface ViewController : UIViewController
12 |
13 |
14 | @end
15 |
16 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/AppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.h
3 | // LZCityPicker
4 | //
5 | // Created by Artron_LQQ on 16/8/29.
6 | // Copyright © 2016年 Artup. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface AppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 |
16 | @end
17 |
18 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // LZCityPicker
4 | //
5 | // Created by Artron_LQQ on 16/8/29.
6 | // Copyright © 2016年 Artup. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/xcuserdata/LQiqiang.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | LZCityPicker.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/xcuserdata/Artron_LQQ.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | LZCityPicker.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 91D23E281D740A160033A791
16 |
17 | primary
18 |
19 |
20 | 91D23E411D740A160033A791
21 |
22 | primary
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPickerUITests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 LQiqiang
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/File/LQCityPicker.h:
--------------------------------------------------------------------------------
1 | //
2 | // LQCityPicker.h
3 | // LQToolKit-ObjectiveC
4 | //
5 | // Created by LiuQiqiang on 2018/7/15.
6 | // Copyright © 2018年 QiqiangLiu. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | typedef void(^LQCityPickerHandler)(NSArray *objs, NSString *dsc);
12 | typedef void(^LQCityPickerCancelHandler)(void);
13 |
14 | @interface LQCityPicker : UIView
15 |
16 | /** 是否自动显示选择结果 */
17 | @property (assign, nonatomic)BOOL autoChange;
18 |
19 | /** 动画时间间隔 默认 0.2s*/
20 | @property (nonatomic, assign) NSTimeInterval interval;
21 | //建议 NSFontAttributeName 和 NSForegroundColorAttributeName一同设置
22 | /** 选择器文本内容字体属性,默认:蓝色,14号 */
23 | @property (strong, nonatomic)NSDictionary *textAttributes;
24 | /** 按钮标题字体属性,默认:蓝色,14号 */
25 | @property (strong, nonatomic)NSDictionary *titleAttributes;
26 |
27 | /**
28 | 毛玻璃效果
29 | */
30 | @property (nonatomic, assign) BOOL isBlur;
31 |
32 | + (instancetype)showInView:(UIView *)view datas:(NSArray *)datas didSelectWithBlock:(LQCityPickerHandler)block cancelBlock:(LQCityPickerCancelHandler)cancel ;
33 |
34 | - (void)show ;
35 | - (void)dismiss ;
36 |
37 | - (void)loadDatas:(NSArray *)datas;
38 | @end
39 |
--------------------------------------------------------------------------------
/File/LQPickerItem.h:
--------------------------------------------------------------------------------
1 | //
2 | // LQPickerItem.h
3 | // LQToolKit-ObjectiveC
4 | //
5 | // Created by LiuQiqiang on 2018/7/15.
6 | // Copyright © 2018年 QiqiangLiu. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface LQPickerItem : NSObject
12 |
13 | @property (nonatomic, copy) NSString* name;
14 | @property (nonatomic, assign) id obj;
15 | @property (nonatomic, copy) NSArray *datas;
16 |
17 | - (void) loadData:(NSInteger)count config:(void(^)(LQPickerItem *item, NSInteger index)) config ;
18 | @end
19 |
20 |
21 |
22 | // ===============================================
23 |
24 | @class LQPickerCity;
25 | @interface LQPickerProvince : LQPickerItem
26 |
27 | @property (nonatomic, strong) NSArray *cities;
28 | - (void)configWithDic:(NSDictionary *)dic;
29 |
30 | - (void) loadCity:(NSInteger)count config:(void(^)(LQPickerCity *city, NSInteger index)) config ;
31 | @end
32 |
33 | @interface LQPickerCity : LQPickerItem
34 |
35 | @property (nonatomic, copy) NSString *province;
36 | @property (nonatomic, strong) NSArray *areas;
37 | - (void)configWithArr:(NSArray *)arr;
38 | @end
39 |
40 | @interface LQPickerArea : LQPickerItem
41 |
42 | @property (nonatomic, copy) NSString *province;
43 | @property (nonatomic, copy) NSString *city;
44 | @property (nonatomic, copy, readonly) NSString *address;
45 | @end
46 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPickerUITests/LZCityPickerUITests.m:
--------------------------------------------------------------------------------
1 | //
2 | // LZCityPickerUITests.m
3 | // LZCityPickerUITests
4 | //
5 | // Created by Artron_LQQ on 16/8/29.
6 | // Copyright © 2016年 Artup. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface LZCityPickerUITests : XCTestCase
12 |
13 | @end
14 |
15 | @implementation LZCityPickerUITests
16 |
17 | - (void)setUp {
18 | [super setUp];
19 |
20 | // Put setup code here. This method is called before the invocation of each test method in the class.
21 |
22 | // In UI tests it is usually best to stop immediately when a failure occurs.
23 | self.continueAfterFailure = NO;
24 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
25 | [[[XCUIApplication alloc] init] launch];
26 |
27 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
28 | }
29 |
30 | - (void)tearDown {
31 | // Put teardown code here. This method is called after the invocation of each test method in the class.
32 | [super tearDown];
33 | }
34 |
35 | - (void)testExample {
36 | // Use recording to get started writing UI tests.
37 | // Use XCTAssert and related functions to verify your tests produce the correct results.
38 | }
39 |
40 | @end
41 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 | UISupportedInterfaceOrientations~ipad
40 |
41 | UIInterfaceOrientationPortrait
42 | UIInterfaceOrientationPortraitUpsideDown
43 | UIInterfaceOrientationLandscapeLeft
44 | UIInterfaceOrientationLandscapeRight
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "scale" : "2x",
6 | "size" : "20x20"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "scale" : "3x",
11 | "size" : "20x20"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "scale" : "2x",
16 | "size" : "29x29"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "scale" : "3x",
21 | "size" : "29x29"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "scale" : "2x",
26 | "size" : "40x40"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "scale" : "3x",
31 | "size" : "40x40"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "scale" : "2x",
36 | "size" : "60x60"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "scale" : "3x",
41 | "size" : "60x60"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "scale" : "1x",
46 | "size" : "20x20"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "scale" : "2x",
51 | "size" : "20x20"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "scale" : "1x",
56 | "size" : "29x29"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "scale" : "2x",
61 | "size" : "29x29"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "scale" : "1x",
66 | "size" : "40x40"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "scale" : "2x",
71 | "size" : "40x40"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "scale" : "1x",
76 | "size" : "76x76"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "scale" : "2x",
81 | "size" : "76x76"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "scale" : "2x",
86 | "size" : "83.5x83.5"
87 | },
88 | {
89 | "idiom" : "ios-marketing",
90 | "scale" : "1x",
91 | "size" : "1024x1024"
92 | }
93 | ],
94 | "info" : {
95 | "author" : "xcode",
96 | "version" : 1
97 | }
98 | }
99 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/AppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.m
3 | // LZCityPicker
4 | //
5 | // Created by Artron_LQQ on 16/8/29.
6 | // Copyright © 2016年 Artup. All rights reserved.
7 | //
8 |
9 | #import "AppDelegate.h"
10 |
11 | @interface AppDelegate ()
12 |
13 | @end
14 |
15 | @implementation AppDelegate
16 |
17 |
18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
19 | // Override point for customization after application launch.
20 | return YES;
21 | }
22 |
23 | - (void)applicationWillResignActive:(UIApplication *)application {
24 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
25 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
26 | }
27 |
28 | - (void)applicationDidEnterBackground:(UIApplication *)application {
29 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
31 | }
32 |
33 | - (void)applicationWillEnterForeground:(UIApplication *)application {
34 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
35 | }
36 |
37 | - (void)applicationDidBecomeActive:(UIApplication *)application {
38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
39 | }
40 |
41 | - (void)applicationWillTerminate:(UIApplication *)application {
42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
43 | }
44 |
45 | @end
46 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/ViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.m
3 | // LZCityPicker
4 | //
5 | // Created by Artron_LQQ on 16/8/29.
6 | // Copyright © 2016年 Artup. All rights reserved.
7 | //
8 |
9 | #import "ViewController.h"
10 | //#import "LZCityPickerView.h"
11 | //#import "LZCityPickerController.h"
12 | #import "LQCityPicker.h"
13 | #import "LQPickerView.h"
14 |
15 | @interface ViewController ()
16 | @property (weak, nonatomic) IBOutlet UILabel *addressLabel;
17 | @property (nonatomic, strong) NSMutableArray *dataSource;
18 | @end
19 |
20 | @implementation ViewController
21 |
22 | - (NSMutableArray *)dataSource {
23 | if (_dataSource == nil) {
24 | _dataSource = [NSMutableArray arrayWithCapacity:0];
25 | }
26 |
27 | return _dataSource;
28 | }
29 |
30 | - (void)viewDidLoad {
31 | [super viewDidLoad];
32 | // Do any additional setup after loading the view, typically from a nib.
33 | [self loadData];
34 |
35 | // LQPickerView *picker = [LQPickerView pickerViewFrame:CGRectMake(0, 200, CGRectGetWidth(self.view.frame), 200) datas:<#(NSArray *)#> commitHandler:<#^(NSArray *objs, NSString *dsc)handler#> autoHandler:<#^(NSArray *objs, NSString *dsc)autoHandler#>];
36 | }
37 |
38 | #pragma mark - /** 加载数据源 */
39 | - (void)loadData {
40 | NSString *path = [[NSBundle mainBundle]pathForResource:@"Address" ofType:@"plist"];
41 |
42 | NSDictionary *dic = [[NSDictionary alloc]initWithContentsOfFile:path];
43 |
44 | NSArray *provinces = [dic allKeys];
45 |
46 | for (NSString *tmp in provinces) {
47 |
48 | // 创建第一级数据
49 | LQPickerItem *item1 = [[LQPickerItem alloc]init];
50 | item1.name = tmp;
51 |
52 | NSArray *arr = [dic objectForKey:tmp];
53 | NSDictionary *cityDic = [arr firstObject];
54 |
55 | NSArray *keys = cityDic.allKeys;
56 | // 配置第二级数据
57 | [item1 loadData:keys.count config:^(LQPickerItem *item, NSInteger index) {
58 |
59 | item.name = keys[index];
60 | NSArray *area = [cityDic objectForKey:item.name];
61 | // 配置第三极数据
62 | [item loadData:area.count config:^(LQPickerItem *item, NSInteger index) {
63 | item.name = area[index];
64 | }];
65 | }];
66 |
67 | [self.dataSource addObject:item1];
68 | }
69 | }
70 |
71 | - (IBAction)buttonClick:(id)sender {
72 |
73 | __weak typeof(self)ws = self;
74 | [LQCityPicker showInView:self.view datas:self.dataSource didSelectWithBlock:^(NSArray *objs, NSString *dsc) {
75 | NSLog(@"%@\n%@", objs, dsc);
76 | ws.addressLabel.text = dsc;
77 | } cancelBlock:^{
78 | NSLog(@"cancel");
79 | }];
80 | }
81 |
82 | - (void)didReceiveMemoryWarning {
83 | [super didReceiveMemoryWarning];
84 | // Dispose of any resources that can be recreated.
85 | }
86 |
87 | @end
88 |
--------------------------------------------------------------------------------
/File/LQPickerView.h:
--------------------------------------------------------------------------------
1 | //
2 | // LQPickerView.h
3 | // LQToolKit-ObjectiveC
4 | //
5 | // Created by LiuQiqiang on 2018/7/15.
6 | // Copyright © 2018年 QiqiangLiu. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @class LQPickerItem;
12 |
13 | /**
14 | 回调Block
15 |
16 | @param objs 当前选择的元素集合,内含选择的LQPickerItem实例对象
17 | @param dsc 拼接的当前现实的内容字符串,例如:北京-北京市-海淀区
18 | */
19 | typedef void(^LQPickerViewHandler)(NSArray *objs, NSString *dsc);
20 | @interface LQPickerView : UIView
21 |
22 | /**
23 | 背景图片
24 | */
25 | @property (nonatomic, strong) UIImage *backgroundImage;
26 |
27 | //建议 NSFontAttributeName 和 NSForegroundColorAttributeName一同设置
28 | /** 选择器文本内容字体属性,默认:蓝色,14号 */
29 | @property (nonatomic, strong)NSDictionary *textAttributes;
30 | /** 按钮标题字体属性,默认:蓝色,14号 */
31 | @property (nonatomic, strong)NSDictionary *buttonTitleAttributes;
32 |
33 | /**
34 | 毛玻璃效果
35 | */
36 | @property (nonatomic, assign) BOOL isBlur;
37 |
38 | /**
39 | 是否自动回调结果,若为YES,则会多次调用回调,默认YES
40 | */
41 | @property (nonatomic, assign) BOOL autoEnable;
42 |
43 | /**
44 | 顶部分割线颜色
45 | */
46 | @property (nonatomic, strong) UIColor *topLineColor;
47 |
48 | /**
49 | 类方法创建pickerView
50 |
51 | @param frame frame
52 | @param datas 内容数组,包含LQPickerItem实例对象
53 | @param handler 按钮点击回调
54 | @param autoHandler 选择自动回调,需要autoEnable为YES
55 | @return 返回实例对象
56 | */
57 | + (instancetype) pickerViewFrame:(CGRect)frame datas:(NSArray *)datas commitHandler: (LQPickerViewHandler)handler autoHandler:(LQPickerViewHandler)autoHandler;
58 |
59 | /**
60 | 类方法创建pickerView
61 |
62 | @param view 添加到的父视图
63 | @param frame frame
64 | @param datas 内容数组,包含LQPickerItem实例对象
65 | @param handler 回调
66 | @param autoHandler 选择自动回调,需要autoEnable为YES
67 | @return 返回实例对象
68 | */
69 | + (instancetype) showOnView:(UIView *)view frame:(CGRect) frame datas:(NSArray *) datas commitHandler: (LQPickerViewHandler)handler autoHandler:(LQPickerViewHandler)autoHandler ;
70 |
71 | /**
72 | 外部加载数据源方法
73 |
74 | @param datas 内容数组,包含LQPickerItem实例对象
75 | */
76 | - (void) loadDates:(NSArray *)datas ;
77 |
78 | /**
79 | 外部获取回调方法
80 |
81 | @param handler 回调
82 | */
83 | - (void) didSelectedHandler:(LQPickerViewHandler)handler;
84 |
85 | - (void) autoSelectedHandler:(LQPickerViewHandler)handler;
86 | @end
87 |
88 | #pragma mark - 选择器数据源model
89 | // 可直接使用此类,把其他的参数赋值给属性 obj ,或者使用继承自此类的子类
90 | @interface LQPickerItem : NSObject
91 |
92 | @property (nonatomic, copy) NSString* name;
93 | @property (nonatomic, assign) id obj;
94 | @property (nonatomic, copy) NSArray *datas;
95 |
96 | /**
97 | 配置model子数据源方法,方法内只是对属性datas进行赋值,其他的属性值通过回调配置
98 |
99 | @param count 包含的子数据数目,即属性datas包含的数据
100 | @param config 配置子数据的内容闭包,参数同为LQPickerItem实例
101 | */
102 | - (void) loadData:(NSInteger)count config:(void(^)(LQPickerItem *item, NSInteger index)) config ;
103 | @end
104 |
--------------------------------------------------------------------------------
/File/LQPickerItem.m:
--------------------------------------------------------------------------------
1 | //
2 | // LQPickerItem.m
3 | // LQToolKit-ObjectiveC
4 | //
5 | // Created by LiuQiqiang on 2018/7/15.
6 | // Copyright © 2018年 QiqiangLiu. All rights reserved.
7 | //
8 |
9 | #import "LQPickerItem.h"
10 |
11 | @implementation LQPickerItem
12 |
13 | - (void) loadData:(NSInteger)count config:(void(^)(LQPickerItem *item, NSInteger index)) config {
14 |
15 | NSMutableArray *temps = [NSMutableArray arrayWithCapacity:count];
16 | for (int i = 0; i < count; i++) {
17 | LQPickerItem *city = [[LQPickerItem alloc]init];
18 | if (config) {
19 | config(city, i);
20 | }
21 |
22 | [temps addObject:city];
23 | }
24 |
25 | self.datas = [NSArray arrayWithArray:temps];
26 | }
27 |
28 | @end
29 |
30 | // ===============================================
31 |
32 | @implementation LQPickerProvince
33 |
34 | - (void) loadCity:(NSInteger )count config:(void(^)(LQPickerCity *city, NSInteger index)) config {
35 |
36 | NSMutableArray *temps = [NSMutableArray arrayWithCapacity:count];
37 | for (int i = 0; i < count; i++) {
38 | LQPickerCity *city = [[LQPickerCity alloc]init];
39 | if (config) {
40 | config(city, i);
41 | }
42 |
43 | [temps addObject:city];
44 | }
45 |
46 | self.cities = [NSArray arrayWithArray:temps];
47 | }
48 |
49 | - (void)configWithDic:(NSDictionary *)dic {
50 |
51 | NSArray *citys = [dic allKeys];
52 |
53 | NSMutableArray *tmpCitys = [NSMutableArray arrayWithCapacity:citys.count];
54 | for (NSString *tmp in citys) {
55 |
56 | LQPickerCity *city = [[LQPickerCity alloc]init];
57 | city.name = tmp;
58 | city.province = self.name;
59 | NSArray *area = [dic objectForKey:tmp];
60 |
61 | [city configWithArr:area];
62 | [tmpCitys addObject:city];
63 |
64 | }
65 |
66 | self.cities = [tmpCitys copy];
67 | }
68 | @end
69 |
70 | @implementation LQPickerCity
71 |
72 | - (void) loadCity:(NSInteger )count config:(void(^)(LQPickerArea *area, NSInteger index)) config {
73 |
74 | NSMutableArray *temps = [NSMutableArray arrayWithCapacity:count];
75 | for (int i = 0; i < count; i++) {
76 | LQPickerArea *city = [[LQPickerArea alloc]init];
77 | if (config) {
78 | config(city, i);
79 | }
80 |
81 | [temps addObject:city];
82 | }
83 |
84 | self.areas = [NSArray arrayWithArray:temps];
85 | }
86 |
87 | - (void)configWithArr:(NSArray *)arr {
88 |
89 | NSMutableArray *array = [NSMutableArray arrayWithCapacity:arr.count];
90 | for (NSString *tmp in arr) {
91 |
92 | LQPickerArea *area = [[LQPickerArea alloc]init];
93 | area.name = tmp;
94 | area.province = self.province;
95 | area.city = self.name;
96 | [array addObject:area];
97 | }
98 |
99 | self.areas = [array copy];
100 | }
101 | @end
102 |
103 | @implementation LQPickerArea
104 |
105 | - (NSString *)address {
106 |
107 | return [NSString stringWithFormat:@"%@-%@-%@", self.province, self.city, self.name];
108 | }
109 | @end
110 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/xcuserdata/Artron_LQQ.xcuserdatad/xcschemes/LZCityPicker.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
49 |
50 |
51 |
52 |
53 |
54 |
64 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
83 |
85 |
91 |
92 |
93 |
94 |
96 |
97 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
27 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | # LQPickerView
3 |
4 | 对UIPickerView的封装,完美实现多级联动!
5 | 内部封装了一个model:LQPickerItem,实现了外部不需考虑内部的数据分配及选择逻辑,只需要按照一定规则包装数据,即可完美实现数据的显示及选择;
6 | 选择器显示几级数据,完全依靠数据源的结构,内部自动返回列数,不需要额外设置。
7 |
8 | 其属性和方法都有注释,也比较简单,直接看源码即可!
9 |
10 | ### LQPickerItem
11 |
12 | ```
13 | @interface LQPickerItem : NSObject
14 |
15 | @property (nonatomic, copy) NSString* name;
16 | @property (nonatomic, assign) id obj;
17 | @property (nonatomic, copy) NSArray *datas;
18 |
19 | /**
20 | 配置model子数据源方法,方法内只是对属性datas进行赋值,其他的属性值通过回调配置
21 |
22 | @param count 包含的子数据数目,即属性datas包含的数据
23 | @param config 配置子数据的内容闭包,参数同为LQPickerItem实例
24 | */
25 | - (void) loadData:(NSInteger)count config:(void(^)(LQPickerItem *item, NSInteger index)) config ;
26 | @end
27 | ```
28 |
29 | 此model设置了三个属性及一个方法:
30 | name属性:主要是选择器显示的文字,在配置数据的时候是必须要设置的;
31 | obj属性:是保存其他的数据信息的,如果其他的信息需要使用不同的属性来记录,可以创建LQPickerItem的子类来添加多个属性;
32 | datas属性:主要是用来保存其二级菜单数据的,内部元素同样是LQPickerItem实例对象,此值也是内部判断是否有下一级选择的依据;
33 | loadData方法:主要是用来为其属性datas内元素进行赋值的回调;当前,如果完全在外部创建实例,只要其结构一致即可!
34 | datas属性内的元素一定要是LQPickerItem,如此逐级嵌套!
35 |
36 | # LQCityPicker
37 | 基于LQPickerView实现的一个简单的全国城市地区选择器, 完美实现三级联动, 不会因为滑动引起crash, 使用简单
38 |
39 | 以此来说明如何配置数据源,来实现显示多级数据,这里是加载了一个地址信息的plist文件,其数据结构是这样的:
40 |
41 | 
42 |
43 | 加载数据源的方法为:
44 | ```
45 | - (void)loadData {
46 | NSString *path = [[NSBundle mainBundle]pathForResource:@"Address" ofType:@"plist"];
47 |
48 | NSDictionary *dic = [[NSDictionary alloc]initWithContentsOfFile:path];
49 |
50 | NSArray *provinces = [dic allKeys];
51 |
52 | for (NSString *tmp in provinces) {
53 |
54 | // 创建第一级数据
55 | LQPickerItem *item1 = [[LQPickerItem alloc]init];
56 | item1.name = tmp;
57 |
58 | NSArray *arr = [dic objectForKey:tmp];
59 | NSDictionary *cityDic = [arr firstObject];
60 |
61 | NSArray *keys = cityDic.allKeys;
62 | // 配置第二级数据
63 | [item1 loadData:keys.count config:^(LQPickerItem *item, NSInteger index) {
64 |
65 | item.name = keys[index];
66 | NSArray *area = [cityDic objectForKey:item.name];
67 | // 配置第三极数据
68 | [item loadData:area.count config:^(LQPickerItem *item, NSInteger index) {
69 | item.name = area[index];
70 | }];
71 | }];
72 |
73 | [self.dataSource addObject:item1];
74 | }
75 | }
76 |
77 | ```
78 | 这样便有一个三级的地址选择器:
79 |
80 | 
81 |
82 | 如果将上述加载的方法的第三极数据注释掉,即:
83 | ```
84 | - (void)loadData {
85 | NSString *path = [[NSBundle mainBundle]pathForResource:@"Address" ofType:@"plist"];
86 |
87 | NSDictionary *dic = [[NSDictionary alloc]initWithContentsOfFile:path];
88 |
89 | NSArray *provinces = [dic allKeys];
90 |
91 | for (NSString *tmp in provinces) {
92 |
93 | // 创建第一级数据
94 | LQPickerItem *item1 = [[LQPickerItem alloc]init];
95 | item1.name = tmp;
96 |
97 | NSArray *arr = [dic objectForKey:tmp];
98 | NSDictionary *cityDic = [arr firstObject];
99 |
100 | NSArray *keys = cityDic.allKeys;
101 | // 配置第二级数据
102 | [item1 loadData:keys.count config:^(LQPickerItem *item, NSInteger index) {
103 |
104 | item.name = keys[index];
105 | // NSArray *area = [cityDic objectForKey:item.name];
106 | // // 配置第三极数据
107 | // [item loadData:area.count config:^(LQPickerItem *item, NSInteger index) {
108 | // item.name = area[index];
109 | // }];
110 | }];
111 |
112 | [self.dataSource addObject:item1];
113 | }
114 | }
115 | ```
116 |
117 | 如此便有一个两级的地址选择器:
118 |
119 | 
120 |
121 |
122 | ### LQCityPicker使用
123 |
124 | LQCityPicker的使用, 只需要调用我提供的方法即可, 不需要手动添加视图, 方法内实现了视图添加, 只需要调用方法后, 配置一些需要的属性即可:
125 |
例如:
126 |
127 | ```
128 | // 初始化视图
129 | __weak typeof(self)ws = self;
130 | [LQCityPicker showInView:self.view datas:self.dataSource didSelectWithBlock:^(NSArray *objs, NSString *dsc) {
131 | NSLog(@"%@\n%@", objs, dsc);
132 | ws.addressLabel.text = dsc;
133 | } cancelBlock:^{
134 | NSLog(@"cancel");
135 | }];
136 |
137 | // 配置属性
138 | picker.autoChange = YES;
139 | picker.backgroundImage = [UIImage imageNamed:@"40fe711f9b754b596159f3a6.jpg"];
140 |
141 | picker.textAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:16],NSForegroundColorAttributeName:[UIColor whiteColor]};
142 | picker.titleAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:16],NSForegroundColorAttributeName:[UIColor whiteColor]};
143 |
144 | ```
145 |
146 | # 示意图
147 |
148 | 
149 | 
150 |
151 |
--------------------------------------------------------------------------------
/File/LQCityPicker.m:
--------------------------------------------------------------------------------
1 | //
2 | // LQCityPicker.m
3 | // LQToolKit-ObjectiveC
4 | //
5 | // Created by LiuQiqiang on 2018/7/15.
6 | // Copyright © 2018年 QiqiangLiu. All rights reserved.
7 | //
8 |
9 | #import "LQCityPicker.h"
10 | #import "LQPickerView.h"
11 |
12 | #define lz_screenWidth ([UIScreen mainScreen].bounds.size.width)
13 | #define lz_screenHeight ([UIScreen mainScreen].bounds.size.height)
14 |
15 | static CGFloat const lz_contentHeight = 246.0;
16 |
17 | @interface LQCityPicker ()
18 | {
19 | // 记录当前选择器是否已经显示
20 | BOOL __isShowed ;
21 | }
22 |
23 | @property (nonatomic, copy) LQCityPickerHandler selectBlock;
24 | @property (nonatomic, copy) LQCityPickerCancelHandler cancelBlock;
25 | @property (nonatomic, strong) LQPickerView *pickerView;
26 | @property (nonatomic, strong) UIWindow *window;
27 | @property (nonatomic, strong) CALayer *backgroundLayer;
28 | @property (nonatomic, assign) BOOL isNewWindow;
29 | @end
30 | @implementation LQCityPicker
31 |
32 | + (instancetype)showInView:(UIView *)view datas:(NSArray *)datas didSelectWithBlock:(LQCityPickerHandler)block cancelBlock:(LQCityPickerCancelHandler)cancel {
33 |
34 | LQCityPicker* cityPicker = [[LQCityPicker alloc]init];
35 | cityPicker.frame = CGRectMake(0, 0, lz_screenWidth, lz_screenHeight);
36 |
37 | cityPicker.autoChange = YES;
38 | cityPicker.isBlur = YES;
39 | cityPicker.selectBlock = block;
40 | cityPicker.cancelBlock = cancel;
41 | cityPicker.interval = 0.20;
42 | [cityPicker loadDatas:datas];
43 | [cityPicker show];
44 | if (view) {
45 | [view addSubview:cityPicker];
46 | } else {
47 | [cityPicker.window addSubview:cityPicker];
48 | }
49 |
50 | return cityPicker;
51 | }
52 |
53 | #pragma mark - /** 加载数据源 */
54 | - (void)loadDatas:(NSArray *)datas {
55 |
56 | [self.pickerView loadDates:datas];
57 | }
58 |
59 | - (void)setAutoChange:(BOOL)autoChange {
60 | _autoChange = autoChange;
61 | self.pickerView.autoEnable = autoChange;
62 | }
63 |
64 | - (instancetype)init {
65 | self = [super init];
66 | if (self) {
67 |
68 | _interval = 0.2;
69 | self.frame = [[UIScreen mainScreen] bounds];
70 | self.backgroundColor = [UIColor clearColor];
71 | [self backgroundLayer];
72 | self.titleAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor blueColor]};
73 | self.textAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor blueColor]};
74 | __weak typeof(self) ws = self;
75 | [self.pickerView didSelectedHandler:^(NSArray *objs, NSString *dsc) {
76 | [ws dismiss];
77 | if (ws.selectBlock) {
78 | ws.selectBlock(objs, dsc);
79 | }
80 | }];
81 |
82 | [self.pickerView autoSelectedHandler:^(NSArray *objs, NSString *dsc) {
83 |
84 | if (ws.selectBlock) {
85 | ws.selectBlock(objs, dsc);
86 | }
87 |
88 | }];
89 | }
90 |
91 | return self;
92 | }
93 |
94 | - (void)dealloc {
95 |
96 | NSLog(@"视图销毁了");
97 | }
98 |
99 | - (void)show {
100 | if (__isShowed == YES) {
101 | return;
102 | }
103 |
104 | __isShowed = YES;
105 | [UIView animateWithDuration:self.interval animations:^{
106 | self.pickerView.frame = CGRectMake(0, lz_screenHeight - lz_contentHeight, lz_screenWidth, lz_contentHeight);
107 | } completion:^(BOOL finished) {
108 |
109 | }];
110 | }
111 |
112 | - (void)dismiss {
113 |
114 | if (__isShowed == NO) {
115 | return;
116 | }
117 |
118 | __isShowed = NO;
119 | [UIView animateWithDuration:self.interval animations:^{
120 | self.pickerView.frame = CGRectMake(0, lz_screenHeight, lz_screenWidth, lz_contentHeight);
121 | } completion:^(BOOL finished) {
122 |
123 | [self removeFromSuperview];
124 | if (self.isNewWindow) {
125 | self.window.hidden = YES;
126 | }
127 | }];
128 | }
129 |
130 | - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
131 | UITouch *touch = [touches anyObject];
132 | CGPoint point = [touch locationInView:self];
133 |
134 | if (CGRectContainsPoint(self.pickerView.frame, point) == NO) {
135 | [self dismiss];
136 | if (self.cancelBlock) {
137 | self.cancelBlock();
138 | }
139 | }
140 | }
141 |
142 | #pragma mark - property getter
143 | -(void)setTextAttributes:(NSDictionary *)textAttributes {
144 | _textAttributes = textAttributes;
145 | self.pickerView.textAttributes = textAttributes;
146 | }
147 |
148 | - (void)setTitleAttributes:(NSDictionary *)titleAttributes {
149 | _titleAttributes = titleAttributes;
150 | self.pickerView.buttonTitleAttributes = titleAttributes;
151 | }
152 |
153 | - (void)setIsBlur:(BOOL)isBlur {
154 | _isBlur = isBlur;
155 |
156 | self.pickerView.isBlur = isBlur;
157 | }
158 |
159 | - (LQPickerView *)pickerView {
160 | if (_pickerView == nil) {
161 | _pickerView = [[LQPickerView alloc]init];
162 |
163 | _pickerView.buttonTitleAttributes = self.titleAttributes;
164 | _pickerView.textAttributes = self.textAttributes;
165 | // _pickerView.isBlur = YES;
166 | _pickerView.backgroundImage = [UIImage imageNamed:@"40fe711f9b754b596159f3a6.jpg"];
167 | _pickerView.frame = CGRectMake(0, lz_screenHeight, lz_screenWidth, lz_contentHeight);
168 | [self addSubview:_pickerView];
169 | }
170 |
171 | return _pickerView;
172 | }
173 |
174 | //=====================================
175 | - (CALayer *)backgroundLayer {
176 | if (_backgroundLayer == nil) {
177 | _backgroundLayer = [CALayer layer];
178 | _backgroundLayer.backgroundColor = [UIColor blackColor].CGColor;
179 | _backgroundLayer.opacity = 0.6;
180 | _backgroundLayer.frame = [UIScreen mainScreen].bounds;
181 | [self.layer addSublayer:_backgroundLayer];
182 | }
183 |
184 | return _backgroundLayer;
185 | }
186 |
187 | - (UIWindow *)window {
188 | if (_window == nil) {
189 |
190 | UIWindow *window = [[UIApplication sharedApplication] keyWindow];
191 | if (window == nil) {
192 | window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
193 | window.rootViewController = [[UIViewController alloc]init];
194 | window.windowLevel = UIWindowLevelStatusBar + 1;
195 | window.hidden = NO;
196 | window.alpha = 1.0;
197 | self.isNewWindow = YES;
198 | }
199 |
200 | _window = window;
201 | }
202 |
203 | return _window;
204 | }
205 | @end
206 |
--------------------------------------------------------------------------------
/File/LQPickerView.m:
--------------------------------------------------------------------------------
1 | //
2 | // LQPickerView.m
3 | // LQToolKit-ObjectiveC
4 | //
5 | // Created by LiuQiqiang on 2018/7/15.
6 | // Copyright © 2018年 QiqiangLiu. All rights reserved.
7 | //
8 |
9 | #import "LQPickerView.h"
10 |
11 | #define LQPickerView_screenWidth ([UIScreen mainScreen].bounds.size.width)
12 | #define LQPickerView_screenHeight ([UIScreen mainScreen].bounds.size.height)
13 | #define LQPickerView_pickerHeight 246.0
14 | //#define LQPickerView_Height 216.0
15 | #define LQPickerView_buttonHeight 30.0
16 | @interface LQPickerView ()
17 |
18 | @property (nonatomic, strong) CALayer *topLine;
19 |
20 |
21 | @property (nonatomic, strong) UIPickerView *pickerView;
22 | @property (nonatomic, strong) UIImageView *backgroundImageView;
23 | @property (nonatomic, strong) UIVisualEffectView *blurView;
24 | @property (strong, nonatomic) UIButton *commitButton;
25 | @property (nonatomic, strong) NSMutableArray *currentItems;
26 | @property (nonatomic, strong) NSArray *dataSource;
27 | @property (nonatomic, copy) LQPickerViewHandler commitHandler;
28 | @property (nonatomic, copy) LQPickerViewHandler autoHandler;
29 | @end
30 | @implementation LQPickerView
31 | + (instancetype) showOnView:(UIView *)view frame:(CGRect) frame datas:(NSArray *) datas commitHandler: (LQPickerViewHandler)handler autoHandler:(LQPickerViewHandler)autoHandler {
32 |
33 | LQPickerView *picker = [[LQPickerView alloc]initWithFrame:frame];
34 | [view addSubview:view];
35 | picker.commitHandler = handler;
36 | picker.autoHandler = autoHandler;
37 | [picker loadDates:datas];
38 | return picker;
39 | }
40 |
41 | + (instancetype) pickerViewFrame:(CGRect)frame datas:(NSArray *)datas commitHandler: (LQPickerViewHandler)handler autoHandler:(LQPickerViewHandler)autoHandler {
42 |
43 | LQPickerView *picker = [[LQPickerView alloc]initWithFrame:frame];
44 | [picker loadDates:datas];
45 | picker.commitHandler = handler;
46 | picker.autoHandler = handler;
47 | return picker;
48 | }
49 |
50 | - (instancetype)initWithFrame:(CGRect)frame
51 | {
52 | self = [super initWithFrame:frame];
53 | if (self) {
54 | // self.bounds = CGRectMake(0, 0, LQPickerView_screenWidth, LQPickerView_pickerHeight);
55 | self.frame = CGRectMake(frame.origin.x, frame.origin.y, LQPickerView_screenWidth, LQPickerView_pickerHeight);
56 | self.backgroundColor = [UIColor whiteColor];
57 | self.pickerView.backgroundColor = [UIColor whiteColor];
58 | _isBlur = YES;
59 | _autoEnable = YES;
60 | _topLineColor = [UIColor grayColor];
61 | }
62 | return self;
63 | }
64 |
65 | - (void) didSelectedHandler:(LQPickerViewHandler)handler {
66 |
67 | self.commitHandler = handler;
68 | }
69 |
70 | - (void) autoSelectedHandler:(LQPickerViewHandler)handler {
71 | self.autoHandler = handler;
72 | }
73 |
74 | - (void) loadDates:(NSArray *)datas {
75 | self.dataSource = [NSArray arrayWithArray:datas];
76 |
77 | [self configDefaultItemFromDatas:datas];
78 | // [self.pickerView reloadAllComponents];
79 | }
80 |
81 | - (void)layoutSubviews {
82 | [super layoutSubviews];
83 |
84 | self.topLine.frame = CGRectMake(0, 0, CGRectGetWidth(self.frame), 1);
85 | self.commitButton.frame = CGRectMake(CGRectGetWidth(self.frame) - 60, 0, 60, LQPickerView_buttonHeight);
86 | self.pickerView.frame = CGRectMake(0, LQPickerView_buttonHeight, CGRectGetWidth(self.frame), LQPickerView_pickerHeight - LQPickerView_buttonHeight);
87 |
88 | if (self.isBlur) {
89 | self.blurView.frame = self.bounds;
90 | [self insertSubview:self.blurView atIndex:0];
91 | }
92 |
93 | if (self.backgroundImage) {
94 | [self insertSubview:self.backgroundImageView atIndex:0];
95 | }
96 | }
97 |
98 | #pragma mark - 按钮点击事件
99 | - (void)commitButtonClick:(UIButton *)button {
100 |
101 | // 选择结果回调
102 | [self commitSelectedData:self.commitHandler];
103 | }
104 |
105 | - (void) commitSelectedData:(LQPickerViewHandler)handler {
106 |
107 | if (handler) {
108 |
109 | NSMutableString *str = [[NSMutableString alloc]init];
110 | for (LQPickerItem *item in self.currentItems) {
111 | if (str.length <= 0) {
112 | [str appendString:item.name];
113 | continue;
114 | }
115 |
116 | [str appendString:@"-"];
117 | [str appendString:item.name];
118 | }
119 | handler(self.currentItems, [str copy]);
120 | }
121 | }
122 |
123 | #pragma mark - UIPickerViewDelegate & UIPickerViewDataSource
124 | - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
125 |
126 | return self.currentItems.count;
127 | }
128 |
129 | - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
130 |
131 | if (component == 0) {
132 |
133 | return self.dataSource.count;
134 | } else {
135 |
136 | LQPickerItem *item = [self.currentItems objectAtIndex:component - 1];
137 |
138 | return item.datas.count;
139 | }
140 | }
141 |
142 | - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(nullable UIView *)view {
143 |
144 | UILabel *label = (UILabel *)view;
145 | if (label == nil) {
146 |
147 | label = [[UILabel alloc]init];
148 | label.font = [UIFont systemFontOfSize:16];
149 | label.textAlignment = NSTextAlignmentCenter;
150 | }
151 |
152 | if (component == 0) {
153 |
154 | LQPickerItem *item = [self.dataSource objectAtIndex:row];
155 | NSAttributedString *attStr = [[NSAttributedString alloc]initWithString:item.name attributes:self.textAttributes];
156 | label.attributedText = attStr;
157 | } else {
158 | LQPickerItem *item = [self.currentItems objectAtIndex:component - 1];
159 | if (item.datas.count > row) {
160 |
161 | LQPickerItem *item1 = [item.datas objectAtIndex:row];
162 | NSAttributedString *attStr = [[NSAttributedString alloc]initWithString:item1.name attributes:self.textAttributes];
163 | label.attributedText = attStr;
164 | }
165 | }
166 |
167 | return label;
168 | }
169 |
170 | - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
171 |
172 | if (component == 0) {
173 |
174 | LQPickerItem *item = [self.dataSource objectAtIndex:row];
175 | [self replaceItem:item atIndex:0];
176 | } else {
177 |
178 | if (self.currentItems.count > component - 1 ) {
179 | LQPickerItem *item = [self.currentItems objectAtIndex:component - 1];
180 |
181 | if (item.datas.count > row) {
182 | LQPickerItem *item1 = [item.datas objectAtIndex:row];
183 | [self replaceItem:item1 atIndex:component];
184 | }
185 | }
186 | }
187 |
188 | [self reloadPickerAtIndex:component + 1];
189 |
190 | if (self.autoEnable) {
191 | [self commitSelectedData:self.autoHandler];
192 | }
193 | }
194 |
195 | - (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component {
196 |
197 | return 60;
198 | }
199 | #pragma mark - 递归分配数据
200 | - (void) configDefaultItemFromDatas:(NSArray *)datas {
201 |
202 | if (datas.count > 0) {
203 | LQPickerItem *item = [datas firstObject];
204 | [self.currentItems addObject:item];
205 | if (item.datas) {
206 | [self configDefaultItemFromDatas:item.datas];
207 | }
208 | }
209 | }
210 |
211 | - (void) replaceItem:(LQPickerItem *)item atIndex:(NSInteger)index {
212 |
213 |
214 | if (self.currentItems.count > index) {
215 | [self.currentItems replaceObjectAtIndex:index withObject:item];
216 | } else {
217 | [self.currentItems addObject:item];
218 | }
219 |
220 | if (item.datas.count > 0) {
221 | LQPickerItem *item1 = [item.datas firstObject];
222 | index++;
223 | [self replaceItem:item1 atIndex:index];
224 | }
225 | }
226 |
227 | - (void) reloadPickerAtIndex:(NSInteger)index {
228 |
229 | if (index >= self.currentItems.count) {
230 | return;
231 | }
232 |
233 | [self.pickerView reloadComponent:index];
234 | [self.pickerView selectRow:0 inComponent:index animated:YES];
235 | index++;
236 | [self reloadPickerAtIndex:index];
237 | }
238 |
239 | #pragma mark - setter method
240 | - (void)setBackgroundImage:(UIImage *)backgroundImage {
241 | _backgroundImage = backgroundImage;
242 |
243 | self.backgroundImageView.image = backgroundImage;
244 | }
245 |
246 | - (void)setIsBlur:(BOOL)isBlur {
247 | _isBlur = isBlur;
248 |
249 | if (isBlur) {
250 |
251 | self.backgroundColor = [UIColor clearColor];
252 | self.pickerView.backgroundColor = [UIColor clearColor];
253 | } else {
254 | [self.blurView removeFromSuperview];
255 | }
256 | }
257 |
258 | #pragma mark - lazy method
259 | - (NSMutableArray *)currentItems {
260 | if (_currentItems == nil) {
261 | _currentItems = [NSMutableArray array];
262 | }
263 |
264 | return _currentItems;
265 | }
266 |
267 | - (UIButton *)commitButton {
268 | if (_commitButton == nil) {
269 |
270 | _commitButton = [UIButton buttonWithType:UIButtonTypeCustom];
271 |
272 | NSAttributedString *str = [[NSAttributedString alloc]initWithString:@"完成" attributes:self.buttonTitleAttributes];
273 | [_commitButton setAttributedTitle:str forState:UIControlStateNormal];
274 |
275 | [_commitButton addTarget:self action:@selector(commitButtonClick:) forControlEvents:UIControlEventTouchUpInside];
276 | [self addSubview:_commitButton];
277 | }
278 |
279 | return _commitButton;
280 | }
281 |
282 | - (UIImageView *)backgroundImageView {
283 | if (_backgroundImageView == nil) {
284 |
285 | _backgroundImageView = [[UIImageView alloc]initWithFrame:self.bounds];
286 | _backgroundImageView.contentMode = UIViewContentModeScaleAspectFill;
287 | _backgroundImageView.clipsToBounds = YES;
288 | }
289 |
290 | return _backgroundImageView;
291 | }
292 |
293 | - (UIVisualEffectView *)blurView {
294 | if (_blurView == nil) {
295 |
296 | UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
297 |
298 | _blurView = [[UIVisualEffectView alloc]initWithEffect:blurEffect];
299 | _blurView.frame = self.bounds;
300 | }
301 |
302 | return _blurView;
303 | }
304 |
305 | - (NSDictionary *)textAttributes {
306 | if (_textAttributes == nil) {
307 | _textAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor blueColor]};
308 | }
309 |
310 | return _textAttributes;
311 | }
312 |
313 | - (NSDictionary *)buttonTitleAttributes {
314 | if (_buttonTitleAttributes == nil) {
315 | _buttonTitleAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor blueColor]};
316 | }
317 |
318 | return _buttonTitleAttributes;
319 | }
320 |
321 |
322 | - (UIPickerView *)pickerView {
323 | if (_pickerView == nil) {
324 |
325 | _pickerView = [[UIPickerView alloc]initWithFrame:CGRectMake(0, LQPickerView_buttonHeight, LQPickerView_screenWidth, LQPickerView_pickerHeight - LQPickerView_buttonHeight)];
326 | _pickerView.delegate = self;
327 | _pickerView.dataSource = self;
328 | [self addSubview:_pickerView];
329 | }
330 |
331 | return _pickerView;
332 | }
333 |
334 | - (CALayer *)topLine {
335 | if (_topLine == nil) {
336 | _topLine = [CALayer layer];
337 | _topLine.backgroundColor = self.topLineColor.CGColor;
338 | [self.layer addSublayer:_topLine];
339 | }
340 |
341 | return _topLine;
342 | }
343 | /*
344 | // Only override drawRect: if you perform custom drawing.
345 | // An empty implementation adversely affects performance during animation.
346 | - (void)drawRect:(CGRect)rect {
347 | // Drawing code
348 | }
349 | */
350 |
351 | @end
352 |
353 | #pragma mark - 选择器数据源model
354 | @implementation LQPickerItem
355 |
356 | - (void) loadData:(NSInteger)count config:(void(^)(LQPickerItem *item, NSInteger index)) config {
357 | if (count <= 0) {
358 | NSLog(@"至少需要一个数据源!");
359 | return;
360 | }
361 |
362 | NSMutableArray *temps = [NSMutableArray arrayWithCapacity:count];
363 | for (int i = 0; i < count; i++) {
364 | LQPickerItem *city = [[LQPickerItem alloc]init];
365 | if (config) {
366 | config(city, i);
367 | }
368 |
369 | [temps addObject:city];
370 | }
371 |
372 | self.datas = [NSArray arrayWithArray:temps];
373 | }
374 |
375 | @end
376 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 913AD67C1D7528B8005DA1CA /* 40fe711f9b754b596159f3a6.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 913AD67B1D7528B8005DA1CA /* 40fe711f9b754b596159f3a6.jpg */; };
11 | 91D23E2E1D740A160033A791 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D23E2D1D740A160033A791 /* main.m */; };
12 | 91D23E311D740A160033A791 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D23E301D740A160033A791 /* AppDelegate.m */; };
13 | 91D23E341D740A160033A791 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D23E331D740A160033A791 /* ViewController.m */; };
14 | 91D23E371D740A160033A791 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 91D23E351D740A160033A791 /* Main.storyboard */; };
15 | 91D23E391D740A160033A791 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 91D23E381D740A160033A791 /* Assets.xcassets */; };
16 | 91D23E3C1D740A160033A791 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 91D23E3A1D740A160033A791 /* LaunchScreen.storyboard */; };
17 | 91D23E471D740A160033A791 /* LZCityPickerUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D23E461D740A160033A791 /* LZCityPickerUITests.m */; };
18 | 91D23E561D740A670033A791 /* Address.plist in Resources */ = {isa = PBXBuildFile; fileRef = 91D23E551D740A670033A791 /* Address.plist */; };
19 | D2B61FD220FE32E00085AAA6 /* LQPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B61FCC20FE32E00085AAA6 /* LQPickerView.m */; };
20 | D2B61FD420FE32E00085AAA6 /* LQCityPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B61FCE20FE32E00085AAA6 /* LQCityPicker.m */; };
21 | /* End PBXBuildFile section */
22 |
23 | /* Begin PBXContainerItemProxy section */
24 | 91D23E431D740A160033A791 /* PBXContainerItemProxy */ = {
25 | isa = PBXContainerItemProxy;
26 | containerPortal = 91D23E211D740A160033A791 /* Project object */;
27 | proxyType = 1;
28 | remoteGlobalIDString = 91D23E281D740A160033A791;
29 | remoteInfo = LZCityPicker;
30 | };
31 | /* End PBXContainerItemProxy section */
32 |
33 | /* Begin PBXFileReference section */
34 | 913AD67B1D7528B8005DA1CA /* 40fe711f9b754b596159f3a6.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = 40fe711f9b754b596159f3a6.jpg; sourceTree = ""; };
35 | 91D23E291D740A160033A791 /* LZCityPicker.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LZCityPicker.app; sourceTree = BUILT_PRODUCTS_DIR; };
36 | 91D23E2D1D740A160033A791 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
37 | 91D23E2F1D740A160033A791 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
38 | 91D23E301D740A160033A791 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; };
39 | 91D23E321D740A160033A791 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; };
40 | 91D23E331D740A160033A791 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; };
41 | 91D23E361D740A160033A791 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
42 | 91D23E381D740A160033A791 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
43 | 91D23E3B1D740A160033A791 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
44 | 91D23E3D1D740A160033A791 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
45 | 91D23E421D740A160033A791 /* LZCityPickerUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LZCityPickerUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
46 | 91D23E461D740A160033A791 /* LZCityPickerUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LZCityPickerUITests.m; sourceTree = ""; };
47 | 91D23E481D740A160033A791 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
48 | 91D23E551D740A670033A791 /* Address.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Address.plist; sourceTree = ""; };
49 | D2B61FCC20FE32E00085AAA6 /* LQPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LQPickerView.m; sourceTree = ""; };
50 | D2B61FCE20FE32E00085AAA6 /* LQCityPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LQCityPicker.m; sourceTree = ""; };
51 | D2B61FCF20FE32E00085AAA6 /* LQPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LQPickerView.h; sourceTree = ""; };
52 | D2B61FD120FE32E00085AAA6 /* LQCityPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LQCityPicker.h; sourceTree = ""; };
53 | /* End PBXFileReference section */
54 |
55 | /* Begin PBXFrameworksBuildPhase section */
56 | 91D23E261D740A160033A791 /* Frameworks */ = {
57 | isa = PBXFrameworksBuildPhase;
58 | buildActionMask = 2147483647;
59 | files = (
60 | );
61 | runOnlyForDeploymentPostprocessing = 0;
62 | };
63 | 91D23E3F1D740A160033A791 /* Frameworks */ = {
64 | isa = PBXFrameworksBuildPhase;
65 | buildActionMask = 2147483647;
66 | files = (
67 | );
68 | runOnlyForDeploymentPostprocessing = 0;
69 | };
70 | /* End PBXFrameworksBuildPhase section */
71 |
72 | /* Begin PBXGroup section */
73 | 91D23E201D740A160033A791 = {
74 | isa = PBXGroup;
75 | children = (
76 | 91D23E2B1D740A160033A791 /* LZCityPicker */,
77 | 91D23E451D740A160033A791 /* LZCityPickerUITests */,
78 | 91D23E2A1D740A160033A791 /* Products */,
79 | );
80 | sourceTree = "";
81 | };
82 | 91D23E2A1D740A160033A791 /* Products */ = {
83 | isa = PBXGroup;
84 | children = (
85 | 91D23E291D740A160033A791 /* LZCityPicker.app */,
86 | 91D23E421D740A160033A791 /* LZCityPickerUITests.xctest */,
87 | );
88 | name = Products;
89 | sourceTree = "";
90 | };
91 | 91D23E2B1D740A160033A791 /* LZCityPicker */ = {
92 | isa = PBXGroup;
93 | children = (
94 | 91D23E551D740A670033A791 /* Address.plist */,
95 | D2B61FCB20FE32E00085AAA6 /* File */,
96 | 913AD67B1D7528B8005DA1CA /* 40fe711f9b754b596159f3a6.jpg */,
97 | 91D23E2F1D740A160033A791 /* AppDelegate.h */,
98 | 91D23E301D740A160033A791 /* AppDelegate.m */,
99 | 91D23E321D740A160033A791 /* ViewController.h */,
100 | 91D23E331D740A160033A791 /* ViewController.m */,
101 | 91D23E351D740A160033A791 /* Main.storyboard */,
102 | 91D23E381D740A160033A791 /* Assets.xcassets */,
103 | 91D23E3A1D740A160033A791 /* LaunchScreen.storyboard */,
104 | 91D23E3D1D740A160033A791 /* Info.plist */,
105 | 91D23E2C1D740A160033A791 /* Supporting Files */,
106 | );
107 | path = LZCityPicker;
108 | sourceTree = "";
109 | };
110 | 91D23E2C1D740A160033A791 /* Supporting Files */ = {
111 | isa = PBXGroup;
112 | children = (
113 | 91D23E2D1D740A160033A791 /* main.m */,
114 | );
115 | name = "Supporting Files";
116 | sourceTree = "";
117 | };
118 | 91D23E451D740A160033A791 /* LZCityPickerUITests */ = {
119 | isa = PBXGroup;
120 | children = (
121 | 91D23E461D740A160033A791 /* LZCityPickerUITests.m */,
122 | 91D23E481D740A160033A791 /* Info.plist */,
123 | );
124 | path = LZCityPickerUITests;
125 | sourceTree = "";
126 | };
127 | D2B61FCB20FE32E00085AAA6 /* File */ = {
128 | isa = PBXGroup;
129 | children = (
130 | D2B61FCF20FE32E00085AAA6 /* LQPickerView.h */,
131 | D2B61FCC20FE32E00085AAA6 /* LQPickerView.m */,
132 | D2B61FD120FE32E00085AAA6 /* LQCityPicker.h */,
133 | D2B61FCE20FE32E00085AAA6 /* LQCityPicker.m */,
134 | );
135 | name = File;
136 | path = ../../File;
137 | sourceTree = "";
138 | };
139 | /* End PBXGroup section */
140 |
141 | /* Begin PBXNativeTarget section */
142 | 91D23E281D740A160033A791 /* LZCityPicker */ = {
143 | isa = PBXNativeTarget;
144 | buildConfigurationList = 91D23E4B1D740A160033A791 /* Build configuration list for PBXNativeTarget "LZCityPicker" */;
145 | buildPhases = (
146 | 91D23E251D740A160033A791 /* Sources */,
147 | 91D23E261D740A160033A791 /* Frameworks */,
148 | 91D23E271D740A160033A791 /* Resources */,
149 | );
150 | buildRules = (
151 | );
152 | dependencies = (
153 | );
154 | name = LZCityPicker;
155 | productName = LZCityPicker;
156 | productReference = 91D23E291D740A160033A791 /* LZCityPicker.app */;
157 | productType = "com.apple.product-type.application";
158 | };
159 | 91D23E411D740A160033A791 /* LZCityPickerUITests */ = {
160 | isa = PBXNativeTarget;
161 | buildConfigurationList = 91D23E4E1D740A160033A791 /* Build configuration list for PBXNativeTarget "LZCityPickerUITests" */;
162 | buildPhases = (
163 | 91D23E3E1D740A160033A791 /* Sources */,
164 | 91D23E3F1D740A160033A791 /* Frameworks */,
165 | 91D23E401D740A160033A791 /* Resources */,
166 | );
167 | buildRules = (
168 | );
169 | dependencies = (
170 | 91D23E441D740A160033A791 /* PBXTargetDependency */,
171 | );
172 | name = LZCityPickerUITests;
173 | productName = LZCityPickerUITests;
174 | productReference = 91D23E421D740A160033A791 /* LZCityPickerUITests.xctest */;
175 | productType = "com.apple.product-type.bundle.ui-testing";
176 | };
177 | /* End PBXNativeTarget section */
178 |
179 | /* Begin PBXProject section */
180 | 91D23E211D740A160033A791 /* Project object */ = {
181 | isa = PBXProject;
182 | attributes = {
183 | LastUpgradeCheck = 0730;
184 | ORGANIZATIONNAME = Artup;
185 | TargetAttributes = {
186 | 91D23E281D740A160033A791 = {
187 | CreatedOnToolsVersion = 7.3;
188 | DevelopmentTeam = M5AQP3WXJE;
189 | };
190 | 91D23E411D740A160033A791 = {
191 | CreatedOnToolsVersion = 7.3;
192 | TestTargetID = 91D23E281D740A160033A791;
193 | };
194 | };
195 | };
196 | buildConfigurationList = 91D23E241D740A160033A791 /* Build configuration list for PBXProject "LZCityPicker" */;
197 | compatibilityVersion = "Xcode 3.2";
198 | developmentRegion = English;
199 | hasScannedForEncodings = 0;
200 | knownRegions = (
201 | English,
202 | en,
203 | Base,
204 | );
205 | mainGroup = 91D23E201D740A160033A791;
206 | productRefGroup = 91D23E2A1D740A160033A791 /* Products */;
207 | projectDirPath = "";
208 | projectRoot = "";
209 | targets = (
210 | 91D23E281D740A160033A791 /* LZCityPicker */,
211 | 91D23E411D740A160033A791 /* LZCityPickerUITests */,
212 | );
213 | };
214 | /* End PBXProject section */
215 |
216 | /* Begin PBXResourcesBuildPhase section */
217 | 91D23E271D740A160033A791 /* Resources */ = {
218 | isa = PBXResourcesBuildPhase;
219 | buildActionMask = 2147483647;
220 | files = (
221 | 913AD67C1D7528B8005DA1CA /* 40fe711f9b754b596159f3a6.jpg in Resources */,
222 | 91D23E3C1D740A160033A791 /* LaunchScreen.storyboard in Resources */,
223 | 91D23E561D740A670033A791 /* Address.plist in Resources */,
224 | 91D23E391D740A160033A791 /* Assets.xcassets in Resources */,
225 | 91D23E371D740A160033A791 /* Main.storyboard in Resources */,
226 | );
227 | runOnlyForDeploymentPostprocessing = 0;
228 | };
229 | 91D23E401D740A160033A791 /* Resources */ = {
230 | isa = PBXResourcesBuildPhase;
231 | buildActionMask = 2147483647;
232 | files = (
233 | );
234 | runOnlyForDeploymentPostprocessing = 0;
235 | };
236 | /* End PBXResourcesBuildPhase section */
237 |
238 | /* Begin PBXSourcesBuildPhase section */
239 | 91D23E251D740A160033A791 /* Sources */ = {
240 | isa = PBXSourcesBuildPhase;
241 | buildActionMask = 2147483647;
242 | files = (
243 | 91D23E341D740A160033A791 /* ViewController.m in Sources */,
244 | 91D23E311D740A160033A791 /* AppDelegate.m in Sources */,
245 | D2B61FD420FE32E00085AAA6 /* LQCityPicker.m in Sources */,
246 | 91D23E2E1D740A160033A791 /* main.m in Sources */,
247 | D2B61FD220FE32E00085AAA6 /* LQPickerView.m in Sources */,
248 | );
249 | runOnlyForDeploymentPostprocessing = 0;
250 | };
251 | 91D23E3E1D740A160033A791 /* Sources */ = {
252 | isa = PBXSourcesBuildPhase;
253 | buildActionMask = 2147483647;
254 | files = (
255 | 91D23E471D740A160033A791 /* LZCityPickerUITests.m in Sources */,
256 | );
257 | runOnlyForDeploymentPostprocessing = 0;
258 | };
259 | /* End PBXSourcesBuildPhase section */
260 |
261 | /* Begin PBXTargetDependency section */
262 | 91D23E441D740A160033A791 /* PBXTargetDependency */ = {
263 | isa = PBXTargetDependency;
264 | target = 91D23E281D740A160033A791 /* LZCityPicker */;
265 | targetProxy = 91D23E431D740A160033A791 /* PBXContainerItemProxy */;
266 | };
267 | /* End PBXTargetDependency section */
268 |
269 | /* Begin PBXVariantGroup section */
270 | 91D23E351D740A160033A791 /* Main.storyboard */ = {
271 | isa = PBXVariantGroup;
272 | children = (
273 | 91D23E361D740A160033A791 /* Base */,
274 | );
275 | name = Main.storyboard;
276 | sourceTree = "";
277 | };
278 | 91D23E3A1D740A160033A791 /* LaunchScreen.storyboard */ = {
279 | isa = PBXVariantGroup;
280 | children = (
281 | 91D23E3B1D740A160033A791 /* Base */,
282 | );
283 | name = LaunchScreen.storyboard;
284 | sourceTree = "";
285 | };
286 | /* End PBXVariantGroup section */
287 |
288 | /* Begin XCBuildConfiguration section */
289 | 91D23E491D740A160033A791 /* Debug */ = {
290 | isa = XCBuildConfiguration;
291 | buildSettings = {
292 | ALWAYS_SEARCH_USER_PATHS = NO;
293 | CLANG_ANALYZER_NONNULL = YES;
294 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
295 | CLANG_CXX_LIBRARY = "libc++";
296 | CLANG_ENABLE_MODULES = YES;
297 | CLANG_ENABLE_OBJC_ARC = YES;
298 | CLANG_WARN_BOOL_CONVERSION = YES;
299 | CLANG_WARN_CONSTANT_CONVERSION = YES;
300 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
301 | CLANG_WARN_EMPTY_BODY = YES;
302 | CLANG_WARN_ENUM_CONVERSION = YES;
303 | CLANG_WARN_INT_CONVERSION = YES;
304 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
305 | CLANG_WARN_UNREACHABLE_CODE = YES;
306 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
307 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
308 | COPY_PHASE_STRIP = NO;
309 | DEBUG_INFORMATION_FORMAT = dwarf;
310 | ENABLE_STRICT_OBJC_MSGSEND = YES;
311 | ENABLE_TESTABILITY = YES;
312 | GCC_C_LANGUAGE_STANDARD = gnu99;
313 | GCC_DYNAMIC_NO_PIC = NO;
314 | GCC_NO_COMMON_BLOCKS = YES;
315 | GCC_OPTIMIZATION_LEVEL = 0;
316 | GCC_PREPROCESSOR_DEFINITIONS = (
317 | "DEBUG=1",
318 | "$(inherited)",
319 | );
320 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
321 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
322 | GCC_WARN_UNDECLARED_SELECTOR = YES;
323 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
324 | GCC_WARN_UNUSED_FUNCTION = YES;
325 | GCC_WARN_UNUSED_VARIABLE = YES;
326 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
327 | MTL_ENABLE_DEBUG_INFO = YES;
328 | ONLY_ACTIVE_ARCH = YES;
329 | SDKROOT = iphoneos;
330 | TARGETED_DEVICE_FAMILY = "1,2";
331 | };
332 | name = Debug;
333 | };
334 | 91D23E4A1D740A160033A791 /* Release */ = {
335 | isa = XCBuildConfiguration;
336 | buildSettings = {
337 | ALWAYS_SEARCH_USER_PATHS = NO;
338 | CLANG_ANALYZER_NONNULL = YES;
339 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
340 | CLANG_CXX_LIBRARY = "libc++";
341 | CLANG_ENABLE_MODULES = YES;
342 | CLANG_ENABLE_OBJC_ARC = YES;
343 | CLANG_WARN_BOOL_CONVERSION = YES;
344 | CLANG_WARN_CONSTANT_CONVERSION = YES;
345 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
346 | CLANG_WARN_EMPTY_BODY = YES;
347 | CLANG_WARN_ENUM_CONVERSION = YES;
348 | CLANG_WARN_INT_CONVERSION = YES;
349 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
350 | CLANG_WARN_UNREACHABLE_CODE = YES;
351 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
352 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
353 | COPY_PHASE_STRIP = NO;
354 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
355 | ENABLE_NS_ASSERTIONS = NO;
356 | ENABLE_STRICT_OBJC_MSGSEND = YES;
357 | GCC_C_LANGUAGE_STANDARD = gnu99;
358 | GCC_NO_COMMON_BLOCKS = YES;
359 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
360 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
361 | GCC_WARN_UNDECLARED_SELECTOR = YES;
362 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
363 | GCC_WARN_UNUSED_FUNCTION = YES;
364 | GCC_WARN_UNUSED_VARIABLE = YES;
365 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
366 | MTL_ENABLE_DEBUG_INFO = NO;
367 | SDKROOT = iphoneos;
368 | TARGETED_DEVICE_FAMILY = "1,2";
369 | VALIDATE_PRODUCT = YES;
370 | };
371 | name = Release;
372 | };
373 | 91D23E4C1D740A160033A791 /* Debug */ = {
374 | isa = XCBuildConfiguration;
375 | buildSettings = {
376 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
377 | DEVELOPMENT_TEAM = M5AQP3WXJE;
378 | INFOPLIST_FILE = LZCityPicker/Info.plist;
379 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
380 | PRODUCT_BUNDLE_IDENTIFIER = com.artup.LZCityPicker;
381 | PRODUCT_NAME = "$(TARGET_NAME)";
382 | };
383 | name = Debug;
384 | };
385 | 91D23E4D1D740A160033A791 /* Release */ = {
386 | isa = XCBuildConfiguration;
387 | buildSettings = {
388 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
389 | DEVELOPMENT_TEAM = M5AQP3WXJE;
390 | INFOPLIST_FILE = LZCityPicker/Info.plist;
391 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
392 | PRODUCT_BUNDLE_IDENTIFIER = com.artup.LZCityPicker;
393 | PRODUCT_NAME = "$(TARGET_NAME)";
394 | };
395 | name = Release;
396 | };
397 | 91D23E4F1D740A160033A791 /* Debug */ = {
398 | isa = XCBuildConfiguration;
399 | buildSettings = {
400 | INFOPLIST_FILE = LZCityPickerUITests/Info.plist;
401 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
402 | PRODUCT_BUNDLE_IDENTIFIER = com.artup.LZCityPickerUITests;
403 | PRODUCT_NAME = "$(TARGET_NAME)";
404 | TEST_TARGET_NAME = LZCityPicker;
405 | };
406 | name = Debug;
407 | };
408 | 91D23E501D740A160033A791 /* Release */ = {
409 | isa = XCBuildConfiguration;
410 | buildSettings = {
411 | INFOPLIST_FILE = LZCityPickerUITests/Info.plist;
412 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
413 | PRODUCT_BUNDLE_IDENTIFIER = com.artup.LZCityPickerUITests;
414 | PRODUCT_NAME = "$(TARGET_NAME)";
415 | TEST_TARGET_NAME = LZCityPicker;
416 | };
417 | name = Release;
418 | };
419 | /* End XCBuildConfiguration section */
420 |
421 | /* Begin XCConfigurationList section */
422 | 91D23E241D740A160033A791 /* Build configuration list for PBXProject "LZCityPicker" */ = {
423 | isa = XCConfigurationList;
424 | buildConfigurations = (
425 | 91D23E491D740A160033A791 /* Debug */,
426 | 91D23E4A1D740A160033A791 /* Release */,
427 | );
428 | defaultConfigurationIsVisible = 0;
429 | defaultConfigurationName = Release;
430 | };
431 | 91D23E4B1D740A160033A791 /* Build configuration list for PBXNativeTarget "LZCityPicker" */ = {
432 | isa = XCConfigurationList;
433 | buildConfigurations = (
434 | 91D23E4C1D740A160033A791 /* Debug */,
435 | 91D23E4D1D740A160033A791 /* Release */,
436 | );
437 | defaultConfigurationIsVisible = 0;
438 | defaultConfigurationName = Release;
439 | };
440 | 91D23E4E1D740A160033A791 /* Build configuration list for PBXNativeTarget "LZCityPickerUITests" */ = {
441 | isa = XCConfigurationList;
442 | buildConfigurations = (
443 | 91D23E4F1D740A160033A791 /* Debug */,
444 | 91D23E501D740A160033A791 /* Release */,
445 | );
446 | defaultConfigurationIsVisible = 0;
447 | defaultConfigurationName = Release;
448 | };
449 | /* End XCConfigurationList section */
450 | };
451 | rootObject = 91D23E211D740A160033A791 /* Project object */;
452 | }
453 |
--------------------------------------------------------------------------------
/LZCityPicker/LZCityPicker/Address.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 北京市
6 |
7 |
8 | 北京市
9 |
10 | 东城区
11 | 西城区
12 | 朝阳区
13 | 丰台区
14 | 石景山区
15 | 海淀区
16 | 门头沟区
17 | 房山区
18 | 通州区
19 | 顺义区
20 | 昌平区
21 | 大兴区
22 | 怀柔区
23 | 平谷区
24 | 密云县
25 | 延庆县
26 |
27 |
28 |
29 | 天津市
30 |
31 |
32 | 天津市
33 |
34 | 和平区
35 | 河东区
36 | 河西区
37 | 南开区
38 | 河北区
39 | 红桥区
40 | 塘沽区
41 | 汉沽区
42 | 大港区
43 | 东丽区
44 | 西青区
45 | 津南区
46 | 北辰区
47 | 武清区
48 | 宝坻区
49 | 宁河县
50 | 静海县
51 | 蓟县
52 |
53 |
54 |
55 | 河北省
56 |
57 |
58 | 石家庄市
59 |
60 | 长安区
61 | 桥东区
62 | 桥西区
63 | 新华区
64 | 井陉矿区
65 | 裕华区
66 | 井陉县
67 | 正定县
68 | 栾城县
69 | 行唐县
70 | 灵寿县
71 | 高邑县
72 | 深泽县
73 | 赞皇县
74 | 无极县
75 | 平山县
76 | 元氏县
77 | 赵县
78 | 辛集
79 | 藁城
80 | 晋州
81 | 新乐
82 | 鹿泉
83 |
84 | 唐山市
85 |
86 | 路南区
87 | 路北区
88 | 古冶区
89 | 开平区
90 | 丰南区
91 | 丰润区
92 | 滦县
93 | 滦南县
94 | 乐亭县
95 | 迁西县
96 | 玉田县
97 | 唐海县
98 | 遵化
99 | 迁安
100 |
101 | 秦皇岛市
102 |
103 | 海港区
104 | 山海关区
105 | 戴河区
106 | 青龙满族自治县
107 | 昌黎县
108 | 抚宁县
109 | 卢龙县
110 |
111 | 邯郸市
112 |
113 | 邯山区
114 | 丛台区
115 | 复兴区
116 | 峰峰矿区
117 | 邯郸县
118 | 临漳县
119 | 成安县
120 | 大名县
121 | 涉县
122 | 磁县
123 | 肥乡县
124 | 永年县
125 | 邱县
126 | 鸡泽县
127 | 广平县
128 | 馆陶县
129 | 魏县
130 | 曲周县
131 | 武安
132 |
133 | 邢台市
134 |
135 | 桥东区
136 | 桥西区
137 | 邢台县
138 | 临城县
139 | 内丘县
140 | 柏乡县
141 | 隆尧县
142 | 任县
143 | 南和县
144 | 宁晋县
145 | 巨鹿县
146 | 新河县
147 | 广宗县
148 | 平乡县
149 | 威县
150 | 清河县
151 | 临西县
152 | 南宫
153 | 沙河
154 |
155 | 保定市
156 |
157 | 新区
158 | 北区
159 | 南区
160 | 满城县
161 | 清苑县
162 | 涞水县
163 | 阜平县
164 | 徐水县
165 | 定兴县
166 | 唐县
167 | 高阳县
168 | 容城县
169 | 涞源县
170 | 望都县
171 | 安新县
172 | 易县
173 | 曲阳县
174 | 蠡县
175 | 顺平县
176 | 博野县
177 | 雄县
178 | 涿州
179 | 定州
180 | 安国
181 | 高碑店
182 |
183 | 张家口市
184 |
185 | 桥东区
186 | 桥西区
187 | 宣化区
188 | 下花园区
189 | 宣化县
190 | 张北县
191 | 康保县
192 | 沽源县
193 | 尚义县
194 | 蔚县
195 | 阳原县
196 | 怀安县
197 | 万全县
198 | 怀来县
199 | 涿鹿县
200 | 赤城县
201 | 崇礼县
202 |
203 | 承德市
204 |
205 | 双桥区
206 | 双滦区
207 | 鹰手营子矿区
208 | 承德县
209 | 兴隆县
210 | 平泉县
211 | 滦平县
212 | 隆化县
213 | 丰宁满族自治县
214 | 宽城满族自治县
215 | 围场满族蒙古族自治县
216 |
217 | 沧州市
218 |
219 | 新华区
220 | 运河区
221 | 沧县
222 | 青县
223 | 东光县
224 | 海兴县
225 | 盐山县
226 | 肃宁县
227 | 南皮县
228 | 吴桥县
229 | 献县
230 | 孟村回族自治县
231 | 泊头
232 | 任丘
233 | 黄骅
234 | 河间
235 |
236 | 廊坊市
237 |
238 | 安次区
239 | 广阳区
240 | 固安县
241 | 永清县
242 | 香河县
243 | 大城县
244 | 文安县
245 | 大厂回族自治县
246 | 霸州
247 | 三河
248 |
249 | 衡水市
250 |
251 | 桃城区
252 | 枣强县
253 | 武邑县
254 | 武强县
255 | 饶阳县
256 | 安平县
257 | 故城县
258 | 景县
259 | 阜城县
260 | 冀州
261 | 深州
262 |
263 |
264 |
265 | 山西省
266 |
267 |
268 | 太原市
269 |
270 | 小店区
271 | 迎泽区
272 | 杏花岭区
273 | 尖草坪区
274 | 万柏林区
275 | 晋源区
276 | 清徐县
277 | 阳曲县
278 | 娄烦县
279 | 古交
280 |
281 | 大同市
282 |
283 | 城区
284 | 南郊区
285 | 新荣区
286 | 阳高县
287 | 天镇县
288 | 广灵县
289 | 灵丘县
290 | 浑源县
291 | 左云县
292 | 大同县
293 |
294 | 阳泉市
295 |
296 | 城区
297 | 矿区
298 | 郊区
299 | 平定县
300 | 盂县
301 |
302 | 长治市
303 |
304 | 城区
305 | 郊区
306 | 长治县
307 | 襄垣县
308 | 屯留县
309 | 平顺县
310 | 黎城县
311 | 壶关县
312 | 长子县
313 | 武乡县
314 | 沁县
315 | 沁源县
316 | 潞城
317 |
318 | 晋城市
319 |
320 | 城区
321 | 沁水县
322 | 阳城县
323 | 陵川县
324 | 泽州县
325 | 高平
326 |
327 | 朔州市
328 |
329 | 朔城区
330 | 平鲁区
331 | 山阴县
332 | 应县
333 | 右玉县
334 | 怀仁县
335 |
336 | 晋中市
337 |
338 | 榆次区
339 | 榆社县
340 | 左权县
341 | 和顺县
342 | 昔阳县
343 | 寿阳县
344 | 太谷县
345 | 祁县
346 | 平遥县
347 | 灵石县
348 | 介休
349 |
350 | 运城市
351 |
352 | 盐湖区
353 | 临猗县
354 | 万荣县
355 | 闻喜县
356 | 稷山县
357 | 新绛县
358 | 绛县
359 | 垣曲县
360 | 夏县
361 | 平陆县
362 | 芮城县
363 | 永济
364 | 河津
365 |
366 | 忻州市
367 |
368 | 忻府区
369 | 定襄县
370 | 五台县
371 | 代县
372 | 繁峙县
373 | 宁武县
374 | 静乐县
375 | 神池县
376 | 五寨县
377 | 岢岚县
378 | 河曲县
379 | 保德县
380 | 偏关县
381 | 原平
382 |
383 | 临汾市
384 |
385 | 尧都区
386 | 曲沃县
387 | 翼城县
388 | 襄汾县
389 | 洪洞县
390 | 古县
391 | 安泽县
392 | 浮山县
393 | 吉县
394 | 乡宁县
395 | 大宁县
396 | 隰县
397 | 永和县
398 | 蒲县
399 | 汾西县
400 | 侯马
401 | 霍州
402 |
403 | 吕梁市
404 |
405 | 离石区
406 | 文水县
407 | 交城县
408 | 兴县
409 | 临县
410 | 柳林县
411 | 石楼县
412 | 岚县
413 | 方山县
414 | 中阳县
415 | 交口县
416 | 孝义
417 | 汾阳
418 |
419 |
420 |
421 | 内蒙古
422 |
423 |
424 | 呼和浩特市
425 |
426 | 新城区
427 | 回民区
428 | 玉泉区
429 | 赛罕区
430 | 土默特左旗
431 | 托克托县
432 | 和林格尔县
433 | 清水河县
434 | 武川县
435 |
436 | 包头市
437 |
438 | 东河区
439 | 昆都仑区
440 | 青山区
441 | 石拐区
442 | 白云矿区
443 | 九原区
444 | 土默特右旗
445 | 固阳县
446 | 达尔罕茂明安联合旗
447 |
448 | 乌海市
449 |
450 | 海勃湾区
451 | 海南区
452 | 乌达区
453 |
454 | 赤峰市
455 |
456 | 红山区
457 | 元宝山区
458 | 松山区
459 | 阿鲁科尔沁旗
460 | 巴林左旗
461 | 巴林右旗
462 | 林西县
463 | 克什克腾旗
464 | 翁牛特旗
465 | 喀喇沁旗
466 | 宁城县
467 | 敖汉旗
468 |
469 | 通辽市
470 |
471 | 科尔沁区
472 | 科尔沁左翼中旗
473 | 科尔沁左翼后旗
474 | 开鲁县
475 | 库伦旗
476 | 奈曼旗
477 | 扎鲁特旗
478 | 霍林郭勒
479 |
480 | 鄂尔多斯市
481 |
482 | 东胜区
483 | 达拉特旗
484 | 准格尔旗
485 | 鄂托克前旗
486 | 鄂托克旗
487 | 杭锦旗
488 | 乌审旗
489 | 伊金霍洛旗
490 |
491 | 呼伦贝尔市
492 |
493 | 海拉尔区
494 | 阿荣旗
495 | 莫力达瓦达斡尔族自治旗
496 | 鄂伦春自治旗
497 | 鄂温克族自治旗
498 | 陈巴尔虎旗
499 | 新巴尔虎左旗
500 | 新巴尔虎右旗
501 | 满洲里
502 | 牙克石
503 | 扎兰屯
504 | 额尔古纳
505 | 根河
506 |
507 | 巴彦淖尔市
508 |
509 | 临河区
510 | 五原县
511 | 磴口县
512 | 乌拉特前旗
513 | 乌拉特中旗
514 | 乌拉特后旗
515 | 杭锦后旗
516 |
517 | 乌兰察布市
518 |
519 | 集宁区
520 | 卓资县
521 | 化德县
522 | 商都县
523 | 兴和县
524 | 凉城县
525 | 察哈尔右翼前旗
526 | 察哈尔右翼中旗
527 | 察哈尔右翼后旗
528 | 四子王旗
529 | 丰镇
530 |
531 | 兴安盟
532 |
533 | 乌兰浩特
534 | 阿尔山
535 | 科尔沁右翼前旗
536 | 科尔沁右翼中旗
537 | 扎赉特旗
538 | 突泉县
539 |
540 | 锡林郭勒盟
541 |
542 | 二连浩特
543 | 锡林浩特
544 | 阿巴嘎旗
545 | 苏尼特左旗
546 | 苏尼特右旗
547 | 东乌珠穆沁旗
548 | 西乌珠穆沁旗
549 | 太仆寺旗
550 | 镶黄旗
551 | 正镶白旗
552 | 正蓝旗
553 | 多伦县
554 |
555 | 阿拉善盟
556 |
557 | 阿拉善左旗
558 | 阿拉善右旗
559 | 额济纳旗
560 |
561 |
562 |
563 | 辽宁省
564 |
565 |
566 | 沈阳市
567 |
568 | 和平区
569 | 沈河区
570 | 大东区
571 | 皇姑区
572 | 铁西区
573 | 苏家屯区
574 | 东陵区
575 | 新城子区
576 | 于洪区
577 | 辽中县
578 | 康平县
579 | 法库县
580 | 新民
581 |
582 | 大连市
583 |
584 | 中山区
585 | 西岗区
586 | 沙河口区
587 | 甘井子区
588 | 旅顺口区
589 | 金州区
590 | 长海县
591 | 瓦房店
592 | 普兰店
593 | 庄河
594 |
595 | 鞍山市
596 |
597 | 铁东区
598 | 铁西区
599 | 立山区
600 | 千山区
601 | 台安县
602 | 岫岩满族自治县
603 | 海城
604 |
605 | 抚顺市
606 |
607 | 新抚区
608 | 东洲区
609 | 望花区
610 | 顺城区
611 | 抚顺县
612 | 新宾满族自治县
613 | 清原满族自治县
614 |
615 | 本溪市
616 |
617 | 平山区
618 | 溪湖区
619 | 明山区
620 | 南芬区
621 | 本溪满族自治县
622 | 桓仁满族自治县
623 |
624 | 丹东市
625 |
626 | 元宝区
627 | 振兴区
628 | 振安区
629 | 宽甸满族自治县
630 | 东港
631 | 凤城
632 |
633 | 锦州市
634 |
635 | 古塔区
636 | 凌河区
637 | 太和区
638 | 黑山县
639 | 义县
640 | 凌海
641 | 北宁
642 |
643 | 营口市
644 |
645 | 站前区
646 | 西区
647 | 鲅鱼圈区
648 | 老边区
649 | 盖州
650 | 大石桥
651 |
652 | 阜新市
653 |
654 | 海州区
655 | 新邱区
656 | 太平区
657 | 清河门区
658 | 细河区
659 | 阜新蒙古族自治县
660 | 彰武县
661 |
662 | 辽阳市
663 |
664 | 白塔区
665 | 文圣区
666 | 宏伟区
667 | 弓长岭区
668 | 太子河区
669 | 辽阳县
670 | 灯塔
671 |
672 | 盘锦市
673 |
674 | 双台子区
675 | 兴隆台区
676 | 大洼县
677 | 盘山县
678 |
679 | 铁岭市
680 |
681 | 银州区
682 | 清河区
683 | 铁岭县
684 | 西丰县
685 | 昌图县
686 | 调兵山
687 | 开原
688 |
689 | 朝阳市
690 |
691 | 双塔区
692 | 龙城区
693 | 朝阳县
694 | 建平县
695 | 喀喇沁左翼蒙古族自治县
696 | 北票
697 | 凌源
698 |
699 | 葫芦岛市
700 |
701 | 连山区
702 | 龙港区
703 | 南票区
704 | 绥中县
705 | 建昌县
706 | 兴城
707 |
708 |
709 |
710 | 吉林省
711 |
712 |
713 | 长春市
714 |
715 | 南关区
716 | 宽城区
717 | 朝阳区
718 | 二道区
719 | 绿园区
720 | 双阳区
721 | 农安县
722 | 九台
723 | 榆树
724 | 德惠
725 |
726 | 吉林市
727 |
728 | 昌邑区
729 | 龙潭区
730 | 船营区
731 | 丰满区
732 | 永吉县
733 | 蛟河
734 | 桦甸
735 | 舒兰
736 | 磐石
737 |
738 | 四平市
739 |
740 | 铁西区
741 | 铁东区
742 | 梨树县
743 | 伊通满族自治县
744 | 公主岭
745 | 双辽
746 |
747 | 辽源市
748 |
749 | 龙山区
750 | 西安区
751 | 东丰县
752 | 东辽县
753 |
754 | 通化市
755 |
756 | 东昌区
757 | 二道江区
758 | 通化县
759 | 辉南县
760 | 柳河县
761 | 梅河口
762 | 集安
763 |
764 | 白山市
765 |
766 | 八道江区
767 | 抚松县
768 | 靖宇县
769 | 长白朝鲜族自治县
770 | 江源县
771 | 临江
772 |
773 | 松原市
774 |
775 | 宁江区
776 | 前郭尔罗斯蒙古族自治县
777 | 长岭县
778 | 乾安县
779 | 扶余县
780 |
781 | 白城市
782 |
783 | 洮北区
784 | 镇赉县
785 | 通榆县
786 | 洮南
787 | 大安
788 |
789 | 延边朝鲜族自治州
790 |
791 | 延吉
792 | 图们
793 | 敦化
794 | 珲春
795 | 龙井
796 | 和龙
797 | 汪清县
798 | 安图县
799 |
800 |
801 |
802 | 黑龙江省
803 |
804 |
805 | 哈尔滨市
806 |
807 | 道里区
808 | 南岗区
809 | 道外区
810 | 香坊区
811 | 动力区
812 | 平房区
813 | 松北区
814 | 呼兰区
815 | 依兰县
816 | 方正县
817 | 宾县
818 | 巴彦县
819 | 木兰县
820 | 通河县
821 | 延寿县
822 | 阿城
823 | 双城
824 | 尚志
825 | 五常
826 |
827 | 齐齐哈尔市
828 |
829 | 龙沙区
830 | 建华区
831 | 铁锋区
832 | 昂昂溪区
833 | 富拉尔基区
834 | 碾子山区
835 | 梅里斯达斡尔族区
836 | 龙江县
837 | 依安县
838 | 泰来县
839 | 甘南县
840 | 富裕县
841 | 克山县
842 | 克东县
843 | 拜泉县
844 | 讷河
845 |
846 | 鸡西市
847 |
848 | 鸡冠区
849 | 恒山区
850 | 滴道区
851 | 梨树区
852 | 城子河区
853 | 麻山区
854 | 鸡东县
855 | 虎林
856 | 密山
857 |
858 | 鹤岗市
859 |
860 | 向阳区
861 | 工农区
862 | 南山区
863 | 兴安区
864 | 东山区
865 | 兴山区
866 | 萝北县
867 | 绥滨县
868 |
869 | 双鸭山市
870 |
871 | 尖山区
872 | 岭东区
873 | 四方台区
874 | 宝山区
875 | 集贤县
876 | 友谊县
877 | 宝清县
878 | 饶河县
879 |
880 | 大庆市
881 |
882 | 萨尔图区
883 | 龙凤区
884 | 让胡路区
885 | 红岗区
886 | 大同区
887 | 肇州县
888 | 肇源县
889 | 林甸县
890 | 杜尔伯特蒙古族自治县
891 |
892 | 伊春市
893 |
894 | 伊春区
895 | 南岔区
896 | 友好区
897 | 西林区
898 | 翠峦区
899 | 新青区
900 | 美溪区
901 | 金山屯区
902 | 五营区
903 | 乌马河区
904 | 汤旺河区
905 | 带岭区
906 | 乌伊岭区
907 | 红星区
908 | 上甘岭区
909 | 嘉荫县
910 | 铁力
911 |
912 | 佳木斯市
913 |
914 | 永红区
915 | 向阳区
916 | 前进区
917 | 东风区
918 | 郊区
919 | 桦南县
920 | 桦川县
921 | 汤原县
922 | 抚远县
923 | 同江
924 | 富锦
925 |
926 | 七台河市
927 |
928 | 新兴区
929 | 桃山区
930 | 茄子河区
931 | 勃利县
932 |
933 | 牡丹江市
934 |
935 | 东安区
936 | 阳明区
937 | 爱民区
938 | 西安区
939 | 东宁县
940 | 林口县
941 | 绥芬河
942 | 海林
943 | 宁安
944 | 穆棱
945 |
946 | 黑河市
947 |
948 | 爱辉区
949 | 嫩江县
950 | 逊克县
951 | 孙吴县
952 | 北安
953 | 五大连池
954 |
955 | 绥化市
956 |
957 | 北林区
958 | 望奎县
959 | 兰西县
960 | 青冈县
961 | 庆安县
962 | 明水县
963 | 绥棱县
964 | 安达
965 | 肇东
966 | 海伦
967 |
968 | 大兴安岭地区
969 |
970 | 呼玛县
971 | 塔河县
972 | 漠河县
973 |
974 |
975 |
976 | 上海市
977 |
978 |
979 | 上海市
980 |
981 | 黄浦区
982 | 卢湾区
983 | 徐汇区
984 | 长宁区
985 | 静安区
986 | 普陀区
987 | 闸北区
988 | 虹口区
989 | 杨浦区
990 | 闵行区
991 | 宝山区
992 | 嘉定区
993 | 浦东新区
994 | 金山区
995 | 松江区
996 | 青浦区
997 | 南汇区
998 | 奉贤区
999 | 崇明县
1000 |
1001 |
1002 |
1003 | 江苏省
1004 |
1005 |
1006 | 南京市
1007 |
1008 | 玄武区
1009 | 白下区
1010 | 秦淮区
1011 | 建邺区
1012 | 鼓楼区
1013 | 下关区
1014 | 浦口区
1015 | 栖霞区
1016 | 雨花台区
1017 | 江宁区
1018 | 六合区
1019 | 溧水县
1020 | 高淳县
1021 |
1022 | 无锡市
1023 |
1024 | 崇安区
1025 | 南长区
1026 | 北塘区
1027 | 锡山区
1028 | 惠山区
1029 | 滨湖区
1030 | 江阴
1031 | 宜兴
1032 |
1033 | 徐州市
1034 |
1035 | 鼓楼区
1036 | 云龙区
1037 | 九里区
1038 | 贾汪区
1039 | 泉山区
1040 | 丰县
1041 | 沛县
1042 | 铜山县
1043 | 睢宁县
1044 | 新沂
1045 | 邳州
1046 |
1047 | 常州市
1048 |
1049 | 天宁区
1050 | 钟楼区
1051 | 戚墅堰区
1052 | 新北区
1053 | 武进区
1054 | 溧阳
1055 | 金坛
1056 |
1057 | 苏州市
1058 |
1059 | 沧浪区
1060 | 平江区
1061 | 金阊区
1062 | 虎丘区
1063 | 吴中区
1064 | 相城区
1065 | 常熟
1066 | 张家港
1067 | 昆山
1068 | 吴江
1069 | 太仓
1070 |
1071 | 南通市
1072 |
1073 | 崇川区
1074 | 港闸区
1075 | 海安县
1076 | 如东县
1077 | 启东
1078 | 如皋
1079 | 通州
1080 | 海门
1081 |
1082 | 连云港市
1083 |
1084 | 连云区
1085 | 新浦区
1086 | 海州区
1087 | 赣榆县
1088 | 东海县
1089 | 灌云县
1090 | 灌南县
1091 |
1092 | 淮安市
1093 |
1094 | 清河区
1095 | 楚州区
1096 | 淮阴区
1097 | 清浦区
1098 | 涟水县
1099 | 洪泽县
1100 | 盱眙县
1101 | 金湖县
1102 |
1103 | 盐城市
1104 |
1105 | 亭湖区
1106 | 盐都区
1107 | 响水县
1108 | 滨海县
1109 | 阜宁县
1110 | 射阳县
1111 | 建湖县
1112 | 东台
1113 | 大丰
1114 |
1115 | 扬州市
1116 |
1117 | 广陵区
1118 | 邗江区
1119 | 维扬区
1120 | 宝应县
1121 | 仪征
1122 | 高邮
1123 | 江都
1124 |
1125 | 镇江市
1126 |
1127 | 京口区
1128 | 润州区
1129 | 丹徒区
1130 | 丹阳
1131 | 扬中
1132 | 句容
1133 |
1134 | 泰州市
1135 |
1136 | 海陵区
1137 | 高港区
1138 | 兴化
1139 | 靖江
1140 | 泰兴
1141 | 姜堰
1142 |
1143 | 宿迁市
1144 |
1145 | 宿城区
1146 | 宿豫区
1147 | 沭阳县
1148 | 泗阳县
1149 | 泗洪县
1150 |
1151 |
1152 |
1153 | 浙江省
1154 |
1155 |
1156 | 杭州市
1157 |
1158 | 上城区
1159 | 下城区
1160 | 江干区
1161 | 拱墅区
1162 | 西湖区
1163 | 滨江区
1164 | 萧山区
1165 | 余杭区
1166 | 桐庐县
1167 | 淳安县
1168 | 建德
1169 | 富阳
1170 | 临安
1171 |
1172 | 宁波市
1173 |
1174 | 海曙区
1175 | 江东区
1176 | 江北区
1177 | 北仑区
1178 | 镇海区
1179 | 鄞州区
1180 | 象山县
1181 | 宁海县
1182 | 余姚
1183 | 慈溪
1184 | 奉化
1185 |
1186 | 温州市
1187 |
1188 | 鹿城区
1189 | 龙湾区
1190 | 瓯海区
1191 | 洞头县
1192 | 永嘉县
1193 | 平阳县
1194 | 苍南县
1195 | 文成县
1196 | 泰顺县
1197 | 瑞安
1198 | 乐清
1199 |
1200 | 嘉兴市
1201 |
1202 | 秀城区
1203 | 秀洲区
1204 | 嘉善县
1205 | 海盐县
1206 | 海宁
1207 | 平湖
1208 | 桐乡
1209 |
1210 | 湖州市
1211 |
1212 | 吴兴区
1213 | 南浔区
1214 | 德清县
1215 | 长兴县
1216 | 安吉县
1217 |
1218 | 绍兴市
1219 |
1220 | 越城区
1221 | 绍兴县
1222 | 新昌县
1223 | 诸暨
1224 | 上虞
1225 | 嵊州
1226 |
1227 | 金华市
1228 |
1229 | 婺城区
1230 | 金东区
1231 | 武义县
1232 | 浦江县
1233 | 磐安县
1234 | 兰溪
1235 | 义乌
1236 | 东阳
1237 | 永康
1238 |
1239 | 衢州市
1240 |
1241 | 柯城区
1242 | 衢江区
1243 | 常山县
1244 | 开化县
1245 | 龙游县
1246 | 江山
1247 |
1248 | 舟山市
1249 |
1250 | 定海区
1251 | 普陀区
1252 | 岱山县
1253 | 嵊泗县
1254 |
1255 | 台州市
1256 |
1257 | 椒江区
1258 | 黄岩区
1259 | 路桥区
1260 | 玉环县
1261 | 三门县
1262 | 天台县
1263 | 仙居县
1264 | 温岭
1265 | 临海
1266 |
1267 | 丽水市
1268 |
1269 | 莲都区
1270 | 青田县
1271 | 缙云县
1272 | 遂昌县
1273 | 松阳县
1274 | 云和县
1275 | 庆元县
1276 | 景宁畲族自治县
1277 | 龙泉
1278 |
1279 |
1280 |
1281 | 安徽省
1282 |
1283 |
1284 | 合肥市
1285 |
1286 | 瑶海区
1287 | 庐阳区
1288 | 蜀山区
1289 | 包河区
1290 | 长丰县
1291 | 肥东县
1292 | 肥西县
1293 |
1294 | 芜湖市
1295 |
1296 | 镜湖区
1297 | 马塘区
1298 | 新芜区
1299 | 鸠江区
1300 | 芜湖县
1301 | 繁昌县
1302 | 南陵县
1303 |
1304 | 蚌埠市
1305 |
1306 | 龙子湖区
1307 | 蚌山区
1308 | 禹会区
1309 | 淮上区
1310 | 怀远县
1311 | 五河县
1312 | 固镇县
1313 |
1314 | 淮南市
1315 |
1316 | 大通区
1317 | 田家庵区
1318 | 谢家集区
1319 | 八公山区
1320 | 潘集区
1321 | 凤台县
1322 |
1323 | 马鞍山市
1324 |
1325 | 金家庄区
1326 | 花山区
1327 | 雨山区
1328 | 当涂县
1329 | 杜集区
1330 | 相山区
1331 | 烈山区
1332 | 濉溪县
1333 |
1334 | 淮北市
1335 |
1336 | 金家庄区
1337 | 花山区
1338 | 雨山区
1339 | 当涂县
1340 | 杜集区
1341 | 相山区
1342 | 烈山区
1343 | 濉溪县
1344 |
1345 | 铜陵市
1346 |
1347 | 铜官山区
1348 | 狮子山区
1349 | 郊区
1350 | 铜陵县
1351 |
1352 | 安庆市
1353 |
1354 | 迎江区
1355 | 大观区
1356 | 郊区
1357 | 怀宁县
1358 | 枞阳县
1359 | 潜山县
1360 | 太湖县
1361 | 宿松县
1362 | 望江县
1363 | 岳西县
1364 | 桐城
1365 |
1366 | 黄山市
1367 |
1368 | 屯溪区
1369 | 黄山区
1370 | 徽州区
1371 | 歙县
1372 | 休宁县
1373 | 黟县
1374 | 祁门县
1375 |
1376 | 滁州市
1377 |
1378 | 琅琊区
1379 | 南谯区
1380 | 来安县
1381 | 全椒县
1382 | 定远县
1383 | 凤阳县
1384 | 天长
1385 | 明光
1386 |
1387 | 阜阳市
1388 |
1389 | 颍州区
1390 | 颍东区
1391 | 颍泉区
1392 | 临泉县
1393 | 太和县
1394 | 阜南县
1395 | 颍上县
1396 | 界首
1397 |
1398 | 宿州市
1399 |
1400 | 埇桥区
1401 | 砀山县
1402 | 萧县
1403 | 灵璧县
1404 | 泗县
1405 |
1406 | 巢湖市
1407 |
1408 | 居巢区
1409 | 庐江县
1410 | 无为县
1411 | 含山县
1412 | 和县
1413 |
1414 | 六安市
1415 |
1416 | 金安区
1417 | 裕安区
1418 | 寿县
1419 | 霍邱县
1420 | 舒城县
1421 | 金寨县
1422 | 霍山县
1423 |
1424 | 亳州市
1425 |
1426 | 谯城区
1427 | 涡阳县
1428 | 蒙城县
1429 | 利辛县
1430 |
1431 | 池州市
1432 |
1433 | 贵池区
1434 | 东至县
1435 | 石台县
1436 | 青阳县
1437 |
1438 | 宣城市
1439 |
1440 | 宣州区
1441 | 郎溪县
1442 | 广德县
1443 | 泾县
1444 | 绩溪县
1445 | 旌德县
1446 | 宁国
1447 |
1448 |
1449 |
1450 | 福建省
1451 |
1452 |
1453 | 福州市
1454 |
1455 | 鼓楼区
1456 | 台江区
1457 | 仓山区
1458 | 马尾区
1459 | 晋安区
1460 | 闽侯县
1461 | 连江县
1462 | 罗源县
1463 | 闽清县
1464 | 永泰县
1465 | 平潭县
1466 | 福清
1467 | 长乐
1468 |
1469 | 厦门市
1470 |
1471 | 思明区
1472 | 海沧区
1473 | 湖里区
1474 | 集美区
1475 | 同安区
1476 | 翔安区
1477 |
1478 | 莆田市
1479 |
1480 | 城厢区
1481 | 涵江区
1482 | 荔城区
1483 | 秀屿区
1484 | 仙游县
1485 |
1486 | 三明市
1487 |
1488 | 梅列区
1489 | 三元区
1490 | 明溪县
1491 | 清流县
1492 | 宁化县
1493 | 大田县
1494 | 尤溪县
1495 | 沙县
1496 | 将乐县
1497 | 泰宁县
1498 | 建宁县
1499 | 永安
1500 |
1501 | 泉州市
1502 |
1503 | 鲤城区
1504 | 丰泽区
1505 | 洛江区
1506 | 泉港区
1507 | 惠安县
1508 | 安溪县
1509 | 永春县
1510 | 德化县
1511 | 金门县
1512 | 石狮
1513 | 晋江
1514 | 南安
1515 |
1516 | 漳州市
1517 |
1518 | 芗城区
1519 | 龙文区
1520 | 云霄县
1521 | 漳浦县
1522 | 诏安县
1523 | 长泰县
1524 | 东山县
1525 | 南靖县
1526 | 平和县
1527 | 华安县
1528 | 龙海
1529 |
1530 | 南平市
1531 |
1532 | 延平区
1533 | 顺昌县
1534 | 浦城县
1535 | 光泽县
1536 | 松溪县
1537 | 政和县
1538 | 邵武
1539 | 武夷山
1540 | 建瓯
1541 | 建阳
1542 |
1543 | 龙岩市
1544 |
1545 | 新罗区
1546 | 长汀县
1547 | 永定县
1548 | 上杭县
1549 | 武平县
1550 | 连城县
1551 | 漳平
1552 |
1553 | 宁德市
1554 |
1555 | 蕉城区
1556 | 霞浦县
1557 | 古田县
1558 | 屏南县
1559 | 寿宁县
1560 | 周宁县
1561 | 柘荣县
1562 | 福安
1563 | 福鼎
1564 |
1565 |
1566 |
1567 | 江西省
1568 |
1569 |
1570 | 南昌市
1571 |
1572 | 东湖区
1573 | 西湖区
1574 | 青云谱区
1575 | 湾里区
1576 | 青山湖区
1577 | 南昌县
1578 | 新建县
1579 | 安义县
1580 | 进贤县
1581 |
1582 | 景德镇市
1583 |
1584 | 昌江区
1585 | 珠山区
1586 | 浮梁县
1587 | 乐平
1588 |
1589 | 萍乡市
1590 |
1591 | 安源区
1592 | 湘东区
1593 | 莲花县
1594 | 上栗县
1595 | 芦溪县
1596 |
1597 | 九江市
1598 |
1599 | 庐山区
1600 | 浔阳区
1601 | 九江县
1602 | 武宁县
1603 | 修水县
1604 | 永修县
1605 | 德安县
1606 | 星子县
1607 | 都昌县
1608 | 湖口县
1609 | 彭泽县
1610 | 瑞昌
1611 |
1612 | 新余市
1613 |
1614 | 渝水区
1615 | 分宜县
1616 |
1617 | 鹰潭市
1618 |
1619 | 月湖区
1620 | 余江县
1621 | 贵溪
1622 |
1623 | 赣州市
1624 |
1625 | 章贡区
1626 | 赣县
1627 | 信丰县
1628 | 大余县
1629 | 上犹县
1630 | 崇义县
1631 | 安远县
1632 | 龙南县
1633 | 定南县
1634 | 全南县
1635 | 宁都县
1636 | 于都县
1637 | 兴国县
1638 | 会昌县
1639 | 寻乌县
1640 | 石城县
1641 | 瑞金
1642 | 南康
1643 |
1644 | 吉安市
1645 |
1646 | 吉州区
1647 | 青原区
1648 | 吉安县
1649 | 吉水县
1650 | 峡江县
1651 | 新干县
1652 | 永丰县
1653 | 泰和县
1654 | 遂川县
1655 | 万安县
1656 | 安福县
1657 | 永新县
1658 | 井冈山
1659 |
1660 | 宜春市
1661 |
1662 | 袁州区
1663 | 奉新县
1664 | 万载县
1665 | 上高县
1666 | 宜丰县
1667 | 靖安县
1668 | 铜鼓县
1669 | 丰城
1670 | 樟树
1671 | 高安
1672 |
1673 | 抚州市
1674 |
1675 | 临川区
1676 | 南城县
1677 | 黎川县
1678 | 南丰县
1679 | 崇仁县
1680 | 乐安县
1681 | 宜黄县
1682 | 金溪县
1683 | 资溪县
1684 | 东乡县
1685 | 广昌县
1686 |
1687 | 上饶市
1688 |
1689 | 信州区
1690 | 上饶县
1691 | 广丰县
1692 | 玉山县
1693 | 铅山县
1694 | 横峰县
1695 | 弋阳县
1696 | 余干县
1697 | 鄱阳县
1698 | 万年县
1699 | 婺源县
1700 | 德兴
1701 |
1702 |
1703 |
1704 | 山东省
1705 |
1706 |
1707 | 济南市
1708 |
1709 | 历下区
1710 | 中区
1711 | 槐荫区
1712 | 天桥区
1713 | 历城区
1714 | 长清区
1715 | 平阴县
1716 | 济阳县
1717 | 商河县
1718 | 章丘
1719 |
1720 | 青岛市
1721 |
1722 | 南区
1723 | 北区
1724 | 四方区
1725 | 黄岛区
1726 | 崂山区
1727 | 李沧区
1728 | 城阳区
1729 | 胶州
1730 | 即墨
1731 | 平度
1732 | 胶南
1733 | 莱西
1734 |
1735 | 淄博市
1736 |
1737 | 淄川区
1738 | 张店区
1739 | 博山区
1740 | 临淄区
1741 | 周村区
1742 | 桓台县
1743 | 高青县
1744 | 沂源县
1745 |
1746 | 枣庄市
1747 |
1748 | 中区
1749 | 薛城区
1750 | 峄城区
1751 | 台儿庄区
1752 | 山亭区
1753 | 滕州
1754 |
1755 | 东营市
1756 |
1757 | 东营区
1758 | 河口区
1759 | 垦利县
1760 | 利津县
1761 | 广饶县
1762 |
1763 | 烟台市
1764 |
1765 | 芝罘区
1766 | 福山区
1767 | 牟平区
1768 | 莱山区
1769 | 长岛县
1770 | 龙口
1771 | 莱阳
1772 | 莱州
1773 | 蓬莱
1774 | 招远
1775 | 栖霞
1776 | 海阳
1777 |
1778 | 潍坊市
1779 |
1780 | 潍城区
1781 | 寒亭区
1782 | 坊子区
1783 | 奎文区
1784 | 临朐县
1785 | 昌乐县
1786 | 青州
1787 | 诸城
1788 | 寿光
1789 | 安丘
1790 | 高密
1791 | 昌邑
1792 |
1793 | 济宁市
1794 |
1795 | 中区
1796 | 任城区
1797 | 微山县
1798 | 鱼台县
1799 | 金乡县
1800 | 嘉祥县
1801 | 汶上县
1802 | 泗水县
1803 | 梁山县
1804 | 曲阜
1805 | 兖州
1806 | 邹城
1807 |
1808 | 泰安市
1809 |
1810 | 泰山区
1811 | 岱岳区
1812 | 宁阳县
1813 | 东平县
1814 | 新泰
1815 | 肥城
1816 |
1817 | 威海市
1818 |
1819 | 环翠区
1820 | 文登
1821 | 荣成
1822 | 乳山
1823 |
1824 | 日照市
1825 |
1826 | 东港区
1827 | 岚山区
1828 | 五莲县
1829 | 莒县
1830 |
1831 | 莱芜市
1832 |
1833 | 莱城区
1834 | 钢城区
1835 |
1836 | 临沂市
1837 |
1838 | 兰山区
1839 | 罗庄区
1840 | 河东区
1841 | 沂南县
1842 | 郯城县
1843 | 沂水县
1844 | 苍山县
1845 | 费县
1846 | 平邑县
1847 | 莒南县
1848 | 蒙阴县
1849 | 临沭县
1850 |
1851 | 德州市
1852 |
1853 | 德城区
1854 | 陵县
1855 | 宁津县
1856 | 庆云县
1857 | 临邑县
1858 | 齐河县
1859 | 平原县
1860 | 夏津县
1861 | 武城县
1862 | 乐陵
1863 | 禹城
1864 |
1865 | 聊城市
1866 |
1867 | 东昌府区
1868 | 阳谷县
1869 | 莘县
1870 | 茌平县
1871 | 东阿县
1872 | 冠县
1873 | 高唐县
1874 | 临清
1875 |
1876 | 滨州市
1877 |
1878 | 滨城区
1879 | 惠民县
1880 | 阳信县
1881 | 无棣县
1882 | 沾化县
1883 | 博兴县
1884 | 邹平县
1885 |
1886 | 荷泽市
1887 |
1888 | 牡丹区
1889 | 曹县
1890 | 单县
1891 | 成武县
1892 | 巨野县
1893 | 郓城县
1894 | 鄄城县
1895 | 定陶县
1896 | 东明县
1897 |
1898 |
1899 |
1900 | 河南省
1901 |
1902 |
1903 | 郑州市
1904 |
1905 | 中原区
1906 | 二七区
1907 | 管城回族区
1908 | 金水区
1909 | 上街区
1910 | 惠济区
1911 | 中牟县
1912 | 巩义
1913 | 荥阳
1914 | 新密
1915 | 新郑
1916 | 登封
1917 |
1918 | 开封市
1919 |
1920 | 龙亭区
1921 | 顺河回族区
1922 | 鼓楼区
1923 | 南关区
1924 | 郊区
1925 | 杞县
1926 | 通许县
1927 | 尉氏县
1928 | 开封县
1929 | 兰考县
1930 |
1931 | 洛阳市
1932 |
1933 | 老城区
1934 | 西工区
1935 | 廛河回族区
1936 | 涧西区
1937 | 吉利区
1938 | 洛龙区
1939 | 孟津县
1940 | 新安县
1941 | 栾川县
1942 | 嵩县
1943 | 汝阳县
1944 | 宜阳县
1945 | 洛宁县
1946 | 伊川县
1947 | 偃师
1948 |
1949 | 平顶山市
1950 |
1951 | 新华区
1952 | 卫东区
1953 | 石龙区
1954 | 湛河区
1955 | 宝丰县
1956 | 叶县
1957 | 鲁山县
1958 | 郏县
1959 | 舞钢
1960 | 汝州
1961 |
1962 | 安阳市
1963 |
1964 | 文峰区
1965 | 北关区
1966 | 殷都区
1967 | 龙安区
1968 | 安阳县
1969 | 汤阴县
1970 | 滑县
1971 | 内黄县
1972 | 林州
1973 |
1974 | 鹤壁市
1975 |
1976 | 鹤山区
1977 | 山城区
1978 | 淇滨区
1979 | 浚县
1980 | 淇县
1981 |
1982 | 新乡市
1983 |
1984 | 红旗区
1985 | 卫滨区
1986 | 凤泉区
1987 | 牧野区
1988 | 新乡县
1989 | 获嘉县
1990 | 原阳县
1991 | 延津县
1992 | 封丘县
1993 | 长垣县
1994 | 卫辉
1995 | 辉县
1996 |
1997 | 焦作市
1998 |
1999 | 解放区
2000 | 中站区
2001 | 马村区
2002 | 山阳区
2003 | 修武县
2004 | 博爱县
2005 | 武陟县
2006 | 温县
2007 | 济源
2008 | 沁阳
2009 | 孟州
2010 |
2011 | 濮阳市
2012 |
2013 | 华龙区
2014 | 清丰县
2015 | 南乐县
2016 | 范县
2017 | 台前县
2018 | 濮阳县
2019 |
2020 | 许昌市
2021 |
2022 | 魏都区
2023 | 许昌县
2024 | 鄢陵县
2025 | 襄城县
2026 | 禹州
2027 | 长葛
2028 |
2029 | 漯河市
2030 |
2031 | 源汇区
2032 | 郾城区
2033 | 召陵区
2034 | 舞阳县
2035 | 临颍县
2036 |
2037 | 三门峡市
2038 |
2039 | 辖区
2040 | 湖滨区
2041 | 渑池县
2042 | 陕县
2043 | 卢氏县
2044 | 义马
2045 | 灵宝
2046 |
2047 | 南阳市
2048 |
2049 | 宛城区
2050 | 卧龙区
2051 | 南召县
2052 | 方城县
2053 | 西峡县
2054 | 镇平县
2055 | 内乡县
2056 | 淅川县
2057 | 社旗县
2058 | 唐河县
2059 | 新野县
2060 | 桐柏县
2061 | 邓州
2062 |
2063 | 商丘市
2064 |
2065 | 梁园区
2066 | 睢阳区
2067 | 民权县
2068 | 睢县
2069 | 宁陵县
2070 | 柘城县
2071 | 虞城县
2072 | 夏邑县
2073 | 永城
2074 |
2075 | 信阳市
2076 |
2077 | 浉河区
2078 | 平桥区
2079 | 罗山县
2080 | 光山县
2081 | 新县
2082 | 商城县
2083 | 固始县
2084 | 潢川县
2085 | 淮滨县
2086 | 息县
2087 |
2088 | 周口市
2089 |
2090 | 川汇区
2091 | 扶沟县
2092 | 西华县
2093 | 商水县
2094 | 沈丘县
2095 | 郸城县
2096 | 淮阳县
2097 | 太康县
2098 | 鹿邑县
2099 | 项城
2100 |
2101 | 驻马店市
2102 |
2103 | 驿城区
2104 | 西平县
2105 | 上蔡县
2106 | 平舆县
2107 | 正阳县
2108 | 确山县
2109 | 泌阳县
2110 | 汝南县
2111 | 遂平县
2112 | 新蔡县
2113 |
2114 |
2115 |
2116 | 湖北省
2117 |
2118 |
2119 | 武汉市
2120 |
2121 | 江岸区
2122 | 江汉区
2123 | 硚口区
2124 | 汉阳区
2125 | 武昌区
2126 | 青山区
2127 | 洪山区
2128 | 东西湖区
2129 | 汉南区
2130 | 蔡甸区
2131 | 江夏区
2132 | 黄陂区
2133 | 新洲区
2134 |
2135 | 黄石市
2136 |
2137 | 黄石港区
2138 | 西塞山区
2139 | 下陆区
2140 | 铁山区
2141 | 阳新县
2142 | 大冶
2143 |
2144 | 十堰市
2145 |
2146 | 茅箭区
2147 | 张湾区
2148 | 郧县
2149 | 郧西县
2150 | 竹山县
2151 | 竹溪县
2152 | 房县
2153 | 丹江口
2154 |
2155 | 宜昌市
2156 |
2157 | 西陵区
2158 | 伍家岗区
2159 | 点军区
2160 | 猇亭区
2161 | 夷陵区
2162 | 远安县
2163 | 兴山县
2164 | 秭归县
2165 | 长阳土家族自治县
2166 | 五峰土家族自治县
2167 | 宜都
2168 | 当阳
2169 | 枝江
2170 |
2171 | 襄阳市
2172 |
2173 | 襄城区
2174 | 樊城区
2175 | 襄阳区
2176 | 南漳县
2177 | 谷城县
2178 | 保康县
2179 | 老河口
2180 | 枣阳
2181 | 宜城
2182 |
2183 | 鄂州市
2184 |
2185 | 梁子湖区
2186 | 华容区
2187 | 鄂城区
2188 |
2189 | 荆门市
2190 |
2191 | 东宝区
2192 | 掇刀区
2193 | 京山县
2194 | 沙洋县
2195 | 钟祥
2196 |
2197 | 孝感市
2198 |
2199 | 孝南区
2200 | 孝昌县
2201 | 大悟县
2202 | 云梦县
2203 | 应城
2204 | 安陆
2205 | 汉川
2206 |
2207 | 荆州市
2208 |
2209 | 沙区
2210 | 荆州区
2211 | 公安县
2212 | 监利县
2213 | 江陵县
2214 | 石首
2215 | 洪湖
2216 | 松滋
2217 |
2218 | 黄冈市
2219 |
2220 | 黄州区
2221 | 团风县
2222 | 红安县
2223 | 罗田县
2224 | 英山县
2225 | 浠水县
2226 | 蕲春县
2227 | 黄梅县
2228 | 麻城
2229 | 武穴
2230 |
2231 | 咸宁市
2232 |
2233 | 咸安区
2234 | 嘉鱼县
2235 | 通城县
2236 | 崇阳县
2237 | 通山县
2238 | 赤壁
2239 |
2240 | 随州市
2241 |
2242 | 曾都区
2243 | 广水
2244 |
2245 | 恩施土家族苗族自治州
2246 |
2247 | 恩施
2248 | 利川
2249 | 建始县
2250 | 巴东县
2251 | 宣恩县
2252 | 咸丰县
2253 | 来凤县
2254 | 鹤峰县
2255 |
2256 | 神农架
2257 |
2258 | 仙桃
2259 | 潜江
2260 | 天门
2261 | 神农架林区
2262 |
2263 |
2264 |
2265 | 湖南省
2266 |
2267 |
2268 | 长沙市
2269 |
2270 | 芙蓉区
2271 | 天心区
2272 | 岳麓区
2273 | 开福区
2274 | 雨花区
2275 | 长沙县
2276 | 望城县
2277 | 宁乡县
2278 | 浏阳
2279 |
2280 | 株洲市
2281 |
2282 | 荷塘区
2283 | 芦淞区
2284 | 石峰区
2285 | 天元区
2286 | 株洲县
2287 | 攸县
2288 | 茶陵县
2289 | 炎陵县
2290 | 醴陵
2291 |
2292 | 湘潭市
2293 |
2294 | 雨湖区
2295 | 岳塘区
2296 | 湘潭县
2297 | 湘乡
2298 | 韶山
2299 |
2300 | 衡阳市
2301 |
2302 | 珠晖区
2303 | 雁峰区
2304 | 石鼓区
2305 | 蒸湘区
2306 | 南岳区
2307 | 衡阳县
2308 | 衡南县
2309 | 衡山县
2310 | 衡东县
2311 | 祁东县
2312 | 耒阳
2313 | 常宁
2314 |
2315 | 邵阳市
2316 |
2317 | 双清区
2318 | 大祥区
2319 | 北塔区
2320 | 邵东县
2321 | 新邵县
2322 | 邵阳县
2323 | 隆回县
2324 | 洞口县
2325 | 绥宁县
2326 | 新宁县
2327 | 城步苗族自治县
2328 | 武冈
2329 |
2330 | 岳阳市
2331 |
2332 | 岳阳楼区
2333 | 云溪区
2334 | 君山区
2335 | 岳阳县
2336 | 华容县
2337 | 湘阴县
2338 | 平江县
2339 | 汨罗
2340 | 临湘
2341 |
2342 | 常德市
2343 |
2344 | 武陵区
2345 | 鼎城区
2346 | 安乡县
2347 | 汉寿县
2348 | 澧县
2349 | 临澧县
2350 | 桃源县
2351 | 石门县
2352 | 津
2353 |
2354 | 张家界市
2355 |
2356 | 永定区
2357 | 武陵源区
2358 | 慈利县
2359 | 桑植县
2360 |
2361 | 益阳市
2362 |
2363 | 资阳区
2364 | 赫山区
2365 | 南县
2366 | 桃江县
2367 | 安化县
2368 | 沅江
2369 |
2370 | 郴州市
2371 |
2372 | 北湖区
2373 | 苏仙区
2374 | 桂阳县
2375 | 宜章县
2376 | 永兴县
2377 | 嘉禾县
2378 | 临武县
2379 | 汝城县
2380 | 桂东县
2381 | 安仁县
2382 | 资兴
2383 |
2384 | 永州市
2385 |
2386 | 芝山区
2387 | 冷水滩区
2388 | 祁阳县
2389 | 东安县
2390 | 双牌县
2391 | 道县
2392 | 江永县
2393 | 宁远县
2394 | 蓝山县
2395 | 新田县
2396 | 江华瑶族自治县
2397 |
2398 | 怀化市
2399 |
2400 | 鹤城区
2401 | 中方县
2402 | 沅陵县
2403 | 辰溪县
2404 | 溆浦县
2405 | 会同县
2406 | 麻阳苗族自治县
2407 | 新晃侗族自治县
2408 | 芷江侗族自治县
2409 | 靖州苗族侗族自治县
2410 | 通道侗族自治县
2411 | 洪江
2412 |
2413 | 娄底市
2414 |
2415 | 娄星区
2416 | 双峰县
2417 | 新化县
2418 | 冷水江
2419 | 涟源
2420 |
2421 | 湘西土家族苗族自治州
2422 |
2423 | 吉首
2424 | 泸溪县
2425 | 凤凰县
2426 | 花垣县
2427 | 保靖县
2428 | 古丈县
2429 | 永顺县
2430 | 龙山县
2431 |
2432 |
2433 |
2434 | 广东省
2435 |
2436 |
2437 | 广州市
2438 |
2439 | 东山区
2440 | 荔湾区
2441 | 越秀区
2442 | 海珠区
2443 | 天河区
2444 | 芳村区
2445 | 白云区
2446 | 黄埔区
2447 | 番禺区
2448 | 花都区
2449 | 增城
2450 | 从化
2451 |
2452 | 韶关市
2453 |
2454 | 武江区
2455 | 浈江区
2456 | 曲江区
2457 | 始兴县
2458 | 仁化县
2459 | 翁源县
2460 | 乳源瑶族自治县
2461 | 新丰县
2462 | 乐昌
2463 | 南雄
2464 |
2465 | 深圳市
2466 |
2467 | 罗湖区
2468 | 福田区
2469 | 南山区
2470 | 宝安区
2471 | 龙岗区
2472 | 盐田区
2473 |
2474 | 珠海市
2475 |
2476 | 香洲区
2477 | 斗门区
2478 | 金湾区
2479 |
2480 | 汕头市
2481 |
2482 | 龙湖区
2483 | 金平区
2484 | 濠江区
2485 | 潮阳区
2486 | 潮南区
2487 | 澄海区
2488 | 南澳县
2489 |
2490 | 佛山市
2491 |
2492 | 禅城区
2493 | 南海区
2494 | 顺德区
2495 | 三水区
2496 | 高明区
2497 |
2498 | 江门市
2499 |
2500 | 蓬江区
2501 | 江海区
2502 | 新会区
2503 | 台山
2504 | 开平
2505 | 鹤山
2506 | 恩平
2507 |
2508 | 湛江市
2509 |
2510 | 赤坎区
2511 | 霞山区
2512 | 坡头区
2513 | 麻章区
2514 | 遂溪县
2515 | 徐闻县
2516 | 廉江
2517 | 雷州
2518 | 吴川
2519 |
2520 | 茂名市
2521 |
2522 | 茂南区
2523 | 茂港区
2524 | 电白县
2525 | 高州
2526 | 化州
2527 | 信宜
2528 |
2529 | 肇庆市
2530 |
2531 | 端州区
2532 | 鼎湖区
2533 | 广宁县
2534 | 怀集县
2535 | 封开县
2536 | 德庆县
2537 | 高要
2538 | 四会
2539 |
2540 | 惠州市
2541 |
2542 | 惠城区
2543 | 惠阳区
2544 | 博罗县
2545 | 惠东县
2546 | 龙门县
2547 |
2548 | 梅州市
2549 |
2550 | 梅江区
2551 | 梅县
2552 | 大埔县
2553 | 丰顺县
2554 | 五华县
2555 | 平远县
2556 | 蕉岭县
2557 | 兴宁
2558 |
2559 | 汕尾市
2560 |
2561 | 城区
2562 | 海丰县
2563 | 陆河县
2564 | 陆丰
2565 |
2566 | 河源市
2567 |
2568 | 源城区
2569 | 紫金县
2570 | 龙川县
2571 | 连平县
2572 | 和平县
2573 | 东源县
2574 |
2575 | 阳江市
2576 |
2577 | 江城区
2578 | 阳西县
2579 | 阳东县
2580 | 阳春
2581 |
2582 | 清远市
2583 |
2584 | 清城区
2585 | 佛冈县
2586 | 阳山县
2587 | 连山壮族瑶族自治县
2588 | 连南瑶族自治县
2589 | 清新县
2590 | 英德
2591 | 连州
2592 |
2593 | 东莞市
2594 |
2595 | 东莞
2596 |
2597 | 中山市
2598 |
2599 | 中山
2600 |
2601 | 潮州市
2602 |
2603 | 湘桥区
2604 | 潮安县
2605 | 饶平县
2606 |
2607 | 揭阳市
2608 |
2609 | 榕城区
2610 | 揭东县
2611 | 揭西县
2612 | 惠来县
2613 | 普宁
2614 |
2615 | 云浮市
2616 |
2617 | 云城区
2618 | 新兴县
2619 | 郁南县
2620 | 云安县
2621 | 罗定
2622 |
2623 |
2624 |
2625 | 广西省
2626 |
2627 |
2628 | 南宁市
2629 |
2630 | 兴宁区
2631 | 青秀区
2632 | 江南区
2633 | 西乡塘区
2634 | 良庆区
2635 | 邕宁区
2636 | 武鸣县
2637 | 隆安县
2638 | 马山县
2639 | 上林县
2640 | 宾阳县
2641 | 横县
2642 |
2643 | 柳州市
2644 |
2645 | 城中区
2646 | 鱼峰区
2647 | 柳南区
2648 | 柳北区
2649 | 柳江县
2650 | 柳城县
2651 | 鹿寨县
2652 | 融安县
2653 | 融水苗族自治县
2654 | 三江侗族自治县
2655 |
2656 | 桂林市
2657 |
2658 | 秀峰区
2659 | 叠彩区
2660 | 象山区
2661 | 七星区
2662 | 雁山区
2663 | 阳朔县
2664 | 临桂县
2665 | 灵川县
2666 | 全州县
2667 | 兴安县
2668 | 永福县
2669 | 灌阳县
2670 | 龙胜各族自治县
2671 | 资源县
2672 | 平乐县
2673 | 荔蒲县
2674 | 恭城瑶族自治县
2675 |
2676 | 梧州市
2677 |
2678 | 万秀区
2679 | 蝶山区
2680 | 长洲区
2681 | 苍梧县
2682 | 藤县
2683 | 蒙山县
2684 | 岑溪
2685 |
2686 | 北海市
2687 |
2688 | 海城区
2689 | 银海区
2690 | 铁山港区
2691 | 合浦县
2692 |
2693 | 防城港市
2694 |
2695 | 港口区
2696 | 防城区
2697 | 上思县
2698 | 东兴
2699 |
2700 | 钦州市
2701 |
2702 | 钦南区
2703 | 钦北区
2704 | 灵山县
2705 | 浦北县
2706 |
2707 | 贵港市
2708 |
2709 | 港北区
2710 | 港南区
2711 | 覃塘区
2712 | 平南县
2713 | 桂平
2714 |
2715 | 玉林市
2716 |
2717 | 玉州区
2718 | 容县
2719 | 陆川县
2720 | 博白县
2721 | 兴业县
2722 | 北流
2723 |
2724 | 百色市
2725 |
2726 | 右江区
2727 | 田阳县
2728 | 田东县
2729 | 平果县
2730 | 德保县
2731 | 靖西县
2732 | 那坡县
2733 | 凌云县
2734 | 乐业县
2735 | 田林县
2736 | 西林县
2737 | 隆林各族自治县
2738 |
2739 | 贺州市
2740 |
2741 | 八步区
2742 | 昭平县
2743 | 钟山县
2744 | 富川瑶族自治县
2745 |
2746 | 河池市
2747 |
2748 | 金城江区
2749 | 南丹县
2750 | 天峨县
2751 | 凤山县
2752 | 东兰县
2753 | 罗城仫佬族自治县
2754 | 环江毛南族自治县
2755 | 巴马瑶族自治县
2756 | 都安瑶族自治县
2757 | 大化瑶族自治县
2758 | 宜州
2759 |
2760 | 来宾市
2761 |
2762 | 兴宾区
2763 | 忻城县
2764 | 象州县
2765 | 武宣县
2766 | 金秀瑶族自治县
2767 | 合山
2768 |
2769 | 崇左市
2770 |
2771 | 江洲区
2772 | 扶绥县
2773 | 宁明县
2774 | 龙州县
2775 | 大新县
2776 | 天等县
2777 | 凭祥
2778 |
2779 |
2780 |
2781 | 海南省
2782 |
2783 |
2784 | 海口市
2785 |
2786 | 秀英区
2787 | 龙华区
2788 | 琼山区
2789 | 美兰区
2790 |
2791 | 三亚市
2792 |
2793 | 五指山
2794 | 琼海
2795 | 儋州
2796 | 文昌
2797 | 万宁
2798 | 东方
2799 | 定安县
2800 | 屯昌县
2801 | 澄迈县
2802 | 临高县
2803 | 白沙黎族自治县
2804 | 昌江黎族自治县
2805 | 乐东黎族自治县
2806 | 陵水黎族自治县
2807 | 保亭黎族苗族自治县
2808 | 琼中黎族苗族自治县
2809 | 西沙群岛
2810 | 南沙群岛
2811 | 中沙群岛的岛礁及其海域
2812 |
2813 |
2814 |
2815 | 重庆市
2816 |
2817 |
2818 | 重庆市
2819 |
2820 | 重庆
2821 | 万州区
2822 | 涪陵区
2823 | 渝中区
2824 | 大渡口区
2825 | 江北区
2826 | 沙坪坝区
2827 | 九龙坡区
2828 | 南岸区
2829 | 北碚区
2830 | 万盛区
2831 | 双桥区
2832 | 渝北区
2833 | 巴南区
2834 | 黔江区
2835 | 长寿区
2836 | 綦江县
2837 | 潼南县
2838 | 铜梁县
2839 | 大足县
2840 | 荣昌县
2841 | 璧山县
2842 | 梁平县
2843 | 城口县
2844 | 丰都县
2845 | 垫江县
2846 | 武隆县
2847 | 忠县
2848 | 开县
2849 | 云阳县
2850 | 奉节县
2851 | 巫山县
2852 | 巫溪县
2853 | 石柱土家族自治县
2854 | 秀山土家族苗族自治县
2855 | 酉阳土家族苗族自治县
2856 | 彭水苗族土家族自治县
2857 | 江津
2858 | 合川
2859 | 永川
2860 | 南川
2861 |
2862 |
2863 |
2864 | 四川省
2865 |
2866 |
2867 | 成都市
2868 |
2869 | 锦江区
2870 | 青羊区
2871 | 金牛区
2872 | 武侯区
2873 | 成华区
2874 | 龙泉驿区
2875 | 青白江区
2876 | 新都区
2877 | 温江区
2878 | 金堂县
2879 | 双流县
2880 | 郫县
2881 | 大邑县
2882 | 蒲江县
2883 | 新津县
2884 | 都江堰
2885 | 彭州
2886 | 邛崃
2887 | 崇州
2888 |
2889 | 自贡市
2890 |
2891 | 自流井区
2892 | 贡井区
2893 | 大安区
2894 | 沿滩区
2895 | 荣县
2896 | 富顺县
2897 |
2898 | 攀枝花市
2899 |
2900 | 东区
2901 | 西区
2902 | 仁和区
2903 | 米易县
2904 | 盐边县
2905 |
2906 | 泸州市
2907 |
2908 | 江阳区
2909 | 纳溪区
2910 | 龙马潭区
2911 | 泸县
2912 | 合江县
2913 | 叙永县
2914 | 古蔺县
2915 |
2916 | 德阳市
2917 |
2918 | 旌阳区
2919 | 中江县
2920 | 罗江县
2921 | 广汉
2922 | 什邡
2923 | 绵竹
2924 |
2925 | 绵阳市
2926 |
2927 | 涪城区
2928 | 游仙区
2929 | 三台县
2930 | 盐亭县
2931 | 安县
2932 | 梓潼县
2933 | 北川羌族自治县
2934 | 平武县
2935 | 江油
2936 |
2937 | 广元市
2938 |
2939 | 中区
2940 | 元坝区
2941 | 朝天区
2942 | 旺苍县
2943 | 青川县
2944 | 剑阁县
2945 | 苍溪县
2946 |
2947 | 遂宁市
2948 |
2949 | 船山区
2950 | 安居区
2951 | 蓬溪县
2952 | 射洪县
2953 | 大英县
2954 |
2955 | 内江市
2956 |
2957 | 中区
2958 | 东兴区
2959 | 威远县
2960 | 资中县
2961 | 隆昌县
2962 |
2963 | 乐山市
2964 |
2965 | 中区
2966 | 沙湾区
2967 | 五通桥区
2968 | 金口河区
2969 | 犍为县
2970 | 井研县
2971 | 夹江县
2972 | 沐川县
2973 | 峨边彝族自治县
2974 | 马边彝族自治县
2975 |
2976 | 南充市
2977 |
2978 | 峨眉山
2979 | 顺庆区
2980 | 高坪区
2981 | 嘉陵区
2982 | 南部县
2983 | 营山县
2984 | 蓬安县
2985 | 仪陇县
2986 | 西充县
2987 | 阆中
2988 |
2989 | 眉山市
2990 |
2991 | 东坡区
2992 | 仁寿县
2993 | 彭山县
2994 | 洪雅县
2995 | 丹棱县
2996 | 青神县
2997 |
2998 | 宜宾市
2999 |
3000 | 翠屏区
3001 | 宜宾县
3002 | 南溪县
3003 | 江安县
3004 | 长宁县
3005 | 高县
3006 | 珙县
3007 | 筠连县
3008 | 兴文县
3009 | 屏山县
3010 |
3011 | 广安市
3012 |
3013 | 广安区
3014 | 岳池县
3015 | 武胜县
3016 | 邻水县
3017 | 华蓥
3018 |
3019 | 达州市
3020 |
3021 | 通川区
3022 | 达县
3023 | 宣汉县
3024 | 开江县
3025 | 大竹县
3026 | 渠县
3027 | 万源
3028 |
3029 | 雅安市
3030 |
3031 | 雨城区
3032 | 名山县
3033 | 荥经县
3034 | 汉源县
3035 | 石棉县
3036 | 天全县
3037 | 芦山县
3038 | 宝兴县
3039 |
3040 | 巴中市
3041 |
3042 | 巴州区
3043 | 通江县
3044 | 南江县
3045 | 平昌县
3046 |
3047 | 资阳市
3048 |
3049 | 雁江区
3050 | 安岳县
3051 | 乐至县
3052 | 简阳
3053 |
3054 | 阿坝藏族羌族自治州
3055 |
3056 | 汶川县
3057 | 理县
3058 | 茂县
3059 | 松潘县
3060 | 九寨沟县
3061 | 金川县
3062 | 小金县
3063 | 黑水县
3064 | 马尔康县
3065 | 壤塘县
3066 | 阿坝县
3067 | 若尔盖县
3068 | 红原县
3069 |
3070 | 甘孜藏族自治州
3071 |
3072 | 康定县
3073 | 泸定县
3074 | 丹巴县
3075 | 九龙县
3076 | 雅江县
3077 | 道孚县
3078 | 炉霍县
3079 | 甘孜县
3080 | 新龙县
3081 | 德格县
3082 | 白玉县
3083 | 石渠县
3084 | 色达县
3085 | 理塘县
3086 | 巴塘县
3087 | 乡城县
3088 | 稻城县
3089 | 得荣县
3090 |
3091 | 凉山彝族自治州
3092 |
3093 | 西昌
3094 | 木里藏族自治县
3095 | 盐源县
3096 | 德昌县
3097 | 会理县
3098 | 会东县
3099 | 宁南县
3100 | 普格县
3101 | 布拖县
3102 | 金阳县
3103 | 昭觉县
3104 | 喜德县
3105 | 冕宁县
3106 | 越西县
3107 | 甘洛县
3108 | 美姑县
3109 | 雷波县
3110 |
3111 |
3112 |
3113 | 贵州省
3114 |
3115 |
3116 | 贵阳市
3117 |
3118 | 南明区
3119 | 云岩区
3120 | 花溪区
3121 | 乌当区
3122 | 白云区
3123 | 小河区
3124 | 开阳县
3125 | 息烽县
3126 | 修文县
3127 | 清镇
3128 |
3129 | 六盘水市
3130 |
3131 | 钟山区
3132 | 六枝特区
3133 | 水城县
3134 | 盘县
3135 |
3136 | 遵义市
3137 |
3138 | 红花岗区
3139 | 汇川区
3140 | 遵义县
3141 | 桐梓县
3142 | 绥阳县
3143 | 正安县
3144 | 道真仡佬族苗族自治县
3145 | 务川仡佬族苗族自治县
3146 | 凤冈县
3147 | 湄潭县
3148 | 余庆县
3149 | 习水县
3150 | 赤水
3151 | 仁怀
3152 |
3153 | 安顺市
3154 |
3155 | 西秀区
3156 | 平坝县
3157 | 普定县
3158 | 镇宁布依族苗族自治县
3159 | 关岭布依族苗族自治县
3160 | 紫云苗族布依族自治县
3161 |
3162 | 铜仁地区
3163 |
3164 | 兴义
3165 | 铜仁
3166 | 江口县
3167 | 玉屏侗族自治县
3168 | 石阡县
3169 | 思南县
3170 | 印江土家族苗族自治县
3171 | 德江县
3172 | 沿河土家族自治县
3173 | 松桃苗族自治县
3174 | 万山特区
3175 |
3176 | 黔西南布依族苗族自治州
3177 |
3178 | 兴义
3179 | 兴仁县
3180 | 普安县
3181 | 晴隆县
3182 | 贞丰县
3183 | 望谟县
3184 | 册亨县
3185 | 安龙县
3186 |
3187 | 毕节地区
3188 |
3189 | 毕节
3190 | 大方县
3191 | 黔西县
3192 | 金沙县
3193 | 织金县
3194 | 纳雍县
3195 | 威宁彝族回族苗族自治县
3196 | 赫章县
3197 |
3198 | 黔东南苗族侗族自治州
3199 |
3200 | 凯里
3201 | 黄平县
3202 | 施秉县
3203 | 三穗县
3204 | 镇远县
3205 | 岑巩县
3206 | 天柱县
3207 | 锦屏县
3208 | 剑河县
3209 | 台江县
3210 | 黎平县
3211 | 榕江县
3212 | 从江县
3213 | 雷山县
3214 | 麻江县
3215 | 丹寨县
3216 |
3217 | 黔南布依族苗族自治州
3218 |
3219 | 都匀
3220 | 福泉
3221 | 荔波县
3222 | 贵定县
3223 | 瓮安县
3224 | 独山县
3225 | 平塘县
3226 | 罗甸县
3227 | 长顺县
3228 | 龙里县
3229 | 惠水县
3230 | 三都水族自治县
3231 |
3232 |
3233 |
3234 | 云南省
3235 |
3236 |
3237 | 昆明市
3238 |
3239 | 五华区
3240 | 盘龙区
3241 | 官渡区
3242 | 西山区
3243 | 东川区
3244 | 呈贡县
3245 | 晋宁县
3246 | 富民县
3247 | 宜良县
3248 | 石林彝族自治县
3249 | 嵩明县
3250 | 禄劝彝族苗族自治县
3251 | 寻甸回族彝族自治县
3252 | 安宁
3253 |
3254 | 曲靖市
3255 |
3256 | 麒麟区
3257 | 马龙县
3258 | 陆良县
3259 | 师宗县
3260 | 罗平县
3261 | 富源县
3262 | 会泽县
3263 | 沾益县
3264 | 宣威
3265 |
3266 | 玉溪市
3267 |
3268 | 红塔区
3269 | 江川县
3270 | 澄江县
3271 | 通海县
3272 | 华宁县
3273 | 易门县
3274 | 峨山彝族自治县
3275 | 新平彝族傣族自治县
3276 | 元江哈尼族彝族傣族自治县
3277 |
3278 | 保山市
3279 |
3280 | 隆阳区
3281 | 施甸县
3282 | 腾冲县
3283 | 龙陵县
3284 | 昌宁县
3285 |
3286 | 昭通市
3287 |
3288 | 昭阳区
3289 | 鲁甸县
3290 | 巧家县
3291 | 盐津县
3292 | 大关县
3293 | 永善县
3294 | 绥江县
3295 | 镇雄县
3296 | 彝良县
3297 | 威信县
3298 | 水富县
3299 |
3300 | 丽江市
3301 |
3302 | 古城区
3303 | 玉龙纳西族自治县
3304 | 永胜县
3305 | 华坪县
3306 | 宁蒗彝族自治县
3307 |
3308 | 思茅市
3309 |
3310 | 翠云区
3311 | 普洱哈尼族彝族自治县
3312 | 墨江哈尼族自治县
3313 | 景东彝族自治县
3314 | 景谷傣族彝族自治县
3315 | 镇沅彝族哈尼族拉祜族自治县
3316 | 江城哈尼族彝族自治县
3317 | 孟连傣族拉祜族佤族自治县
3318 | 澜沧拉祜族自治县
3319 | 西盟佤族自治县
3320 |
3321 | 临沧市
3322 |
3323 | 临翔区
3324 | 凤庆县
3325 | 云县
3326 | 永德县
3327 | 镇康县
3328 | 双江拉祜族佤族布朗族傣族自治县
3329 | 耿马傣族佤族自治县
3330 | 沧源佤族自治县
3331 |
3332 | 楚雄彝族自治州
3333 |
3334 | 楚雄
3335 | 双柏县
3336 | 牟定县
3337 | 南华县
3338 | 姚安县
3339 | 大姚县
3340 | 永仁县
3341 | 元谋县
3342 | 武定县
3343 | 禄丰县
3344 |
3345 | 红河哈尼族彝族自治州
3346 |
3347 | 个旧
3348 | 开远
3349 | 蒙自县
3350 | 屏边苗族自治县
3351 | 建水县
3352 | 石屏县
3353 | 弥勒县
3354 | 泸西县
3355 | 元阳县
3356 | 红河县
3357 | 金平苗族瑶族傣族自治县
3358 | 绿春县
3359 | 河口瑶族自治县
3360 |
3361 | 文山壮族苗族自治州
3362 |
3363 | 文山县
3364 | 砚山县
3365 | 西畴县
3366 | 麻栗坡县
3367 | 马关县
3368 | 丘北县
3369 | 广南县
3370 | 富宁县
3371 |
3372 | 西双版纳傣族自治州
3373 |
3374 | 景洪
3375 | 勐海县
3376 | 勐腊县
3377 |
3378 | 大理白族自治州
3379 |
3380 | 大理
3381 | 漾濞彝族自治县
3382 | 祥云县
3383 | 宾川县
3384 | 弥渡县
3385 | 南涧彝族自治县
3386 | 巍山彝族回族自治县
3387 | 永平县
3388 | 云龙县
3389 | 洱源县
3390 | 剑川县
3391 | 鹤庆县
3392 |
3393 | 德宏傣族景颇族自治州
3394 |
3395 | 瑞丽
3396 | 潞西
3397 | 梁河县
3398 | 盈江县
3399 | 陇川县
3400 |
3401 | 怒江傈僳族自治州
3402 |
3403 | 泸水县
3404 | 福贡县
3405 | 贡山独龙族怒族自治县
3406 | 兰坪白族普米族自治县
3407 |
3408 | 迪庆藏族自治州
3409 |
3410 | 香格里拉县
3411 | 德钦县
3412 | 维西傈僳族自治县
3413 |
3414 |
3415 |
3416 | 西藏
3417 |
3418 |
3419 | 拉萨市
3420 |
3421 | 城关区
3422 | 林周县
3423 | 当雄县
3424 | 尼木县
3425 | 曲水县
3426 | 堆龙德庆县
3427 | 达孜县
3428 | 墨竹工卡县
3429 |
3430 | 昌都地区
3431 |
3432 | 昌都县
3433 | 江达县
3434 | 贡觉县
3435 | 类乌齐县
3436 | 丁青县
3437 | 察雅县
3438 | 八宿县
3439 | 左贡县
3440 | 芒康县
3441 | 洛隆县
3442 | 边坝县
3443 |
3444 | 山南地区
3445 |
3446 | 乃东县
3447 | 扎囊县
3448 | 贡嘎县
3449 | 桑日县
3450 | 琼结县
3451 | 曲松县
3452 | 措美县
3453 | 洛扎县
3454 | 加查县
3455 | 隆子县
3456 | 错那县
3457 | 浪卡子县
3458 |
3459 | 日喀则地区
3460 |
3461 | 日喀则
3462 | 南木林县
3463 | 江孜县
3464 | 定日县
3465 | 萨迦县
3466 | 拉孜县
3467 | 昂仁县
3468 | 谢通门县
3469 | 白朗县
3470 | 仁布县
3471 | 康马县
3472 | 定结县
3473 | 仲巴县
3474 | 亚东县
3475 | 吉隆县
3476 | 聂拉木县
3477 | 萨嘎县
3478 | 岗巴县
3479 |
3480 | 那曲地区
3481 |
3482 | 那曲县
3483 | 嘉黎县
3484 | 比如县
3485 | 聂荣县
3486 | 安多县
3487 | 申扎县
3488 | 索县
3489 | 班戈县
3490 | 巴青县
3491 | 尼玛县
3492 |
3493 | 阿里地区
3494 |
3495 | 普兰县
3496 | 札达县
3497 | 噶尔县
3498 | 日土县
3499 | 革吉县
3500 | 改则县
3501 | 措勤县
3502 |
3503 | 林芝地区
3504 |
3505 | 林芝县
3506 | 工布江达县
3507 | 米林县
3508 | 墨脱县
3509 | 波密县
3510 | 察隅县
3511 | 朗县
3512 |
3513 |
3514 |
3515 | 陕西省
3516 |
3517 |
3518 | 西安市
3519 |
3520 | 新城区
3521 | 碑林区
3522 | 莲湖区
3523 | 灞桥区
3524 | 未央区
3525 | 雁塔区
3526 | 阎良区
3527 | 临潼区
3528 | 长安区
3529 | 蓝田县
3530 | 周至县
3531 | 户县
3532 | 高陵县
3533 |
3534 | 铜川市
3535 |
3536 | 王益区
3537 | 印台区
3538 | 耀州区
3539 | 宜君县
3540 |
3541 | 宝鸡市
3542 |
3543 | 渭滨区
3544 | 金台区
3545 | 陈仓区
3546 | 凤翔县
3547 | 岐山县
3548 | 扶风县
3549 | 眉县
3550 | 陇县
3551 | 千阳县
3552 | 麟游县
3553 | 凤县
3554 | 太白县
3555 |
3556 | 咸阳市
3557 |
3558 | 秦都区
3559 | 杨凌区
3560 | 渭城区
3561 | 三原县
3562 | 泾阳县
3563 | 乾县
3564 | 礼泉县
3565 | 永寿县
3566 | 彬县
3567 | 长武县
3568 | 旬邑县
3569 | 淳化县
3570 | 武功县
3571 | 兴平
3572 |
3573 | 渭南市
3574 |
3575 | 临渭区
3576 | 华县
3577 | 潼关县
3578 | 大荔县
3579 | 合阳县
3580 | 澄城县
3581 | 蒲城县
3582 | 白水县
3583 | 富平县
3584 | 韩城
3585 | 华阴
3586 |
3587 | 延安市
3588 |
3589 | 宝塔区
3590 | 延长县
3591 | 延川县
3592 | 子长县
3593 | 安塞县
3594 | 志丹县
3595 | 吴旗县
3596 | 甘泉县
3597 | 富县
3598 | 洛川县
3599 | 宜川县
3600 | 黄龙县
3601 | 黄陵县
3602 |
3603 | 汉中市
3604 |
3605 | 汉台区
3606 | 南郑县
3607 | 城固县
3608 | 洋县
3609 | 西乡县
3610 | 勉县
3611 | 宁强县
3612 | 略阳县
3613 | 镇巴县
3614 | 留坝县
3615 | 佛坪县
3616 |
3617 | 榆林市
3618 |
3619 | 榆阳区
3620 | 神木县
3621 | 府谷县
3622 | 横山县
3623 | 靖边县
3624 | 定边县
3625 | 绥德县
3626 | 米脂县
3627 | 佳县
3628 | 吴堡县
3629 | 清涧县
3630 | 子洲县
3631 |
3632 | 安康市
3633 |
3634 | 汉滨区
3635 | 汉阴县
3636 | 石泉县
3637 | 宁陕县
3638 | 紫阳县
3639 | 岚皋县
3640 | 平利县
3641 | 镇坪县
3642 | 旬阳县
3643 | 白河县
3644 |
3645 | 商洛市
3646 |
3647 | 商州区
3648 | 洛南县
3649 | 丹凤县
3650 | 商南县
3651 | 山阳县
3652 | 镇安县
3653 | 柞水县
3654 |
3655 |
3656 |
3657 | 甘肃省
3658 |
3659 |
3660 | 兰州市
3661 |
3662 | 城关区
3663 | 七里河区
3664 | 西固区
3665 | 安宁区
3666 | 红古区
3667 | 永登县
3668 | 皋兰县
3669 | 榆中县
3670 |
3671 | 嘉峪关市
3672 |
3673 | 金昌市
3674 |
3675 | 金川区
3676 | 永昌县
3677 |
3678 | 白银市
3679 |
3680 | 白银区
3681 | 平川区
3682 | 靖远县
3683 | 会宁县
3684 | 景泰县
3685 |
3686 | 天水市
3687 |
3688 | 秦城区
3689 | 北道区
3690 | 清水县
3691 | 秦安县
3692 | 甘谷县
3693 | 武山县
3694 | 张家川回族自治县
3695 |
3696 | 武威市
3697 |
3698 | 凉州区
3699 | 民勤县
3700 | 古浪县
3701 | 天祝藏族自治县
3702 |
3703 | 张掖市
3704 |
3705 | 甘州区
3706 | 肃南裕固族自治县
3707 | 民乐县
3708 | 临泽县
3709 | 高台县
3710 | 山丹县
3711 |
3712 | 平凉市
3713 |
3714 | 崆峒区
3715 | 泾川县
3716 | 灵台县
3717 | 崇信县
3718 | 华亭县
3719 | 庄浪县
3720 | 静宁县
3721 |
3722 | 酒泉市
3723 |
3724 | 肃州区
3725 | 金塔县
3726 | 安西县
3727 | 肃北蒙古族自治县
3728 | 阿克塞哈萨克族自治县
3729 | 玉门
3730 | 敦煌
3731 |
3732 | 庆阳市
3733 |
3734 | 西峰区
3735 | 庆城县
3736 | 环县
3737 | 华池县
3738 | 合水县
3739 | 正宁县
3740 | 宁县
3741 | 镇原县
3742 |
3743 | 定西市
3744 |
3745 | 安定区
3746 | 通渭县
3747 | 陇西县
3748 | 渭源县
3749 | 临洮县
3750 | 漳县
3751 | 岷县
3752 |
3753 | 陇南市
3754 |
3755 | 武都区
3756 | 成县
3757 | 文县
3758 | 宕昌县
3759 | 康县
3760 | 西和县
3761 | 礼县
3762 | 徽县
3763 | 两当县
3764 |
3765 | 临夏回族自治州
3766 |
3767 | 临夏
3768 | 临夏县
3769 | 康乐县
3770 | 永靖县
3771 | 广河县
3772 | 和政县
3773 | 东乡族自治县
3774 | 积石山保安族东乡族撒拉族自治县
3775 |
3776 | 甘南藏族自治州
3777 |
3778 | 合作
3779 | 临潭县
3780 | 卓尼县
3781 | 舟曲县
3782 | 迭部县
3783 | 玛曲县
3784 | 碌曲县
3785 | 夏河县
3786 |
3787 |
3788 |
3789 | 青海省
3790 |
3791 |
3792 | 西宁市
3793 |
3794 | 城东区
3795 | 城中区
3796 | 城西区
3797 | 城北区
3798 | 大通回族土族自治县
3799 | 湟中县
3800 | 湟源县
3801 |
3802 | 海东地区
3803 |
3804 | 平安县
3805 | 民和回族土族自治县
3806 | 乐都县
3807 | 互助土族自治县
3808 | 化隆回族自治县
3809 | 循化撒拉族自治县
3810 |
3811 | 海北藏族自治州
3812 |
3813 | 门源回族自治县
3814 | 祁连县
3815 | 海晏县
3816 | 刚察县
3817 |
3818 | 黄南藏族自治州
3819 |
3820 | 同仁县
3821 | 尖扎县
3822 | 泽库县
3823 | 河南蒙古族自治县
3824 |
3825 | 海南藏族自治州
3826 |
3827 | 共和县
3828 | 同德县
3829 | 贵德县
3830 | 兴海县
3831 | 贵南县
3832 |
3833 | 果洛藏族自治州
3834 |
3835 | 玛沁县
3836 | 班玛县
3837 | 甘德县
3838 | 达日县
3839 | 久治县
3840 | 玛多县
3841 |
3842 | 玉树藏族自治州
3843 |
3844 | 玉树县
3845 | 杂多县
3846 | 称多县
3847 | 治多县
3848 | 囊谦县
3849 | 曲麻莱县
3850 |
3851 | 海西蒙古族藏族自治州
3852 |
3853 | 格尔木
3854 | 德令哈
3855 | 乌兰县
3856 | 都兰县
3857 | 天峻县
3858 |
3859 |
3860 |
3861 | 宁夏
3862 |
3863 |
3864 | 银川市
3865 |
3866 | 兴庆区
3867 | 西夏区
3868 | 金凤区
3869 | 永宁县
3870 | 贺兰县
3871 | 灵武
3872 |
3873 | 石嘴山市
3874 |
3875 | 大武口区
3876 | 惠农区
3877 | 平罗县
3878 |
3879 | 吴忠市
3880 |
3881 | 利通区
3882 | 盐池县
3883 | 同心县
3884 | 青铜峡
3885 |
3886 | 固原市
3887 |
3888 | 原州区
3889 | 西吉县
3890 | 隆德县
3891 | 泾源县
3892 | 彭阳县
3893 |
3894 | 中卫市
3895 |
3896 | 沙坡头区
3897 | 中宁县
3898 | 海原县
3899 |
3900 |
3901 |
3902 | 新疆
3903 |
3904 |
3905 | 乌鲁木齐市
3906 |
3907 | 天山区
3908 | 沙依巴克区
3909 | 新区
3910 | 水磨沟区
3911 | 头屯河区
3912 | 达坂城区
3913 | 东山区
3914 | 乌鲁木齐县
3915 |
3916 | 克拉玛依市
3917 |
3918 | 独山子区
3919 | 克拉玛依区
3920 | 白碱滩区
3921 | 乌尔禾区
3922 |
3923 | 吐鲁番地区
3924 |
3925 | 吐鲁番
3926 | 鄯善县
3927 | 托克逊县
3928 |
3929 | 哈密地区
3930 |
3931 | 哈密
3932 | 巴里坤哈萨克自治县
3933 | 伊吾县
3934 |
3935 | 昌吉回族自治州
3936 |
3937 | 昌吉
3938 | 阜康
3939 | 米泉
3940 | 呼图壁县
3941 | 玛纳斯县
3942 | 奇台县
3943 | 吉木萨尔县
3944 | 木垒哈萨克自治县
3945 |
3946 | 博尔塔拉蒙古自治州
3947 |
3948 | 博乐
3949 | 精河县
3950 | 温泉县
3951 |
3952 | 巴音郭楞蒙古自治州
3953 |
3954 | 库尔勒
3955 | 轮台县
3956 | 尉犁县
3957 | 若羌县
3958 | 且末县
3959 | 焉耆回族自治县
3960 | 和静县
3961 | 和硕县
3962 | 博湖县
3963 |
3964 | 阿克苏地区
3965 |
3966 | 阿克苏
3967 | 温宿县
3968 | 库车县
3969 | 沙雅县
3970 | 新和县
3971 | 拜城县
3972 | 乌什县
3973 | 阿瓦提县
3974 |
3975 | 克孜勒苏柯尔克孜自治州
3976 |
3977 | 阿图什
3978 | 阿克陶县
3979 | 阿合奇县
3980 | 乌恰县
3981 |
3982 | 喀什地区
3983 |
3984 | 喀什
3985 | 疏附县
3986 | 疏勒县
3987 | 英吉沙县
3988 | 泽普县
3989 | 莎车县
3990 | 叶城县
3991 | 麦盖提县
3992 | 岳普湖县
3993 | 伽师县
3994 | 巴楚县
3995 | 塔什库尔干塔吉克自治县
3996 |
3997 | 和田地区
3998 |
3999 | 和田
4000 | 和田县
4001 | 墨玉县
4002 | 皮山县
4003 | 洛浦县
4004 | 策勒县
4005 | 于田县
4006 | 民丰县
4007 |
4008 | 伊犁哈萨克自治州
4009 |
4010 | 伊宁
4011 | 奎屯
4012 | 伊宁县
4013 | 察布查尔锡伯自治县
4014 | 霍城县
4015 | 巩留县
4016 | 新源县
4017 | 昭苏县
4018 | 特克斯县
4019 | 尼勒克县
4020 |
4021 | 塔城地区
4022 |
4023 | 塔城
4024 | 乌苏
4025 | 额敏县
4026 | 沙湾县
4027 | 托里县
4028 | 裕民县
4029 | 和布克赛尔蒙古自治县
4030 |
4031 | 阿勒泰地区
4032 |
4033 | 阿勒泰
4034 | 布尔津县
4035 | 富蕴县
4036 | 福海县
4037 | 哈巴河县
4038 | 青河县
4039 | 吉木乃县
4040 |
4041 | 石河子市
4042 |
4043 | 石河子
4044 |
4045 | 阿拉尔市
4046 |
4047 | 阿拉尔
4048 |
4049 | 图木舒克市
4050 |
4051 | 图木舒克
4052 |
4053 | 五家渠市
4054 |
4055 | 五家渠
4056 |
4057 |
4058 |
4059 | 香港
4060 |
4061 |
4062 | 香港特别行政区
4063 |
4064 | 香港
4065 |
4066 |
4067 |
4068 | 澳门
4069 |
4070 |
4071 | 澳门特别行政区
4072 |
4073 | 澳门
4074 |
4075 |
4076 |
4077 | 台湾省
4078 |
4079 |
4080 | 台湾省
4081 |
4082 | 台湾
4083 |
4084 |
4085 |
4086 |
4087 |
4088 |
--------------------------------------------------------------------------------