├── AddressChoicePickViewDemo.xcodeproj
├── project.xcworkspace
│ └── contents.xcworkspacedata
├── xcuserdata
│ └── apple.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── AddressChoicePickViewDemo.xcscheme
└── project.pbxproj
├── AddressChoicePickViewDemo
├── ViewController.h
├── AppDelegate.h
├── AreaObject.m
├── main.m
├── AreaObject.h
├── AddressChoicePickerView.h
├── Images.xcassets
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── ViewController.m
├── Info.plist
├── AppDelegate.m
├── Base.lproj
│ ├── LaunchScreen.xib
│ └── Main.storyboard
├── AddressChoicePickerView.xib
├── AddressChoicePickerView.m
└── AreaPlist.plist
└── AddressChoicePickViewDemoTests
├── Info.plist
└── AddressChoicePickViewDemoTests.m
/AddressChoicePickViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/ViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // AddressChoicePickViewDemo
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 zhengzeqin. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface ViewController : UIViewController
12 |
13 |
14 |
15 | @end
16 |
17 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.h
3 | // AddressChoicePickViewDemo
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 zhengzeqin. 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 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AreaObject.m:
--------------------------------------------------------------------------------
1 | //
2 | // AreaObject.m
3 | // Wujiang
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 com.injoinow. All rights reserved.
7 | // make by 郑泽钦 分享
8 |
9 | #import "AreaObject.h"
10 |
11 | @implementation AreaObject
12 |
13 | - (NSString *)description{
14 | return [NSString stringWithFormat:@"%@ %@ %@ %@",self.region,self.province,self.city,self.area];
15 | }
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // AddressChoicePickViewDemo
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 zhengzeqin. 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 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AreaObject.h:
--------------------------------------------------------------------------------
1 | //
2 | // AreaObject.h
3 | // Wujiang
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 com.injoinow. All rights reserved.
7 | //
8 | //区域对象
9 | #import
10 |
11 | @interface AreaObject : NSObject
12 |
13 | //区域
14 | @property (copy, nonatomic) NSString *region;
15 | //省名
16 | @property (copy, nonatomic) NSString *province;
17 | //城市名
18 | @property (copy, nonatomic) NSString *city;
19 | //区县名
20 | @property (copy, nonatomic) NSString *area;
21 |
22 | @end
23 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AddressChoicePickerView.h:
--------------------------------------------------------------------------------
1 | //
2 | // AddressChoicePickerView.h
3 | // Wujiang
4 | //
5 | // Created by zhengzeqin on 15/5/27.
6 | // Copyright (c) 2015年 com.injoinow. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "AreaObject.h"
11 | @class AddressChoicePickerView;
12 | typedef void (^AddressChoicePickerViewBlock)(AddressChoicePickerView *view,UIButton *btn,AreaObject *locate);
13 | @interface AddressChoicePickerView : UIView
14 |
15 | @property (copy, nonatomic)AddressChoicePickerViewBlock block;
16 |
17 | - (void)show;
18 | @end
19 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | AddressChoicePickViewDemo.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 187580091B17432400DC098A
16 |
17 | primary
18 |
19 |
20 | 187580221B17432500DC098A
21 |
22 | primary
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/AddressChoicePickViewDemoTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | zhengzeqin.$(PRODUCT_NAME:rfc1034identifier)
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 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/ViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.m
3 | // AddressChoicePickViewDemo
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 zhengzeqin. All rights reserved.
7 | // make by 郑泽钦 分享
8 |
9 | #import "ViewController.h"
10 | #import "AddressChoicePickerView.h"
11 | @interface ViewController ()
12 | @property (weak, nonatomic) IBOutlet UILabel *addressLabel;
13 |
14 | @end
15 |
16 | @implementation ViewController
17 |
18 | - (void)viewDidLoad {
19 | [super viewDidLoad];
20 | // Do any additional setup after loading the view, typically from a nib.
21 |
22 | }
23 | - (IBAction)tapPress:(UITapGestureRecognizer *)sender {
24 | AddressChoicePickerView *addressPickerView = [[AddressChoicePickerView alloc]init];
25 | addressPickerView.block = ^(AddressChoicePickerView *view,UIButton *btn,AreaObject *locate){
26 | self.addressLabel.text = [NSString stringWithFormat:@"%@",locate];
27 | self.addressLabel.textColor = [UIColor blackColor];
28 | };
29 | [addressPickerView show];
30 |
31 | }
32 |
33 |
34 | @end
35 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemoTests/AddressChoicePickViewDemoTests.m:
--------------------------------------------------------------------------------
1 | //
2 | // AddressChoicePickViewDemoTests.m
3 | // AddressChoicePickViewDemoTests
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 zhengzeqin. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface AddressChoicePickViewDemoTests : XCTestCase
13 |
14 | @end
15 |
16 | @implementation AddressChoicePickViewDemoTests
17 |
18 | - (void)setUp {
19 | [super setUp];
20 | // Put setup code here. This method is called before the invocation of each test method in the class.
21 | }
22 |
23 | - (void)tearDown {
24 | // Put teardown code here. This method is called after the invocation of each test method in the class.
25 | [super tearDown];
26 | }
27 |
28 | - (void)testExample {
29 | // This is an example of a functional test case.
30 | XCTAssert(YES, @"Pass");
31 | }
32 |
33 | - (void)testPerformanceExample {
34 | // This is an example of a performance test case.
35 | [self measureBlock:^{
36 | // Put the code you want to measure the time of here.
37 | }];
38 | }
39 |
40 | @end
41 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | zhengzeqin.$(PRODUCT_NAME:rfc1034identifier)
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 |
40 |
41 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.m
3 | // AddressChoicePickViewDemo
4 | //
5 | // Created by zhengzeqin on 15/5/28.
6 | // Copyright (c) 2015年 zhengzeqin. All rights reserved.
7 | // make by 郑泽钦 分享
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 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
20 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/AddressChoicePickViewDemo.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
38 |
39 |
44 |
45 |
47 |
53 |
54 |
55 |
56 |
57 |
63 |
64 |
65 |
66 |
75 |
77 |
83 |
84 |
85 |
86 |
87 |
88 |
94 |
96 |
102 |
103 |
104 |
105 |
107 |
108 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AddressChoicePickerView.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
31 |
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 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AddressChoicePickerView.m:
--------------------------------------------------------------------------------
1 | //
2 | // AddressChoicePickerView.m
3 | // Wujiang
4 | //
5 | // Created by zhengzeqin on 15/5/27.
6 | // Copyright (c) 2015年 com.injoinow. All rights reserved.
7 | // make by 郑泽钦 分享
8 |
9 | #import "AddressChoicePickerView.h"
10 |
11 | @interface AddressChoicePickerView()
12 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *contentViewHegithCons;
13 | @property (weak, nonatomic) IBOutlet UIPickerView *pickView;
14 | @property (strong, nonatomic) AreaObject *locate;
15 | //区域 数组
16 | @property (strong, nonatomic) NSArray *regionArr;
17 | //省 数组
18 | @property (strong, nonatomic) NSArray *provinceArr;
19 | //城市 数组
20 | @property (strong, nonatomic) NSArray *cityArr;
21 | //区县 数组
22 | @property (strong, nonatomic) NSArray *areaArr;
23 |
24 | @end
25 | @implementation AddressChoicePickerView
26 |
27 | - (instancetype)init{
28 |
29 | if (self = [super init]) {
30 | self = [[[NSBundle mainBundle]loadNibNamed:@"AddressChoicePickerView" owner:nil options:nil]firstObject];
31 | self.frame = [UIScreen mainScreen].bounds;
32 | self.pickView.delegate = self;
33 | self.pickView.dataSource = self;
34 | self.regionArr = [[NSArray alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"AreaPlist.plist" ofType:nil]];
35 | self.provinceArr = self.regionArr[0][@"provinces"];
36 | self.cityArr = self.provinceArr[0][@"cities"];
37 | self.areaArr = self.cityArr[0][@"areas"];
38 | self.locate.region = self.regionArr[0][@"region"];
39 | self.locate.province = self.provinceArr[0][@"province"];
40 | self.locate.city = self.cityArr[0][@"city"];
41 | if (self.areaArr.count) {
42 | self.locate.area = self.areaArr[0];
43 | }else{
44 | self.locate.area = @"";
45 | }
46 | [self customView];
47 | }
48 | return self;
49 | }
50 |
51 | - (void)customView{
52 | self.contentViewHegithCons.constant = 0;
53 | [self layoutIfNeeded];
54 | }
55 |
56 | #pragma mark - setter && getter
57 |
58 | - (AreaObject *)locate{
59 | if (!_locate) {
60 | _locate = [[AreaObject alloc]init];
61 | }
62 | return _locate;
63 | }
64 |
65 | #pragma mark - action
66 |
67 | //选择完成
68 | - (IBAction)finishBtnPress:(UIButton *)sender {
69 | if (self.block) {
70 | self.block(self,sender,self.locate);
71 | }
72 | [self hide];
73 | }
74 |
75 | //隐藏
76 | - (IBAction)dissmissBtnPress:(UIButton *)sender {
77 |
78 | [self hide];
79 | }
80 |
81 | #pragma mark - function
82 |
83 | - (void)show{
84 | UIWindow *win = [[UIApplication sharedApplication] keyWindow];
85 | UIView *topView = [win.subviews firstObject];
86 | [topView addSubview:self];
87 |
88 | [UIView animateWithDuration:0.3 animations:^{
89 | self.contentViewHegithCons.constant = 250;
90 | [self layoutIfNeeded];
91 | }];
92 | }
93 |
94 | - (void)hide{
95 | [UIView animateWithDuration:0.3 animations:^{
96 | self.alpha = 0;
97 | self.contentViewHegithCons.constant = 0;
98 | [self layoutIfNeeded];
99 | } completion:^(BOOL finished) {
100 | [self removeFromSuperview];
101 | }];
102 | }
103 |
104 |
105 | #pragma mark - UIPickerViewDataSource
106 |
107 | - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView{
108 | return 4;
109 | }
110 |
111 | - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component{
112 | switch (component) {
113 | case 0:
114 | return self.regionArr.count;
115 | break;
116 | case 1:
117 | return self.provinceArr.count;
118 | break;
119 | case 2:
120 | return self.cityArr.count;
121 | break;
122 | case 3:
123 | if (self.areaArr.count) {
124 | return self.areaArr.count;
125 | break;
126 | }
127 | default:
128 | return 0;
129 | break;
130 | }
131 | }
132 | - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component{
133 | switch (component) {
134 | case 0:
135 | return [[self.regionArr objectAtIndex:row] objectForKey:@"region"];
136 | break;
137 | case 1:
138 | return [[self.provinceArr objectAtIndex:row] objectForKey:@"province"];
139 | break;
140 | case 2:
141 | return [[self.cityArr objectAtIndex:row] objectForKey:@"city"];
142 | break;
143 | case 3:
144 | if (self.areaArr.count) {
145 | return [self.areaArr objectAtIndex:row];
146 | break;
147 | }
148 | default:
149 | return @"";
150 | break;
151 | }
152 | }
153 | #pragma mark - UIPickerViewDelegate
154 |
155 | - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view{
156 | UILabel* pickerLabel = (UILabel*)view;
157 | if (!pickerLabel){
158 | pickerLabel = [[UILabel alloc] init];
159 | pickerLabel.minimumScaleFactor = 8.0;
160 | pickerLabel.adjustsFontSizeToFitWidth = YES;
161 | [pickerLabel setTextAlignment:NSTextAlignmentCenter];
162 | [pickerLabel setBackgroundColor:[UIColor clearColor]];
163 | [pickerLabel setFont:[UIFont boldSystemFontOfSize:15]];
164 | }
165 | pickerLabel.text=[self pickerView:pickerView titleForRow:row forComponent:component];
166 | return pickerLabel;
167 | }
168 |
169 |
170 | - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
171 | switch (component) {
172 | case 0:{
173 | self.provinceArr = self.regionArr[row][@"provinces"];
174 | [self.pickView reloadComponent:1];
175 | [self.pickView selectRow:0 inComponent:1 animated:YES];
176 |
177 |
178 | self.cityArr = [[self.provinceArr objectAtIndex:0] objectForKey:@"cities"];
179 | [self.pickView reloadComponent:2];
180 | [self.pickView selectRow:0 inComponent:2 animated:YES];
181 |
182 |
183 | self.areaArr = [[self.cityArr objectAtIndex:0] objectForKey:@"areas"];
184 | [self.pickView reloadComponent:3];
185 | [self.pickView selectRow:0 inComponent:3 animated:YES];
186 |
187 | self.locate.region = self.regionArr[row][@"region"];
188 | self.locate.province = self.provinceArr[0][@"province"];
189 | self.locate.city = self.cityArr[0][@"city"];
190 | if (self.areaArr.count) {
191 | self.locate.area = self.areaArr[0];
192 | }else{
193 | self.locate.area = @"";
194 | }
195 |
196 |
197 | break;
198 | }
199 | case 1:
200 | {
201 | self.cityArr = [[self.provinceArr objectAtIndex:row] objectForKey:@"cities"];
202 | [self.pickView reloadComponent:2];
203 | [self.pickView selectRow:0 inComponent:2 animated:YES];
204 |
205 |
206 | self.areaArr = [[self.cityArr objectAtIndex:0] objectForKey:@"areas"];
207 | [self.pickView reloadComponent:3];
208 | [self.pickView selectRow:0 inComponent:3 animated:YES];
209 |
210 | self.locate.province = self.provinceArr[row][@"province"];
211 | self.locate.city = self.cityArr[0][@"city"];
212 | if (self.areaArr.count) {
213 | self.locate.area = self.areaArr[0];
214 | }else{
215 | self.locate.area = @"";
216 | }
217 |
218 | break;
219 | }
220 | case 2:{
221 | self.areaArr = [[self.cityArr objectAtIndex:row] objectForKey:@"areas"];
222 | [self.pickView reloadComponent:3];
223 | [self.pickView selectRow:0 inComponent:3 animated:YES];
224 |
225 | self.locate.city = self.cityArr[row][@"city"];
226 | if (self.areaArr.count) {
227 | self.locate.area = self.areaArr[0];
228 | }else{
229 | self.locate.area = @"";
230 | }
231 |
232 | break;
233 | }
234 | case 3:{
235 | if (self.areaArr.count) {
236 | self.locate.area = self.areaArr[row];
237 | }else{
238 | self.locate.area = @"";
239 | }
240 |
241 | break;
242 | }
243 | default:
244 | break;
245 | }
246 | }
247 |
248 |
249 | @end
250 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 187580101B17432400DC098A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 1875800F1B17432400DC098A /* main.m */; };
11 | 187580131B17432400DC098A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 187580121B17432400DC098A /* AppDelegate.m */; };
12 | 187580161B17432400DC098A /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 187580151B17432400DC098A /* ViewController.m */; };
13 | 187580191B17432400DC098A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 187580171B17432400DC098A /* Main.storyboard */; };
14 | 1875801B1B17432400DC098A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1875801A1B17432400DC098A /* Images.xcassets */; };
15 | 1875801E1B17432400DC098A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1875801C1B17432400DC098A /* LaunchScreen.xib */; };
16 | 1875802A1B17432500DC098A /* AddressChoicePickViewDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 187580291B17432500DC098A /* AddressChoicePickViewDemoTests.m */; };
17 | 187580361B1743D000DC098A /* AddressChoicePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 187580341B1743D000DC098A /* AddressChoicePickerView.m */; };
18 | 187580371B1743D000DC098A /* AddressChoicePickerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 187580351B1743D000DC098A /* AddressChoicePickerView.xib */; };
19 | 1875803A1B1743E100DC098A /* AreaObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 187580391B1743E100DC098A /* AreaObject.m */; };
20 | 1875803C1B17453200DC098A /* AreaPlist.plist in Resources */ = {isa = PBXBuildFile; fileRef = 1875803B1B17453200DC098A /* AreaPlist.plist */; };
21 | /* End PBXBuildFile section */
22 |
23 | /* Begin PBXContainerItemProxy section */
24 | 187580241B17432500DC098A /* PBXContainerItemProxy */ = {
25 | isa = PBXContainerItemProxy;
26 | containerPortal = 187580021B17432400DC098A /* Project object */;
27 | proxyType = 1;
28 | remoteGlobalIDString = 187580091B17432400DC098A;
29 | remoteInfo = AddressChoicePickViewDemo;
30 | };
31 | /* End PBXContainerItemProxy section */
32 |
33 | /* Begin PBXFileReference section */
34 | 1875800A1B17432400DC098A /* AddressChoicePickViewDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AddressChoicePickViewDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
35 | 1875800E1B17432400DC098A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
36 | 1875800F1B17432400DC098A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
37 | 187580111B17432400DC098A /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
38 | 187580121B17432400DC098A /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; };
39 | 187580141B17432400DC098A /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; };
40 | 187580151B17432400DC098A /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; };
41 | 187580181B17432400DC098A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
42 | 1875801A1B17432400DC098A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
43 | 1875801D1B17432400DC098A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
44 | 187580231B17432500DC098A /* AddressChoicePickViewDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AddressChoicePickViewDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 187580281B17432500DC098A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 187580291B17432500DC098A /* AddressChoicePickViewDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddressChoicePickViewDemoTests.m; sourceTree = ""; };
47 | 187580331B1743D000DC098A /* AddressChoicePickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressChoicePickerView.h; sourceTree = ""; };
48 | 187580341B1743D000DC098A /* AddressChoicePickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressChoicePickerView.m; sourceTree = ""; };
49 | 187580351B1743D000DC098A /* AddressChoicePickerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AddressChoicePickerView.xib; sourceTree = ""; };
50 | 187580381B1743E100DC098A /* AreaObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AreaObject.h; sourceTree = ""; };
51 | 187580391B1743E100DC098A /* AreaObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AreaObject.m; sourceTree = ""; };
52 | 1875803B1B17453200DC098A /* AreaPlist.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = AreaPlist.plist; sourceTree = ""; };
53 | /* End PBXFileReference section */
54 |
55 | /* Begin PBXFrameworksBuildPhase section */
56 | 187580071B17432400DC098A /* Frameworks */ = {
57 | isa = PBXFrameworksBuildPhase;
58 | buildActionMask = 2147483647;
59 | files = (
60 | );
61 | runOnlyForDeploymentPostprocessing = 0;
62 | };
63 | 187580201B17432500DC098A /* Frameworks */ = {
64 | isa = PBXFrameworksBuildPhase;
65 | buildActionMask = 2147483647;
66 | files = (
67 | );
68 | runOnlyForDeploymentPostprocessing = 0;
69 | };
70 | /* End PBXFrameworksBuildPhase section */
71 |
72 | /* Begin PBXGroup section */
73 | 187580011B17432400DC098A = {
74 | isa = PBXGroup;
75 | children = (
76 | 1875800C1B17432400DC098A /* AddressChoicePickViewDemo */,
77 | 187580261B17432500DC098A /* AddressChoicePickViewDemoTests */,
78 | 1875800B1B17432400DC098A /* Products */,
79 | );
80 | sourceTree = "";
81 | };
82 | 1875800B1B17432400DC098A /* Products */ = {
83 | isa = PBXGroup;
84 | children = (
85 | 1875800A1B17432400DC098A /* AddressChoicePickViewDemo.app */,
86 | 187580231B17432500DC098A /* AddressChoicePickViewDemoTests.xctest */,
87 | );
88 | name = Products;
89 | sourceTree = "";
90 | };
91 | 1875800C1B17432400DC098A /* AddressChoicePickViewDemo */ = {
92 | isa = PBXGroup;
93 | children = (
94 | 187580381B1743E100DC098A /* AreaObject.h */,
95 | 187580391B1743E100DC098A /* AreaObject.m */,
96 | 187580331B1743D000DC098A /* AddressChoicePickerView.h */,
97 | 187580341B1743D000DC098A /* AddressChoicePickerView.m */,
98 | 187580351B1743D000DC098A /* AddressChoicePickerView.xib */,
99 | 187580111B17432400DC098A /* AppDelegate.h */,
100 | 187580121B17432400DC098A /* AppDelegate.m */,
101 | 187580141B17432400DC098A /* ViewController.h */,
102 | 187580151B17432400DC098A /* ViewController.m */,
103 | 187580171B17432400DC098A /* Main.storyboard */,
104 | 1875801A1B17432400DC098A /* Images.xcassets */,
105 | 1875801C1B17432400DC098A /* LaunchScreen.xib */,
106 | 1875803B1B17453200DC098A /* AreaPlist.plist */,
107 | 1875800D1B17432400DC098A /* Supporting Files */,
108 | );
109 | path = AddressChoicePickViewDemo;
110 | sourceTree = "";
111 | };
112 | 1875800D1B17432400DC098A /* Supporting Files */ = {
113 | isa = PBXGroup;
114 | children = (
115 | 1875800E1B17432400DC098A /* Info.plist */,
116 | 1875800F1B17432400DC098A /* main.m */,
117 | );
118 | name = "Supporting Files";
119 | sourceTree = "";
120 | };
121 | 187580261B17432500DC098A /* AddressChoicePickViewDemoTests */ = {
122 | isa = PBXGroup;
123 | children = (
124 | 187580291B17432500DC098A /* AddressChoicePickViewDemoTests.m */,
125 | 187580271B17432500DC098A /* Supporting Files */,
126 | );
127 | path = AddressChoicePickViewDemoTests;
128 | sourceTree = "";
129 | };
130 | 187580271B17432500DC098A /* Supporting Files */ = {
131 | isa = PBXGroup;
132 | children = (
133 | 187580281B17432500DC098A /* Info.plist */,
134 | );
135 | name = "Supporting Files";
136 | sourceTree = "";
137 | };
138 | /* End PBXGroup section */
139 |
140 | /* Begin PBXNativeTarget section */
141 | 187580091B17432400DC098A /* AddressChoicePickViewDemo */ = {
142 | isa = PBXNativeTarget;
143 | buildConfigurationList = 1875802D1B17432500DC098A /* Build configuration list for PBXNativeTarget "AddressChoicePickViewDemo" */;
144 | buildPhases = (
145 | 187580061B17432400DC098A /* Sources */,
146 | 187580071B17432400DC098A /* Frameworks */,
147 | 187580081B17432400DC098A /* Resources */,
148 | );
149 | buildRules = (
150 | );
151 | dependencies = (
152 | );
153 | name = AddressChoicePickViewDemo;
154 | productName = AddressChoicePickViewDemo;
155 | productReference = 1875800A1B17432400DC098A /* AddressChoicePickViewDemo.app */;
156 | productType = "com.apple.product-type.application";
157 | };
158 | 187580221B17432500DC098A /* AddressChoicePickViewDemoTests */ = {
159 | isa = PBXNativeTarget;
160 | buildConfigurationList = 187580301B17432500DC098A /* Build configuration list for PBXNativeTarget "AddressChoicePickViewDemoTests" */;
161 | buildPhases = (
162 | 1875801F1B17432500DC098A /* Sources */,
163 | 187580201B17432500DC098A /* Frameworks */,
164 | 187580211B17432500DC098A /* Resources */,
165 | );
166 | buildRules = (
167 | );
168 | dependencies = (
169 | 187580251B17432500DC098A /* PBXTargetDependency */,
170 | );
171 | name = AddressChoicePickViewDemoTests;
172 | productName = AddressChoicePickViewDemoTests;
173 | productReference = 187580231B17432500DC098A /* AddressChoicePickViewDemoTests.xctest */;
174 | productType = "com.apple.product-type.bundle.unit-test";
175 | };
176 | /* End PBXNativeTarget section */
177 |
178 | /* Begin PBXProject section */
179 | 187580021B17432400DC098A /* Project object */ = {
180 | isa = PBXProject;
181 | attributes = {
182 | LastUpgradeCheck = 0620;
183 | ORGANIZATIONNAME = zhengzeqin;
184 | TargetAttributes = {
185 | 187580091B17432400DC098A = {
186 | CreatedOnToolsVersion = 6.2;
187 | };
188 | 187580221B17432500DC098A = {
189 | CreatedOnToolsVersion = 6.2;
190 | TestTargetID = 187580091B17432400DC098A;
191 | };
192 | };
193 | };
194 | buildConfigurationList = 187580051B17432400DC098A /* Build configuration list for PBXProject "AddressChoicePickViewDemo" */;
195 | compatibilityVersion = "Xcode 3.2";
196 | developmentRegion = English;
197 | hasScannedForEncodings = 0;
198 | knownRegions = (
199 | en,
200 | Base,
201 | );
202 | mainGroup = 187580011B17432400DC098A;
203 | productRefGroup = 1875800B1B17432400DC098A /* Products */;
204 | projectDirPath = "";
205 | projectRoot = "";
206 | targets = (
207 | 187580091B17432400DC098A /* AddressChoicePickViewDemo */,
208 | 187580221B17432500DC098A /* AddressChoicePickViewDemoTests */,
209 | );
210 | };
211 | /* End PBXProject section */
212 |
213 | /* Begin PBXResourcesBuildPhase section */
214 | 187580081B17432400DC098A /* Resources */ = {
215 | isa = PBXResourcesBuildPhase;
216 | buildActionMask = 2147483647;
217 | files = (
218 | 187580191B17432400DC098A /* Main.storyboard in Resources */,
219 | 1875801E1B17432400DC098A /* LaunchScreen.xib in Resources */,
220 | 1875803C1B17453200DC098A /* AreaPlist.plist in Resources */,
221 | 187580371B1743D000DC098A /* AddressChoicePickerView.xib in Resources */,
222 | 1875801B1B17432400DC098A /* Images.xcassets in Resources */,
223 | );
224 | runOnlyForDeploymentPostprocessing = 0;
225 | };
226 | 187580211B17432500DC098A /* Resources */ = {
227 | isa = PBXResourcesBuildPhase;
228 | buildActionMask = 2147483647;
229 | files = (
230 | );
231 | runOnlyForDeploymentPostprocessing = 0;
232 | };
233 | /* End PBXResourcesBuildPhase section */
234 |
235 | /* Begin PBXSourcesBuildPhase section */
236 | 187580061B17432400DC098A /* Sources */ = {
237 | isa = PBXSourcesBuildPhase;
238 | buildActionMask = 2147483647;
239 | files = (
240 | 187580161B17432400DC098A /* ViewController.m in Sources */,
241 | 1875803A1B1743E100DC098A /* AreaObject.m in Sources */,
242 | 187580131B17432400DC098A /* AppDelegate.m in Sources */,
243 | 187580361B1743D000DC098A /* AddressChoicePickerView.m in Sources */,
244 | 187580101B17432400DC098A /* main.m in Sources */,
245 | );
246 | runOnlyForDeploymentPostprocessing = 0;
247 | };
248 | 1875801F1B17432500DC098A /* Sources */ = {
249 | isa = PBXSourcesBuildPhase;
250 | buildActionMask = 2147483647;
251 | files = (
252 | 1875802A1B17432500DC098A /* AddressChoicePickViewDemoTests.m in Sources */,
253 | );
254 | runOnlyForDeploymentPostprocessing = 0;
255 | };
256 | /* End PBXSourcesBuildPhase section */
257 |
258 | /* Begin PBXTargetDependency section */
259 | 187580251B17432500DC098A /* PBXTargetDependency */ = {
260 | isa = PBXTargetDependency;
261 | target = 187580091B17432400DC098A /* AddressChoicePickViewDemo */;
262 | targetProxy = 187580241B17432500DC098A /* PBXContainerItemProxy */;
263 | };
264 | /* End PBXTargetDependency section */
265 |
266 | /* Begin PBXVariantGroup section */
267 | 187580171B17432400DC098A /* Main.storyboard */ = {
268 | isa = PBXVariantGroup;
269 | children = (
270 | 187580181B17432400DC098A /* Base */,
271 | );
272 | name = Main.storyboard;
273 | sourceTree = "";
274 | };
275 | 1875801C1B17432400DC098A /* LaunchScreen.xib */ = {
276 | isa = PBXVariantGroup;
277 | children = (
278 | 1875801D1B17432400DC098A /* Base */,
279 | );
280 | name = LaunchScreen.xib;
281 | sourceTree = "";
282 | };
283 | /* End PBXVariantGroup section */
284 |
285 | /* Begin XCBuildConfiguration section */
286 | 1875802B1B17432500DC098A /* Debug */ = {
287 | isa = XCBuildConfiguration;
288 | buildSettings = {
289 | ALWAYS_SEARCH_USER_PATHS = NO;
290 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
291 | CLANG_CXX_LIBRARY = "libc++";
292 | CLANG_ENABLE_MODULES = YES;
293 | CLANG_ENABLE_OBJC_ARC = YES;
294 | CLANG_WARN_BOOL_CONVERSION = YES;
295 | CLANG_WARN_CONSTANT_CONVERSION = YES;
296 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
297 | CLANG_WARN_EMPTY_BODY = YES;
298 | CLANG_WARN_ENUM_CONVERSION = YES;
299 | CLANG_WARN_INT_CONVERSION = YES;
300 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
301 | CLANG_WARN_UNREACHABLE_CODE = YES;
302 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
303 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
304 | COPY_PHASE_STRIP = NO;
305 | ENABLE_STRICT_OBJC_MSGSEND = YES;
306 | GCC_C_LANGUAGE_STANDARD = gnu99;
307 | GCC_DYNAMIC_NO_PIC = NO;
308 | GCC_OPTIMIZATION_LEVEL = 0;
309 | GCC_PREPROCESSOR_DEFINITIONS = (
310 | "DEBUG=1",
311 | "$(inherited)",
312 | );
313 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
314 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
315 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
316 | GCC_WARN_UNDECLARED_SELECTOR = YES;
317 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
318 | GCC_WARN_UNUSED_FUNCTION = YES;
319 | GCC_WARN_UNUSED_VARIABLE = YES;
320 | IPHONEOS_DEPLOYMENT_TARGET = 8.2;
321 | MTL_ENABLE_DEBUG_INFO = YES;
322 | ONLY_ACTIVE_ARCH = YES;
323 | SDKROOT = iphoneos;
324 | };
325 | name = Debug;
326 | };
327 | 1875802C1B17432500DC098A /* Release */ = {
328 | isa = XCBuildConfiguration;
329 | buildSettings = {
330 | ALWAYS_SEARCH_USER_PATHS = NO;
331 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
332 | CLANG_CXX_LIBRARY = "libc++";
333 | CLANG_ENABLE_MODULES = YES;
334 | CLANG_ENABLE_OBJC_ARC = YES;
335 | CLANG_WARN_BOOL_CONVERSION = YES;
336 | CLANG_WARN_CONSTANT_CONVERSION = YES;
337 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
338 | CLANG_WARN_EMPTY_BODY = YES;
339 | CLANG_WARN_ENUM_CONVERSION = YES;
340 | CLANG_WARN_INT_CONVERSION = YES;
341 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
342 | CLANG_WARN_UNREACHABLE_CODE = YES;
343 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
344 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
345 | COPY_PHASE_STRIP = NO;
346 | ENABLE_NS_ASSERTIONS = NO;
347 | ENABLE_STRICT_OBJC_MSGSEND = YES;
348 | GCC_C_LANGUAGE_STANDARD = gnu99;
349 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
350 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
351 | GCC_WARN_UNDECLARED_SELECTOR = YES;
352 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
353 | GCC_WARN_UNUSED_FUNCTION = YES;
354 | GCC_WARN_UNUSED_VARIABLE = YES;
355 | IPHONEOS_DEPLOYMENT_TARGET = 8.2;
356 | MTL_ENABLE_DEBUG_INFO = NO;
357 | SDKROOT = iphoneos;
358 | VALIDATE_PRODUCT = YES;
359 | };
360 | name = Release;
361 | };
362 | 1875802E1B17432500DC098A /* Debug */ = {
363 | isa = XCBuildConfiguration;
364 | buildSettings = {
365 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
366 | INFOPLIST_FILE = AddressChoicePickViewDemo/Info.plist;
367 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
368 | PRODUCT_NAME = "$(TARGET_NAME)";
369 | };
370 | name = Debug;
371 | };
372 | 1875802F1B17432500DC098A /* Release */ = {
373 | isa = XCBuildConfiguration;
374 | buildSettings = {
375 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
376 | INFOPLIST_FILE = AddressChoicePickViewDemo/Info.plist;
377 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
378 | PRODUCT_NAME = "$(TARGET_NAME)";
379 | };
380 | name = Release;
381 | };
382 | 187580311B17432500DC098A /* Debug */ = {
383 | isa = XCBuildConfiguration;
384 | buildSettings = {
385 | BUNDLE_LOADER = "$(TEST_HOST)";
386 | FRAMEWORK_SEARCH_PATHS = (
387 | "$(SDKROOT)/Developer/Library/Frameworks",
388 | "$(inherited)",
389 | );
390 | GCC_PREPROCESSOR_DEFINITIONS = (
391 | "DEBUG=1",
392 | "$(inherited)",
393 | );
394 | INFOPLIST_FILE = AddressChoicePickViewDemoTests/Info.plist;
395 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
396 | PRODUCT_NAME = "$(TARGET_NAME)";
397 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AddressChoicePickViewDemo.app/AddressChoicePickViewDemo";
398 | };
399 | name = Debug;
400 | };
401 | 187580321B17432500DC098A /* Release */ = {
402 | isa = XCBuildConfiguration;
403 | buildSettings = {
404 | BUNDLE_LOADER = "$(TEST_HOST)";
405 | FRAMEWORK_SEARCH_PATHS = (
406 | "$(SDKROOT)/Developer/Library/Frameworks",
407 | "$(inherited)",
408 | );
409 | INFOPLIST_FILE = AddressChoicePickViewDemoTests/Info.plist;
410 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
411 | PRODUCT_NAME = "$(TARGET_NAME)";
412 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AddressChoicePickViewDemo.app/AddressChoicePickViewDemo";
413 | };
414 | name = Release;
415 | };
416 | /* End XCBuildConfiguration section */
417 |
418 | /* Begin XCConfigurationList section */
419 | 187580051B17432400DC098A /* Build configuration list for PBXProject "AddressChoicePickViewDemo" */ = {
420 | isa = XCConfigurationList;
421 | buildConfigurations = (
422 | 1875802B1B17432500DC098A /* Debug */,
423 | 1875802C1B17432500DC098A /* Release */,
424 | );
425 | defaultConfigurationIsVisible = 0;
426 | defaultConfigurationName = Release;
427 | };
428 | 1875802D1B17432500DC098A /* Build configuration list for PBXNativeTarget "AddressChoicePickViewDemo" */ = {
429 | isa = XCConfigurationList;
430 | buildConfigurations = (
431 | 1875802E1B17432500DC098A /* Debug */,
432 | 1875802F1B17432500DC098A /* Release */,
433 | );
434 | defaultConfigurationIsVisible = 0;
435 | };
436 | 187580301B17432500DC098A /* Build configuration list for PBXNativeTarget "AddressChoicePickViewDemoTests" */ = {
437 | isa = XCConfigurationList;
438 | buildConfigurations = (
439 | 187580311B17432500DC098A /* Debug */,
440 | 187580321B17432500DC098A /* Release */,
441 | );
442 | defaultConfigurationIsVisible = 0;
443 | };
444 | /* End XCConfigurationList section */
445 | };
446 | rootObject = 187580021B17432400DC098A /* Project object */;
447 | }
448 |
--------------------------------------------------------------------------------
/AddressChoicePickViewDemo/AreaPlist.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | provinces
7 |
8 |
9 | cities
10 |
11 |
12 | areas
13 |
14 | 嘉鱼县
15 | 咸安区
16 | 崇阳县
17 | 通城县
18 | 赤壁市
19 | 通山县
20 |
21 | city
22 | 咸宁
23 |
24 |
25 | areas
26 |
27 | 西陵区
28 | 枝江市
29 | 当阳市
30 | 兴山县
31 | 远安县
32 | 长阳
33 | 秭归县
34 | 点军区
35 | 伍家岗区
36 | 夷陵区
37 | 猇亭区
38 | 宜都市
39 | 五峰
40 |
41 | city
42 | 宜昌
43 |
44 |
45 | areas
46 |
47 | 武穴市
48 | 黄州区
49 | 团风县
50 | 红安县
51 | 罗田县
52 | 英山县
53 | 浠水县
54 | 麻城市
55 | 黄梅县
56 | 蕲春县
57 |
58 | city
59 | 黄冈
60 |
61 |
62 | areas
63 |
64 | 江陵县
65 | 石首市
66 | 洪湖市
67 | 松滋市
68 | 荆州区
69 | 沙市区
70 | 监利县
71 | 公安县
72 |
73 | city
74 | 荆州
75 |
76 |
77 | areas
78 |
79 | 应城市
80 | 云梦县
81 | 大悟县
82 | 孝昌县
83 | 汉川市
84 | 安陆市
85 | 孝南区
86 |
87 | city
88 | 孝感
89 |
90 |
91 | areas
92 |
93 | 京山县
94 | 沙洋县
95 | 东宝区
96 | 掇刀区
97 | 钟祥市
98 |
99 | city
100 | 荆门
101 |
102 |
103 | areas
104 |
105 | 丹江口市
106 | 张湾区
107 | 郧县
108 | 茅箭区
109 | 竹溪县
110 | 房县
111 | 郧西县
112 | 竹山县
113 |
114 | city
115 | 十堰
116 |
117 |
118 | areas
119 |
120 | 华容区
121 | 鄂城区
122 | 梁子湖区
123 |
124 | city
125 | 鄂州
126 |
127 |
128 | areas
129 |
130 | city
131 | 天门
132 |
133 |
134 | areas
135 |
136 | city
137 | 潜江
138 |
139 |
140 | areas
141 |
142 | 来凤县
143 | 鹤峰县
144 | 恩施市
145 | 利川市
146 | 宣恩县
147 | 咸丰县
148 | 建始县
149 | 巴东县
150 |
151 | city
152 | 恩施
153 |
154 |
155 | areas
156 |
157 | 蔡甸区
158 | 汉南区
159 | 洪山区
160 | 东西湖区
161 | 新洲区
162 | 黄陂区
163 | 江夏区
164 | 江岸区
165 | 江汉区
166 | 硚口区
167 | 汉阳区
168 | 武昌区
169 | 青山区
170 |
171 | city
172 | 武汉
173 |
174 |
175 | areas
176 |
177 | city
178 | 仙桃
179 |
180 |
181 | areas
182 |
183 | city
184 | 神农架林
185 |
186 |
187 | areas
188 |
189 | 曾都区
190 | 广水市
191 |
192 | city
193 | 随州
194 |
195 |
196 | areas
197 |
198 | 大冶市
199 | 阳新县
200 | 铁山区
201 | 下陆区
202 | 西塞山区
203 | 黄石港区
204 |
205 | city
206 | 黄石
207 |
208 |
209 | areas
210 |
211 | 枣阳市
212 | 老河口市
213 | 樊城区
214 | 襄城区
215 | 南漳县
216 | 襄阳区
217 | 保康县
218 | 谷城县
219 | 宜城市
220 |
221 | city
222 | 襄樊
223 |
224 |
225 | province
226 | 湖北
227 |
228 |
229 | cities
230 |
231 |
232 | areas
233 |
234 | 翠屏区
235 | 宜宾县
236 | 南溪县
237 | 屏山县
238 | 兴文县
239 | 筠连县
240 | 珙县
241 | 高县
242 | 长宁县
243 | 江安县
244 |
245 | city
246 | 宜宾
247 |
248 |
249 | areas
250 |
251 | 巴州区
252 | 南江县
253 | 通江县
254 | 平昌县
255 |
256 | city
257 | 巴中
258 |
259 |
260 | areas
261 |
262 | 高坪区
263 | 顺庆区
264 | 南部县
265 | 嘉陵区
266 | 蓬安县
267 | 营山县
268 | 西充县
269 | 仪陇县
270 | 阆中市
271 |
272 | city
273 | 南充
274 |
275 |
276 | areas
277 |
278 | 成华区
279 | 龙泉驿区
280 | 金牛区
281 | 武侯区
282 | 锦江区
283 | 青羊区
284 | 都江堰市
285 | 温江区
286 | 邛崃市
287 | 彭州市
288 | 新津县
289 | 郫县
290 | 青白江区
291 | 新都区
292 | 双流县
293 | 大邑县
294 | 崇州市
295 | 蒲江县
296 | 金堂县
297 |
298 | city
299 | 成都
300 |
301 |
302 | areas
303 |
304 | 普格县
305 | 宁南县
306 | 会东县
307 | 会理县
308 | 喜德县
309 | 金阳县
310 | 西昌市
311 | 木里
312 | 盐源县
313 | 德昌县
314 | 越西县
315 | 布拖县
316 | 雷波县
317 | 甘洛县
318 | 美姑县
319 | 冕宁县
320 | 昭觉县
321 |
322 | city
323 | 凉山彝族
324 |
325 |
326 | areas
327 |
328 | 青神县
329 | 洪雅县
330 | 丹棱县
331 | 仁寿县
332 | 彭山县
333 | 东坡区
334 |
335 | city
336 | 眉山
337 |
338 |
339 | areas
340 |
341 | 壤塘县
342 | 马尔康县
343 | 黑水县
344 | 小金县
345 | 金川县
346 | 理县
347 | 茂县
348 | 阿坝县
349 | 汶川县
350 | 红原县
351 | 松潘县
352 | 九寨沟县
353 | 若尔盖县
354 |
355 | city
356 | 阿坝
357 |
358 |
359 | areas
360 |
361 | 峨眉山市
362 | 马边彝族
363 | 沐川县
364 | 峨边彝族
365 | 市中区
366 | 沙湾区
367 | 五通桥区
368 | 金口河区
369 | 犍为县
370 | 井研县
371 | 夹江县
372 |
373 | city
374 | 乐山
375 |
376 |
377 | areas
378 |
379 | 盐亭县
380 | 安县
381 | 游仙区
382 | 三台县
383 | 涪城区
384 | 北川羌族
385 | 梓潼县
386 | 江油市
387 | 平武县
388 |
389 | city
390 | 绵阳
391 |
392 |
393 | areas
394 |
395 | 广安区
396 | 邻水县
397 | 华蓥市
398 | 武胜县
399 | 岳池县
400 |
401 | city
402 | 广安
403 |
404 |
405 | areas
406 |
407 | 元坝区
408 | 市中区
409 | 旺苍县
410 | 朝天区
411 | 苍溪县
412 | 剑阁县
413 | 青川县
414 |
415 | city
416 | 广元
417 |
418 |
419 | areas
420 |
421 | 广汉市
422 | 什邡市
423 | 中江县
424 | 罗江县
425 | 绵竹市
426 | 旌阳区
427 |
428 | city
429 | 德阳
430 |
431 |
432 | areas
433 |
434 | 安岳县
435 | 乐至县
436 | 雁江区
437 | 简阳市
438 |
439 | city
440 | 资阳
441 |
442 |
443 | areas
444 |
445 | 宣汉县
446 | 开江县
447 | 大竹县
448 | 渠县
449 | 通川区
450 | 达县
451 | 万源市
452 |
453 | city
454 | 达州
455 |
456 |
457 | areas
458 |
459 | 古蔺县
460 | 纳溪区
461 | 江阳区
462 | 叙永县
463 | 合江县
464 | 泸县
465 | 龙马潭区
466 |
467 | city
468 | 泸州
469 |
470 |
471 | areas
472 |
473 | 自流井区
474 | 贡井区
475 | 大安区
476 | 沿滩区
477 | 荣县
478 | 富顺县
479 |
480 | city
481 | 自贡
482 |
483 |
484 | areas
485 |
486 | 蓬溪县
487 | 安居区
488 | 船山区
489 | 大英县
490 | 射洪县
491 |
492 | city
493 | 遂宁
494 |
495 |
496 | areas
497 |
498 | 色达县
499 | 理塘县
500 | 巴塘县
501 | 乡城县
502 | 稻城县
503 | 得荣县
504 | 丹巴县
505 | 九龙县
506 | 雅江县
507 | 道孚县
508 | 炉霍县
509 | 甘孜县
510 | 新龙县
511 | 德格县
512 | 白玉县
513 | 石渠县
514 | 泸定县
515 | 康定县
516 |
517 | city
518 | 甘孜藏族
519 |
520 |
521 | areas
522 |
523 | 名山县
524 | 芦山县
525 | 天全县
526 | 宝兴县
527 | 荥经县
528 | 雨城区
529 | 石棉县
530 | 汉源县
531 |
532 | city
533 | 雅安
534 |
535 |
536 | areas
537 |
538 | 隆昌县
539 | 资中县
540 | 威远县
541 | 东兴区
542 | 市中区
543 |
544 | city
545 | 内江
546 |
547 |
548 | areas
549 |
550 | 西区
551 | 仁和区
552 | 盐边县
553 | 米易县
554 | 东区
555 |
556 | city
557 | 攀枝花
558 |
559 |
560 | province
561 | 四川
562 |
563 |
564 | cities
565 |
566 |
567 | areas
568 |
569 | 大通区
570 | 谢家集区
571 | 田家庵区
572 | 潘集区
573 | 八公山区
574 | 凤台县
575 |
576 | city
577 | 淮南
578 |
579 |
580 | areas
581 |
582 | 黄山区
583 | 屯溪区
584 | 歙县
585 | 徽州区
586 | 黟县
587 | 休宁县
588 | 祁门县
589 |
590 | city
591 | 黄山
592 |
593 |
594 | areas
595 |
596 | 固镇县
597 | 龙子湖区
598 | 蚌山区
599 | 淮上区
600 | 禹会区
601 | 五河县
602 | 怀远县
603 |
604 | city
605 | 蚌埠
606 |
607 |
608 | areas
609 |
610 | 包河区
611 | 蜀山区
612 | 庐阳区
613 | 瑶海区
614 | 肥西县
615 | 肥东县
616 | 长丰县
617 |
618 | city
619 | 合肥
620 |
621 |
622 | areas
623 |
624 | 灵璧县
625 | 泗县
626 | 萧县
627 | 砀山县
628 | 埇桥区
629 |
630 | city
631 | 宿州
632 |
633 |
634 | areas
635 |
636 | 金安区
637 | 裕安区
638 | 寿县
639 | 霍山县
640 | 金寨县
641 | 舒城县
642 | 霍邱县
643 |
644 | city
645 | 六安
646 |
647 |
648 | areas
649 |
650 | 东至县
651 | 贵池区
652 | 石台县
653 | 青阳县
654 |
655 | city
656 | 池州
657 |
658 |
659 | areas
660 |
661 | 弋江区
662 | 鸠江区
663 | 镜湖区
664 | 繁昌县
665 | 南陵县
666 | 三山区
667 | 芜湖县
668 |
669 | city
670 | 芜湖
671 |
672 |
673 | areas
674 |
675 | 宁国市
676 | 绩溪县
677 | 旌德县
678 | 广德县
679 | 泾县
680 | 宣州区
681 | 郎溪县
682 |
683 | city
684 | 宣城
685 |
686 |
687 | areas
688 |
689 | 居巢区
690 | 庐江县
691 | 无为县
692 | 含山县
693 | 和县
694 |
695 | city
696 | 巢湖
697 |
698 |
699 | areas
700 |
701 | 涡阳县
702 | 谯城区
703 | 利辛县
704 | 蒙城县
705 |
706 | city
707 | 亳州
708 |
709 |
710 | areas
711 |
712 | 太和县
713 | 临泉县
714 | 颍泉区
715 | 颍东区
716 | 界首市
717 | 颍上县
718 | 阜南县
719 | 颍州区
720 |
721 | city
722 | 阜阳
723 |
724 |
725 | areas
726 |
727 | 狮子山区
728 | 郊区
729 | 铜官山区
730 | 铜陵县
731 |
732 | city
733 | 铜陵
734 |
735 |
736 | areas
737 |
738 | 烈山区
739 | 相山区
740 | 杜集区
741 | 濉溪县
742 |
743 | city
744 | 淮北
745 |
746 |
747 | areas
748 |
749 | 明光市
750 | 南谯区
751 | 来安县
752 | 琅琊区
753 | 凤阳县
754 | 天长市
755 | 全椒县
756 | 定远县
757 |
758 | city
759 | 滁州
760 |
761 |
762 | areas
763 |
764 | 当涂县
765 | 雨山区
766 | 花山区
767 | 金家庄区
768 |
769 | city
770 | 马鞍山
771 |
772 |
773 | areas
774 |
775 | 望江县
776 | 宿松县
777 | 桐城市
778 | 岳西县
779 | 潜山县
780 | 太湖县
781 | 大观区
782 | 宜秀区
783 | 怀宁县
784 | 枞阳县
785 | 迎江区
786 |
787 | city
788 | 安庆
789 |
790 |
791 | province
792 | 安徽
793 |
794 |
795 | cities
796 |
797 |
798 | areas
799 |
800 | 松溪县
801 | 政和县
802 | 顺昌县
803 | 光泽县
804 | 建瓯市
805 | 建阳市
806 | 邵武市
807 | 武夷山市
808 | 浦城县
809 | 延平区
810 |
811 | city
812 | 南平
813 |
814 |
815 | areas
816 |
817 | 湖里区
818 | 集美区
819 | 同安区
820 | 翔安区
821 | 思明区
822 | 海沧区
823 |
824 | city
825 | 厦门
826 |
827 |
828 | areas
829 |
830 | 闽清县
831 | 罗源县
832 | 连江县
833 | 闽侯县
834 | 晋安区
835 | 马尾区
836 | 仓山区
837 | 台江区
838 | 鼓楼区
839 | 平潭县
840 | 永泰县
841 | 福清市
842 | 长乐市
843 |
844 | city
845 | 福州
846 |
847 |
848 | areas
849 |
850 | 周宁县
851 | 屏南县
852 | 福安市
853 | 福鼎市
854 | 蕉城区
855 | 古田县
856 | 霞浦县
857 | 寿宁县
858 | 柘荣县
859 |
860 | city
861 | 宁德
862 |
863 |
864 | areas
865 |
866 | 漳平市
867 | 新罗区
868 | 长汀县
869 | 上杭县
870 | 永定县
871 | 连城县
872 | 武平县
873 |
874 | city
875 | 龙岩
876 |
877 |
878 | areas
879 |
880 | 仙游县
881 | 城厢区
882 | 涵江区
883 | 荔城区
884 | 秀屿区
885 |
886 | city
887 | 莆田
888 |
889 |
890 | areas
891 |
892 | 龙文区
893 | 云霄县
894 | 东山县
895 | 长泰县
896 | 诏安县
897 | 漳浦县
898 | 龙海市
899 | 华安县
900 | 平和县
901 | 芗城区
902 | 南靖县
903 |
904 | city
905 | 漳州
906 |
907 |
908 | areas
909 |
910 | 安溪县
911 | 永春县
912 | 德化县
913 | 金门县
914 | 石狮市
915 | 晋江市
916 | 南安市
917 | 鲤城区
918 | 洛江区
919 | 丰泽区
920 | 惠安县
921 | 泉港区
922 |
923 | city
924 | 泉州
925 |
926 |
927 | areas
928 |
929 | 将乐县
930 | 沙县
931 | 建宁县
932 | 清流县
933 | 宁化县
934 | 三元区
935 | 明溪县
936 | 梅列区
937 | 永安市
938 | 泰宁县
939 | 大田县
940 | 尤溪县
941 |
942 | city
943 | 三明
944 |
945 |
946 | province
947 | 福建
948 |
949 |
950 | cities
951 |
952 |
953 | areas
954 |
955 | 莲都区
956 | 青田县
957 | 缙云县
958 | 龙泉市
959 | 景宁畲族自治县
960 | 庆元县
961 | 云和县
962 | 遂昌县
963 | 松阳县
964 |
965 | city
966 | 丽水
967 |
968 |
969 | areas
970 |
971 | 普陀区
972 | 定海区
973 | 嵊泗县
974 | 岱山县
975 |
976 | city
977 | 舟山
978 |
979 |
980 | areas
981 |
982 | 鄞州区
983 | 象山县
984 | 北仑区
985 | 镇海区
986 | 慈溪市
987 | 奉化市
988 | 宁海县
989 | 海曙区
990 | 江东区
991 | 江北区
992 | 余姚市
993 |
994 | city
995 | 宁波
996 |
997 |
998 | areas
999 |
1000 | 常山县
1001 | 开化县
1002 | 柯城区
1003 | 衢江区
1004 | 江山市
1005 | 龙游县
1006 |
1007 | city
1008 | 衢州
1009 |
1010 |
1011 | areas
1012 |
1013 | 鹿城区
1014 | 龙湾区
1015 | 乐清市
1016 | 文成县
1017 | 苍南县
1018 | 瑞安市
1019 | 泰顺县
1020 | 洞头县
1021 | 瓯海区
1022 | 平阳县
1023 | 永嘉县
1024 |
1025 | city
1026 | 温州
1027 |
1028 |
1029 | areas
1030 |
1031 | 萧山区
1032 | 余杭区
1033 | 桐庐县
1034 | 淳安县
1035 | 拱墅区
1036 | 江干区
1037 | 下城区
1038 | 上城区
1039 | 临安市
1040 | 滨江区
1041 | 西湖区
1042 | 建德市
1043 | 富阳市
1044 |
1045 | city
1046 | 杭州
1047 |
1048 |
1049 | areas
1050 |
1051 | 玉环县
1052 | 路桥区
1053 | 三门县
1054 | 天台县
1055 | 仙居县
1056 | 温岭市
1057 | 黄岩区
1058 | 椒江区
1059 | 临海市
1060 |
1061 | city
1062 | 台州
1063 |
1064 |
1065 | areas
1066 |
1067 | 秀城区
1068 | 秀洲区
1069 | 嘉善县
1070 | 海盐县
1071 | 海宁市
1072 | 平湖市
1073 | 桐乡市
1074 |
1075 | city
1076 | 嘉兴
1077 |
1078 |
1079 | areas
1080 |
1081 | 新昌县
1082 | 绍兴县
1083 | 越城区
1084 | 嵊州市
1085 | 上虞市
1086 | 诸暨市
1087 |
1088 | city
1089 | 绍兴
1090 |
1091 |
1092 | areas
1093 |
1094 | 东阳市
1095 | 永康市
1096 | 兰溪市
1097 | 义乌市
1098 | 浦江县
1099 | 磐安县
1100 | 武义县
1101 | 金东区
1102 | 婺城区
1103 |
1104 | city
1105 | 金华
1106 |
1107 |
1108 | areas
1109 |
1110 | 德清县
1111 | 长兴县
1112 | 安吉县
1113 | 吴兴区
1114 | 南浔区
1115 |
1116 | city
1117 | 湖州
1118 |
1119 |
1120 | province
1121 | 浙江
1122 |
1123 |
1124 | cities
1125 |
1126 |
1127 | areas
1128 |
1129 | 连云区
1130 | 新浦区
1131 | 灌云县
1132 | 东海县
1133 | 海州区
1134 | 赣榆县
1135 | 灌南县
1136 |
1137 | city
1138 | 连云港
1139 |
1140 |
1141 | areas
1142 |
1143 | 滨海县
1144 | 阜宁县
1145 | 射阳县
1146 | 建湖县
1147 | 亭湖区
1148 | 盐都区
1149 | 响水县
1150 | 东台市
1151 | 大丰市
1152 |
1153 | city
1154 | 盐城
1155 |
1156 |
1157 | areas
1158 |
1159 | 江阴市
1160 | 滨湖区
1161 | 惠山区
1162 | 锡山区
1163 | 北塘区
1164 | 南长区
1165 | 崇安区
1166 | 宜兴市
1167 |
1168 | city
1169 | 无锡
1170 |
1171 |
1172 | areas
1173 |
1174 | 泗洪县
1175 | 泗阳县
1176 | 沭阳县
1177 | 宿豫区
1178 | 宿城区
1179 |
1180 | city
1181 | 宿迁
1182 |
1183 |
1184 | areas
1185 |
1186 | 邗江区
1187 | 广陵区
1188 | 宝应县
1189 | 维扬区
1190 | 高邮市
1191 | 仪征市
1192 | 江都市
1193 |
1194 | city
1195 | 扬州
1196 |
1197 |
1198 | areas
1199 |
1200 | 丹徒区
1201 | 润州区
1202 | 句容市
1203 | 丹阳市
1204 | 扬中市
1205 | 京口区
1206 |
1207 | city
1208 | 镇江
1209 |
1210 |
1211 | areas
1212 |
1213 | 浦口区
1214 | 栖霞区
1215 | 雨花台区
1216 | 江宁区
1217 | 秦淮区
1218 | 建邺区
1219 | 鼓楼区
1220 | 下关区
1221 | 六合区
1222 | 高淳县
1223 | 白下区
1224 | 玄武区
1225 | 溧水县
1226 |
1227 | city
1228 | 南京
1229 |
1230 |
1231 | areas
1232 |
1233 | 鼓楼区
1234 | 邳州市
1235 | 新沂市
1236 | 泉山区
1237 | 贾汪区
1238 | 九里区
1239 | 云龙区
1240 | 睢宁县
1241 | 铜山县
1242 | 沛县
1243 | 丰县
1244 |
1245 | city
1246 | 徐州
1247 |
1248 |
1249 | areas
1250 |
1251 | 姜堰市
1252 | 靖江市
1253 | 泰兴市
1254 | 高港区
1255 | 兴化市
1256 | 海陵区
1257 |
1258 | city
1259 | 泰州
1260 |
1261 |
1262 | areas
1263 |
1264 | 启东市
1265 | 如皋市
1266 | 海安县
1267 | 如东县
1268 | 通州市
1269 | 海门市
1270 | 港闸区
1271 | 崇川区
1272 |
1273 | city
1274 | 南通
1275 |
1276 |
1277 | areas
1278 |
1279 | 天宁区
1280 | 钟楼区
1281 | 戚墅堰区
1282 | 新北区
1283 | 武进区
1284 | 溧阳市
1285 | 金坛市
1286 |
1287 | city
1288 | 常州
1289 |
1290 |
1291 | areas
1292 |
1293 | 涟水县
1294 | 清浦区
1295 | 淮阴区
1296 | 楚州区
1297 | 清河区
1298 | 盱眙县
1299 | 洪泽县
1300 | 金湖县
1301 |
1302 | city
1303 | 淮安
1304 |
1305 |
1306 | areas
1307 |
1308 | 吴江市
1309 | 平江区
1310 | 金阊区
1311 | 昆山市
1312 | 张家港市
1313 | 太仓市
1314 | 沧浪区
1315 | 吴中区
1316 | 虎丘区
1317 | 常熟市
1318 | 相城区
1319 |
1320 | city
1321 | 苏州
1322 |
1323 |
1324 | province
1325 | 江苏
1326 |
1327 |
1328 | cities
1329 |
1330 |
1331 | areas
1332 |
1333 | 香洲区
1334 | 斗门区
1335 | 金湾区
1336 |
1337 | city
1338 | 珠海
1339 |
1340 |
1341 | areas
1342 |
1343 | 博罗县
1344 | 惠城区
1345 | 龙门县
1346 | 惠东县
1347 | 惠阳区
1348 |
1349 | city
1350 | 惠州
1351 |
1352 |
1353 | areas
1354 |
1355 | 连山壮族瑶族自治县
1356 | 阳山县
1357 | 佛冈县
1358 | 清城区
1359 | 连南瑶族自治县
1360 | 清新县
1361 | 英德市
1362 | 连州市
1363 |
1364 | city
1365 | 清远
1366 |
1367 |
1368 | areas
1369 |
1370 | 南雄市
1371 | 乐昌市
1372 | 浈江区
1373 | 武江区
1374 | 翁源县
1375 | 仁化县
1376 | 始兴县
1377 | 曲江区
1378 | 新丰县
1379 | 乳源瑶族自治县
1380 |
1381 | city
1382 | 韶关
1383 |
1384 |
1385 | areas
1386 |
1387 | 台山市
1388 | 开平市
1389 | 江海区
1390 | 新会区
1391 | 蓬江区
1392 | 鹤山市
1393 | 恩平市
1394 |
1395 | city
1396 | 江门
1397 |
1398 |
1399 | areas
1400 |
1401 | 普宁市
1402 | 惠来县
1403 | 榕城区
1404 | 揭东县
1405 | 揭西县
1406 |
1407 | city
1408 | 揭阳
1409 |
1410 |
1411 | areas
1412 |
1413 | 郁南县
1414 | 云安县
1415 | 云城区
1416 | 新兴县
1417 | 罗定市
1418 |
1419 | city
1420 | 云浮
1421 |
1422 |
1423 | areas
1424 |
1425 | 南海区
1426 | 禅城区
1427 | 三水区
1428 | 顺德区
1429 | 高明区
1430 |
1431 | city
1432 | 佛山
1433 |
1434 |
1435 | areas
1436 |
1437 | 海珠区
1438 | 天河区
1439 | 花都区
1440 | 番禺区
1441 | 黄埔区
1442 | 白云区
1443 | 从化市
1444 | 增城市
1445 | 荔湾区
1446 | 越秀区
1447 | 萝岗区
1448 | 南沙区
1449 |
1450 | city
1451 | 广州
1452 |
1453 |
1454 | areas
1455 |
1456 | 南山区
1457 | 宝安区
1458 | 龙岗区
1459 | 盐田区
1460 | 福田区
1461 | 罗湖区
1462 |
1463 | city
1464 | 深圳
1465 |
1466 |
1467 | areas
1468 |
1469 | 源城区
1470 | 紫金县
1471 | 龙川县
1472 | 连平县
1473 | 东源县
1474 | 和平县
1475 |
1476 | city
1477 | 河源
1478 |
1479 |
1480 | areas
1481 |
1482 | 龙湖区
1483 | 潮阳区
1484 | 金平区
1485 | 潮南区
1486 | 濠江区
1487 | 南澳县
1488 | 澄海区
1489 |
1490 | city
1491 | 汕头
1492 |
1493 |
1494 | areas
1495 |
1496 | 陆河县
1497 | 陆丰市
1498 | 城区
1499 | 海丰县
1500 |
1501 | city
1502 | 汕尾
1503 |
1504 |
1505 | areas
1506 |
1507 | 化州市
1508 | 高州市
1509 | 信宜市
1510 | 电白县
1511 | 茂港区
1512 | 茂南区
1513 |
1514 | city
1515 | 茂名
1516 |
1517 |
1518 | areas
1519 |
1520 | 四会市
1521 | 端州区
1522 | 鼎湖区
1523 | 广宁县
1524 | 怀集县
1525 | 封开县
1526 | 德庆县
1527 | 高要市
1528 |
1529 | city
1530 | 肇庆
1531 |
1532 |
1533 | areas
1534 |
1535 | 厚街
1536 | 樟木头
1537 | 石龙
1538 | 长安
1539 | 虎门
1540 |
1541 | city
1542 | 东莞
1543 |
1544 |
1545 | areas
1546 |
1547 | 遂溪县
1548 | 赤坎区
1549 | 霞山区
1550 | 雷州市
1551 | 廉江市
1552 | 徐闻县
1553 | 麻章区
1554 | 吴川市
1555 | 坡头区
1556 |
1557 | city
1558 | 湛江
1559 |
1560 |
1561 | areas
1562 |
1563 | 湘桥区
1564 | 潮安县
1565 | 饶平县
1566 |
1567 | city
1568 | 潮州
1569 |
1570 |
1571 | areas
1572 |
1573 | 阳春市
1574 | 阳东县
1575 | 阳西县
1576 | 江城区
1577 |
1578 | city
1579 | 阳江
1580 |
1581 |
1582 | areas
1583 |
1584 | city
1585 | 中山
1586 |
1587 |
1588 | areas
1589 |
1590 | 蕉岭县
1591 | 兴宁市
1592 | 梅县
1593 | 梅江区
1594 | 丰顺县
1595 | 大埔县
1596 | 平远县
1597 | 五华县
1598 |
1599 | city
1600 | 梅州
1601 |
1602 |
1603 | province
1604 | 广东
1605 |
1606 |
1607 | region
1608 | 华南区
1609 |
1610 |
1611 | provinces
1612 |
1613 |
1614 | cities
1615 |
1616 |
1617 | areas
1618 |
1619 | 吉县
1620 | 霍州市
1621 | 蒲县
1622 | 侯马市
1623 | 尧都区
1624 | 汾西县
1625 | 翼城县
1626 | 隰县
1627 | 永和县
1628 | 乡宁县
1629 | 大宁县
1630 | 浮山县
1631 | 曲沃县
1632 | 古县
1633 | 安泽县
1634 | 襄汾县
1635 | 洪洞县
1636 |
1637 | city
1638 | 临汾
1639 |
1640 |
1641 | areas
1642 |
1643 | 榆次区
1644 | 和顺县
1645 | 昔阳县
1646 | 榆社县
1647 | 左权县
1648 | 祁县
1649 | 平遥县
1650 | 寿阳县
1651 | 太谷县
1652 | 灵石县
1653 | 介休市
1654 |
1655 | city
1656 | 晋中
1657 |
1658 |
1659 | areas
1660 |
1661 | 怀仁县
1662 | 朔城区
1663 | 右玉县
1664 | 应县
1665 | 山阴县
1666 | 平鲁区
1667 |
1668 | city
1669 | 朔州
1670 |
1671 |
1672 | areas
1673 |
1674 | 平陆县
1675 | 夏县
1676 | 新绛县
1677 | 稷山县
1678 | 垣曲县
1679 | 绛县
1680 | 临猗县
1681 | 盐湖区
1682 | 闻喜县
1683 | 万荣县
1684 | 芮城县
1685 | 永济市
1686 | 河津市
1687 |
1688 | city
1689 | 运城
1690 |
1691 |
1692 | areas
1693 |
1694 | 沁水县
1695 | 阳城县
1696 | 高平市
1697 | 泽州县
1698 | 陵川县
1699 | 城区
1700 |
1701 | city
1702 | 晋城
1703 |
1704 |
1705 | areas
1706 |
1707 | 城区
1708 | 平定县
1709 | 盂县
1710 | 矿区
1711 | 郊区
1712 |
1713 | city
1714 | 阳泉
1715 |
1716 |
1717 | areas
1718 |
1719 | 原平市
1720 | 神池县
1721 | 偏关县
1722 | 保德县
1723 | 定襄县
1724 | 五台县
1725 | 代县
1726 | 繁峙县
1727 | 河曲县
1728 | 岢岚县
1729 | 五寨县
1730 | 忻府区
1731 | 宁武县
1732 | 静乐县
1733 |
1734 | city
1735 | 忻州
1736 |
1737 |
1738 | areas
1739 |
1740 | 大同县
1741 | 新荣区
1742 | 南郊区
1743 | 城区
1744 | 矿区
1745 | 天镇县
1746 | 阳高县
1747 | 灵丘县
1748 | 广灵县
1749 | 左云县
1750 | 浑源县
1751 |
1752 | city
1753 | 大同
1754 |
1755 |
1756 | areas
1757 |
1758 | 黎城县
1759 | 壶关县
1760 | 长子县
1761 | 武乡县
1762 | 沁县
1763 | 沁源县
1764 | 潞城市
1765 | 屯留县
1766 | 平顺县
1767 | 长治县
1768 | 襄垣县
1769 | 城区
1770 | 郊区
1771 |
1772 | city
1773 | 长治
1774 |
1775 |
1776 | areas
1777 |
1778 | 杏花岭区
1779 | 尖草坪区
1780 | 万柏林区
1781 | 晋源区
1782 | 清徐县
1783 | 阳曲县
1784 | 娄烦县
1785 | 古交市
1786 | 迎泽区
1787 | 小店区
1788 |
1789 | city
1790 | 太原
1791 |
1792 |
1793 | areas
1794 |
1795 | 石楼县
1796 | 岚县
1797 | 柳林县
1798 | 临县
1799 | 方山县
1800 | 中阳县
1801 | 交口县
1802 | 孝义市
1803 | 汾阳市
1804 | 文水县
1805 | 离石区
1806 | 兴县
1807 | 交城县
1808 |
1809 | city
1810 | 吕梁
1811 |
1812 |
1813 | province
1814 | 山西
1815 |
1816 |
1817 | cities
1818 |
1819 |
1820 | areas
1821 |
1822 | 杨凌区
1823 | 秦都区
1824 | 旬邑县
1825 | 淳化县
1826 | 乾县
1827 | 泾阳县
1828 | 三原县
1829 | 渭城区
1830 | 永寿县
1831 | 礼泉县
1832 | 武功县
1833 | 长武县
1834 | 彬县
1835 | 兴平市
1836 |
1837 | city
1838 | 咸阳
1839 |
1840 |
1841 | areas
1842 |
1843 | 印台区
1844 | 王益区
1845 | 宜君县
1846 | 耀州区
1847 |
1848 | city
1849 | 铜川
1850 |
1851 |
1852 | areas
1853 |
1854 | 山阳县
1855 | 商南县
1856 | 丹凤县
1857 | 洛南县
1858 | 商州区
1859 | 柞水县
1860 | 镇安县
1861 |
1862 | city
1863 | 商洛
1864 |
1865 |
1866 | areas
1867 |
1868 | 横山县
1869 | 靖边县
1870 | 定边县
1871 | 绥德县
1872 | 吴堡县
1873 | 榆阳区
1874 | 神木县
1875 | 府谷县
1876 | 米脂县
1877 | 佳县
1878 | 子洲县
1879 | 清涧县
1880 |
1881 | city
1882 | 榆林
1883 |
1884 |
1885 | areas
1886 |
1887 | 临渭区
1888 | 华县
1889 | 潼关县
1890 | 大荔县
1891 | 白水县
1892 | 蒲城县
1893 | 韩城市
1894 | 富平县
1895 | 华阴市
1896 | 澄城县
1897 | 合阳县
1898 |
1899 | city
1900 | 渭南
1901 |
1902 |
1903 | areas
1904 |
1905 | 略阳县
1906 | 宁强县
1907 | 勉县
1908 | 西乡县
1909 | 洋县
1910 | 城固县
1911 | 南郑县
1912 | 汉台区
1913 | 留坝县
1914 | 镇巴县
1915 | 佛坪县
1916 |
1917 | city
1918 | 汉中
1919 |
1920 |
1921 | areas
1922 |
1923 | 汉阴县
1924 | 石泉县
1925 | 宁陕县
1926 | 紫阳县
1927 | 白河县
1928 | 旬阳县
1929 | 汉滨区
1930 | 镇坪县
1931 | 岚皋县
1932 | 平利县
1933 |
1934 | city
1935 | 安康
1936 |
1937 |
1938 | areas
1939 |
1940 | 延川县
1941 | 延长县
1942 | 黄龙县
1943 | 黄陵县
1944 | 洛川县
1945 | 宜川县
1946 | 甘泉县
1947 | 富县
1948 | 志丹县
1949 | 吴起县
1950 | 子长县
1951 | 安塞县
1952 | 宝塔区
1953 |
1954 | city
1955 | 延安
1956 |
1957 |
1958 | areas
1959 |
1960 | 太白县
1961 | 凤县
1962 | 千阳县
1963 | 麟游县
1964 | 陈仓区
1965 | 凤翔县
1966 | 渭滨区
1967 | 金台区
1968 | 眉县
1969 | 陇县
1970 | 岐山县
1971 | 扶风县
1972 |
1973 | city
1974 | 宝鸡
1975 |
1976 |
1977 | areas
1978 |
1979 | 高陵县
1980 | 户县
1981 | 长安区
1982 | 临潼区
1983 | 周至县
1984 | 蓝田县
1985 | 雁塔区
1986 | 阎良区
1987 | 碑林区
1988 | 莲湖区
1989 | 灞桥区
1990 | 未央区
1991 | 新城区
1992 |
1993 | city
1994 | 西安
1995 |
1996 |
1997 | province
1998 | 陕西
1999 |
2000 |
2001 | cities
2002 |
2003 |
2004 | areas
2005 |
2006 | 向阳区
2007 | 工农区
2008 | 东山区
2009 | 兴山区
2010 | 南山区
2011 | 兴安区
2012 | 萝北县
2013 | 绥滨县
2014 |
2015 | city
2016 | 鹤岗
2017 |
2018 |
2019 | areas
2020 |
2021 | 呼玛县
2022 | 漠河县
2023 | 塔河县
2024 |
2025 | city
2026 | 大兴安岭地
2027 |
2028 |
2029 | areas
2030 |
2031 | 萨尔图区
2032 | 龙凤区
2033 | 杜尔伯特蒙古族自治县
2034 | 林甸县
2035 | 肇源县
2036 | 肇州县
2037 | 大同区
2038 | 红岗区
2039 | 让胡路区
2040 |
2041 | city
2042 | 大庆
2043 |
2044 |
2045 | areas
2046 |
2047 | 勃利县
2048 | 新兴区
2049 | 桃山区
2050 | 茄子河区
2051 |
2052 | city
2053 | 七台河
2054 |
2055 |
2056 | areas
2057 |
2058 | 富裕县
2059 | 克山县
2060 | 铁锋区
2061 | 建华区
2062 | 龙沙区
2063 | 依安县
2064 | 泰来县
2065 | 甘南县
2066 | 昂昂溪区
2067 | 富拉尔基区
2068 | 碾子山区
2069 | 梅里斯达斡尔族区
2070 | 龙江县
2071 | 拜泉县
2072 | 克东县
2073 | 讷河市
2074 |
2075 | city
2076 | 齐齐哈尔
2077 |
2078 |
2079 | areas
2080 |
2081 | 东宁县
2082 | 西安区
2083 | 爱民区
2084 | 阳明区
2085 | 宁安市
2086 | 海林市
2087 | 绥芬河市
2088 | 林口县
2089 | 东安区
2090 | 穆棱市
2091 |
2092 | city
2093 | 牡丹江
2094 |
2095 |
2096 | areas
2097 |
2098 | 孙吴县
2099 | 北安市
2100 | 爱辉区
2101 | 逊克县
2102 | 五大连池市
2103 | 嫩江县
2104 |
2105 | city
2106 | 黑河
2107 |
2108 |
2109 | areas
2110 |
2111 | 集贤县
2112 | 友谊县
2113 | 宝清县
2114 | 饶河县
2115 | 尖山区
2116 | 岭东区
2117 | 四方台区
2118 | 宝山区
2119 |
2120 | city
2121 | 双鸭山
2122 |
2123 |
2124 | areas
2125 |
2126 | 海伦市
2127 | 青冈县
2128 | 庆安县
2129 | 绥棱县
2130 | 明水县
2131 | 肇东市
2132 | 安达市
2133 | 望奎县
2134 | 兰西县
2135 | 北林区
2136 |
2137 | city
2138 | 绥化
2139 |
2140 |
2141 | areas
2142 |
2143 | 上甘岭区
2144 | 友好区
2145 | 南岔区
2146 | 伊春区
2147 | 嘉荫县
2148 | 铁力市
2149 | 红星区
2150 | 乌马河区
2151 | 汤旺河区
2152 | 金山屯区
2153 | 五营区
2154 | 新青区
2155 | 美溪区
2156 | 西林区
2157 | 翠峦区
2158 | 带岭区
2159 | 乌伊岭区
2160 |
2161 | city
2162 | 伊春
2163 |
2164 |
2165 | areas
2166 |
2167 | 桦川县
2168 | 汤原县
2169 | 抚远县
2170 | 同江市
2171 | 富锦市
2172 | 向阳区
2173 | 永红区
2174 | 东风区
2175 | 前进区
2176 | 桦南县
2177 | 郊区
2178 |
2179 | city
2180 | 佳木斯
2181 |
2182 |
2183 | areas
2184 |
2185 | 五常市
2186 | 尚志市
2187 | 双城市
2188 | 阿城市
2189 | 延寿县
2190 | 通河县
2191 | 木兰县
2192 | 依兰县
2193 | 方正县
2194 | 松北区
2195 | 呼兰区
2196 | 动力区
2197 | 平房区
2198 | 道外区
2199 | 香坊区
2200 | 南岗区
2201 | 道里区
2202 | 宾县
2203 | 巴彦县
2204 |
2205 | city
2206 | 哈尔滨
2207 |
2208 |
2209 | areas
2210 |
2211 | 虎林市
2212 | 密山市
2213 | 鸡东县
2214 | 麻山区
2215 | 滴道区
2216 | 恒山区
2217 | 城子河区
2218 | 梨树区
2219 | 鸡冠区
2220 |
2221 | city
2222 | 鸡西
2223 |
2224 |
2225 | province
2226 | 黑龙江
2227 |
2228 |
2229 | cities
2230 |
2231 |
2232 | areas
2233 |
2234 | 瑞丽
2235 | 潞西
2236 | 盈江
2237 | 梁河
2238 | 陇川
2239 |
2240 | city
2241 | 德宏
2242 |
2243 |
2244 | areas
2245 |
2246 | 红塔区
2247 | 江川县
2248 | 澄江县
2249 | 通海县
2250 | 华宁县
2251 | 易门县
2252 | 元江
2253 | 新平
2254 | 峨山
2255 |
2256 | city
2257 | 玉溪
2258 |
2259 |
2260 | areas
2261 |
2262 | 富源县
2263 | 会泽县
2264 | 沾益县
2265 | 宣威市
2266 | 陆良县
2267 | 马龙县
2268 | 麒麟区
2269 | 罗平县
2270 | 师宗县
2271 |
2272 | city
2273 | 曲靖
2274 |
2275 |
2276 | areas
2277 |
2278 | 腾冲
2279 | 施甸
2280 | 昌宁
2281 | 龙陵
2282 | 隆阳区
2283 |
2284 | city
2285 | 保山
2286 |
2287 |
2288 | areas
2289 |
2290 | 泸水
2291 | 兰坪
2292 | 贡山
2293 | 福贡
2294 |
2295 | city
2296 | 怒江
2297 |
2298 |
2299 | areas
2300 |
2301 | 维西
2302 | 德钦
2303 | 香格里拉
2304 |
2305 | city
2306 | 迪庆
2307 |
2308 |
2309 | areas
2310 |
2311 | 鲁甸
2312 | 昭阳区
2313 | 水富
2314 | 大关
2315 | 永善
2316 | 巧家
2317 | 盐津
2318 | 彝良
2319 | 威信
2320 | 绥江
2321 | 镇雄
2322 |
2323 | city
2324 | 昭通
2325 |
2326 |
2327 | areas
2328 |
2329 | 寻甸
2330 | 禄劝
2331 | 嵩明县
2332 | 石林
2333 | 富民县
2334 | 宜良县
2335 | 呈贡县
2336 | 晋宁县
2337 | 西山区
2338 | 东川区
2339 | 盘龙区
2340 | 官渡区
2341 | 五华区
2342 | 安宁市
2343 |
2344 | city
2345 | 昆明
2346 |
2347 |
2348 | areas
2349 |
2350 | 武定
2351 | 禄丰
2352 | 沧源
2353 | 双柏
2354 | 楚雄
2355 | 南华
2356 | 牟定
2357 | 大姚
2358 | 姚安
2359 | 元谋
2360 | 永仁
2361 |
2362 | city
2363 | 楚雄
2364 |
2365 |
2366 | areas
2367 |
2368 | 广南
2369 | 富宁
2370 | 丘北
2371 | 砚山
2372 | 西畴
2373 | 文山
2374 | 麻栗坡
2375 | 马关
2376 |
2377 | city
2378 | 文山
2379 |
2380 |
2381 | areas
2382 |
2383 | 景洪
2384 | 勐腊
2385 | 勐海
2386 |
2387 | city
2388 | 西双版纳
2389 |
2390 |
2391 | areas
2392 |
2393 | 古城区
2394 | 宁蒗
2395 | 华坪
2396 | 永胜
2397 | 玉龙
2398 |
2399 | city
2400 | 丽江
2401 |
2402 |
2403 | areas
2404 |
2405 | 河口
2406 | 绿春县
2407 | 建水
2408 | 石屏
2409 | 蒙自
2410 | 屏边
2411 | 个旧
2412 | 开远
2413 | 元阳
2414 | 红河
2415 | 金平
2416 | 弥勒
2417 | 泸西
2418 |
2419 | city
2420 | 红河
2421 |
2422 |
2423 | areas
2424 |
2425 | 弥渡
2426 | 南涧
2427 | 巍山
2428 | 永平
2429 | 云龙
2430 | 洱源
2431 | 剑川
2432 | 鹤庆
2433 | 漾濞
2434 | 大理
2435 | 宾川
2436 | 祥云
2437 |
2438 | city
2439 | 大理
2440 |
2441 |
2442 | areas
2443 |
2444 | 耿马
2445 | 镇康
2446 | 双江
2447 | 临翔区
2448 | 凤庆
2449 | 云县
2450 | 永德
2451 |
2452 | city
2453 | 临沧
2454 |
2455 |
2456 | areas
2457 |
2458 | 镇沅
2459 | 景谷
2460 | 景东
2461 | 墨江
2462 | 普洱
2463 | 翠云
2464 | 江城
2465 | 孟连
2466 | 澜沧
2467 | 西盟
2468 |
2469 | city
2470 | 思茅
2471 |
2472 |
2473 | province
2474 | 云南
2475 |
2476 |
2477 | cities
2478 |
2479 |
2480 | areas
2481 |
2482 | 怀来县
2483 | 涿鹿县
2484 | 桥东区
2485 | 万全县
2486 | 宣化区
2487 | 桥西区
2488 | 宣化县
2489 | 下花园区
2490 | 康保县
2491 | 张北县
2492 | 沽源县
2493 | 尚义县
2494 | 怀安县
2495 | 赤城县
2496 | 崇礼县
2497 | 蔚县
2498 | 阳原县
2499 |
2500 | city
2501 | 张家口
2502 |
2503 |
2504 | areas
2505 |
2506 | 成安县
2507 | 大名县
2508 | 邯郸县
2509 | 临漳县
2510 | 复兴区
2511 | 峰峰矿区
2512 | 邯山区
2513 | 丛台区
2514 | 肥乡县
2515 | 魏县
2516 | 永年县
2517 | 鸡泽县
2518 | 涉县
2519 | 磁县
2520 | 邱县
2521 | 曲周县
2522 | 武安市
2523 | 馆陶县
2524 | 广平县
2525 |
2526 | city
2527 | 邯郸
2528 |
2529 |
2530 | areas
2531 |
2532 | 新河县
2533 | 广宗县
2534 | 清河县
2535 | 桥东区
2536 | 威县
2537 | 临西县
2538 | 平乡县
2539 | 沙河市
2540 | 宁晋县
2541 | 巨鹿县
2542 | 南宫市
2543 | 柏乡县
2544 | 隆尧县
2545 | 任县
2546 | 南和县
2547 | 桥西区
2548 | 邢台县
2549 | 临城县
2550 | 内丘县
2551 |
2552 | city
2553 | 邢台
2554 |
2555 |
2556 | areas
2557 |
2558 | 武强县
2559 | 饶阳县
2560 | 故城县
2561 | 安平县
2562 | 枣强县
2563 | 武邑县
2564 | 深州市
2565 | 冀州市
2566 | 阜城县
2567 | 景县
2568 | 桃城区
2569 |
2570 | city
2571 | 衡水
2572 |
2573 |
2574 | areas
2575 |
2576 | 海港区
2577 | 昌黎县
2578 | 青龙满族自治县
2579 | 北戴河区
2580 | 山海关区
2581 | 卢龙县
2582 | 抚宁县
2583 |
2584 | city
2585 | 秦皇岛
2586 |
2587 |
2588 | areas
2589 |
2590 | 三河市
2591 | 安次区
2592 | 大城县
2593 | 文安县
2594 | 永清县
2595 | 香河县
2596 | 固安县
2597 | 广阳区
2598 | 大厂回族自治县
2599 | 霸州市
2600 |
2601 | city
2602 | 廊坊
2603 |
2604 |
2605 | areas
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 | city
2634 | 保定
2635 |
2636 |
2637 | areas
2638 |
2639 | 围场满族蒙古族自治县
2640 | 宽城满族自治县
2641 | 丰宁满族自治县
2642 | 隆化县
2643 | 滦平县
2644 | 平泉县
2645 | 兴隆县
2646 | 承德县
2647 | 鹰手营子矿区
2648 | 双滦区
2649 | 双桥区
2650 |
2651 | city
2652 | 承德
2653 |
2654 |
2655 | areas
2656 |
2657 | 迁安市
2658 | 遵化市
2659 | 唐海县
2660 | 路北区
2661 | 古冶区
2662 | 开平区
2663 | 丰南区
2664 | 丰润区
2665 | 滦县
2666 | 滦南县
2667 | 乐亭县
2668 | 迁西县
2669 | 玉田县
2670 | 路南区
2671 |
2672 | city
2673 | 唐山
2674 |
2675 |
2676 | areas
2677 |
2678 | 任丘市
2679 | 黄骅市
2680 | 献县
2681 | 吴桥县
2682 | 河间市
2683 | 肃宁县
2684 | 南皮县
2685 | 泊头市
2686 | 孟村回族自治县
2687 | 青县
2688 | 东光县
2689 | 海兴县
2690 | 盐山县
2691 | 新华区
2692 | 运河区
2693 | 沧县
2694 |
2695 | city
2696 | 沧州
2697 |
2698 |
2699 | areas
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 | city
2726 | 石家庄
2727 |
2728 |
2729 | province
2730 | 河北
2731 |
2732 |
2733 | cities
2734 |
2735 |
2736 | areas
2737 |
2738 | 嘉鱼县
2739 | 咸安区
2740 | 崇阳县
2741 | 通城县
2742 | 赤壁市
2743 | 通山县
2744 |
2745 | city
2746 | 咸宁
2747 |
2748 |
2749 | areas
2750 |
2751 | 西陵区
2752 | 枝江市
2753 | 当阳市
2754 | 兴山县
2755 | 远安县
2756 | 长阳
2757 | 秭归县
2758 | 点军区
2759 | 伍家岗区
2760 | 夷陵区
2761 | 猇亭区
2762 | 宜都市
2763 | 五峰
2764 |
2765 | city
2766 | 宜昌
2767 |
2768 |
2769 | areas
2770 |
2771 | 武穴市
2772 | 黄州区
2773 | 团风县
2774 | 红安县
2775 | 罗田县
2776 | 英山县
2777 | 浠水县
2778 | 麻城市
2779 | 黄梅县
2780 | 蕲春县
2781 |
2782 | city
2783 | 黄冈
2784 |
2785 |
2786 | areas
2787 |
2788 | 江陵县
2789 | 石首市
2790 | 洪湖市
2791 | 松滋市
2792 | 荆州区
2793 | 沙市区
2794 | 监利县
2795 | 公安县
2796 |
2797 | city
2798 | 荆州
2799 |
2800 |
2801 | areas
2802 |
2803 | 应城市
2804 | 云梦县
2805 | 大悟县
2806 | 孝昌县
2807 | 汉川市
2808 | 安陆市
2809 | 孝南区
2810 |
2811 | city
2812 | 孝感
2813 |
2814 |
2815 | areas
2816 |
2817 | 京山县
2818 | 沙洋县
2819 | 东宝区
2820 | 掇刀区
2821 | 钟祥市
2822 |
2823 | city
2824 | 荆门
2825 |
2826 |
2827 | areas
2828 |
2829 | 丹江口市
2830 | 张湾区
2831 | 郧县
2832 | 茅箭区
2833 | 竹溪县
2834 | 房县
2835 | 郧西县
2836 | 竹山县
2837 |
2838 | city
2839 | 十堰
2840 |
2841 |
2842 | areas
2843 |
2844 | 华容区
2845 | 鄂城区
2846 | 梁子湖区
2847 |
2848 | city
2849 | 鄂州
2850 |
2851 |
2852 | areas
2853 |
2854 | city
2855 | 天门
2856 |
2857 |
2858 | areas
2859 |
2860 | city
2861 | 潜江
2862 |
2863 |
2864 | areas
2865 |
2866 | 来凤县
2867 | 鹤峰县
2868 | 恩施市
2869 | 利川市
2870 | 宣恩县
2871 | 咸丰县
2872 | 建始县
2873 | 巴东县
2874 |
2875 | city
2876 | 恩施
2877 |
2878 |
2879 | areas
2880 |
2881 | 蔡甸区
2882 | 汉南区
2883 | 洪山区
2884 | 东西湖区
2885 | 新洲区
2886 | 黄陂区
2887 | 江夏区
2888 | 江岸区
2889 | 江汉区
2890 | 硚口区
2891 | 汉阳区
2892 | 武昌区
2893 | 青山区
2894 |
2895 | city
2896 | 武汉
2897 |
2898 |
2899 | areas
2900 |
2901 | city
2902 | 仙桃
2903 |
2904 |
2905 | areas
2906 |
2907 | city
2908 | 神农架林
2909 |
2910 |
2911 | areas
2912 |
2913 | 曾都区
2914 | 广水市
2915 |
2916 | city
2917 | 随州
2918 |
2919 |
2920 | areas
2921 |
2922 | 大冶市
2923 | 阳新县
2924 | 铁山区
2925 | 下陆区
2926 | 西塞山区
2927 | 黄石港区
2928 |
2929 | city
2930 | 黄石
2931 |
2932 |
2933 | areas
2934 |
2935 | 枣阳市
2936 | 老河口市
2937 | 樊城区
2938 | 襄城区
2939 | 南漳县
2940 | 襄阳区
2941 | 保康县
2942 | 谷城县
2943 | 宜城市
2944 |
2945 | city
2946 | 襄樊
2947 |
2948 |
2949 | province
2950 | 湖北
2951 |
2952 |
2953 | cities
2954 |
2955 |
2956 | areas
2957 |
2958 | 淄川区
2959 | 博山区
2960 | 张店区
2961 | 周村区
2962 | 临淄区
2963 | 沂源县
2964 | 桓台县
2965 | 高青县
2966 |
2967 | city
2968 | 淄博
2969 |
2970 |
2971 | areas
2972 |
2973 | 芝罘区
2974 | 福山区
2975 | 牟平区
2976 | 莱山区
2977 | 招远市
2978 | 蓬莱市
2979 | 莱州市
2980 | 莱阳市
2981 | 海阳市
2982 | 长岛县
2983 | 龙口市
2984 | 栖霞市
2985 |
2986 | city
2987 | 烟台
2988 |
2989 |
2990 | areas
2991 |
2992 | 莒县
2993 | 五莲县
2994 | 岚山区
2995 | 东港区
2996 |
2997 | city
2998 | 日照
2999 |
3000 |
3001 | areas
3002 |
3003 | 鄄城县
3004 | 东明县
3005 | 郓城县
3006 | 巨野县
3007 | 成武县
3008 | 单县
3009 | 曹县
3010 | 牡丹区
3011 | 定陶县
3012 |
3013 | city
3014 | 荷泽
3015 |
3016 |
3017 | areas
3018 |
3019 | 寒亭区
3020 | 潍城区
3021 | 临朐县
3022 | 昌乐县
3023 | 高密市
3024 | 昌邑市
3025 | 寿光市
3026 | 诸城市
3027 | 安丘市
3028 | 奎文区
3029 | 坊子区
3030 | 青州市
3031 |
3032 | city
3033 | 潍坊
3034 |
3035 |
3036 | areas
3037 |
3038 | 平阴县
3039 | 长清区
3040 | 历下区
3041 | 商河县
3042 | 章丘市
3043 | 历城区
3044 | 天桥区
3045 | 槐荫区
3046 | 市中区
3047 | 济阳县
3048 |
3049 | city
3050 | 济南
3051 |
3052 |
3053 | areas
3054 |
3055 | 梁山县
3056 | 邹城市
3057 | 兖州市
3058 | 泗水县
3059 | 汶上县
3060 | 市中区
3061 | 任城区
3062 | 鱼台县
3063 | 微山县
3064 | 嘉祥县
3065 | 金乡县
3066 | 曲阜市
3067 |
3068 | city
3069 | 济宁
3070 |
3071 |
3072 | areas
3073 |
3074 | 李沧区
3075 | 城阳区
3076 | 即墨市
3077 | 胶州市
3078 | 胶南市
3079 | 平度市
3080 | 市南区
3081 | 市北区
3082 | 四方区
3083 | 黄岛区
3084 | 崂山区
3085 | 莱西市
3086 |
3087 | city
3088 | 青岛
3089 |
3090 |
3091 | areas
3092 |
3093 | 沂南县
3094 | 河东区
3095 | 罗庄区
3096 | 兰山区
3097 | 蒙阴县
3098 | 临沭县
3099 | 平邑县
3100 | 莒南县
3101 | 苍山县
3102 | 费县
3103 | 郯城县
3104 | 沂水县
3105 |
3106 | city
3107 | 临沂
3108 |
3109 |
3110 | areas
3111 |
3112 | 荣成市
3113 | 乳山市
3114 | 环翠区
3115 | 文登市
3116 |
3117 | city
3118 | 威海
3119 |
3120 |
3121 | areas
3122 |
3123 | 钢城区
3124 | 莱城区
3125 |
3126 | city
3127 | 莱芜
3128 |
3129 |
3130 | areas
3131 |
3132 | 泰山区
3133 | 岱岳区
3134 | 宁阳县
3135 | 东平县
3136 | 新泰市
3137 | 肥城市
3138 |
3139 | city
3140 | 泰安
3141 |
3142 |
3143 | areas
3144 |
3145 | 东营区
3146 | 河口区
3147 | 垦利县
3148 | 利津县
3149 | 广饶县
3150 |
3151 | city
3152 | 东营
3153 |
3154 |
3155 | areas
3156 |
3157 | 冠县
3158 | 东昌府区
3159 | 高唐县
3160 | 临清市
3161 | 阳谷县
3162 | 莘县
3163 | 茌平县
3164 | 东阿县
3165 |
3166 | city
3167 | 聊城
3168 |
3169 |
3170 | areas
3171 |
3172 | 滕州市
3173 | 市中区
3174 | 台儿庄区
3175 | 山亭区
3176 | 薛城区
3177 | 峄城区
3178 |
3179 | city
3180 | 枣庄
3181 |
3182 |
3183 | areas
3184 |
3185 | 惠民县
3186 | 阳信县
3187 | 滨城区
3188 | 邹平县
3189 | 博兴县
3190 | 沾化县
3191 | 无棣县
3192 |
3193 | city
3194 | 滨州
3195 |
3196 |
3197 | areas
3198 |
3199 | 庆云县
3200 | 宁津县
3201 | 齐河县
3202 | 临邑县
3203 | 夏津县
3204 | 平原县
3205 | 乐陵市
3206 | 武城县
3207 | 禹城市
3208 | 德城区
3209 | 陵县
3210 |
3211 | city
3212 | 德州
3213 |
3214 |
3215 | province
3216 | 山东
3217 |
3218 |
3219 | region
3220 | 华东区
3221 |
3222 |
3223 | provinces
3224 |
3225 |
3226 | cities
3227 |
3228 |
3229 | areas
3230 |
3231 | 昭平县
3232 | 八步区
3233 | 富川瑶族自治县
3234 | 钟山县
3235 |
3236 | city
3237 | 贺州
3238 |
3239 |
3240 | areas
3241 |
3242 | 万秀区
3243 | 蝶山区
3244 | 岑溪市
3245 | 苍梧县
3246 | 长洲区
3247 | 蒙山县
3248 | 藤县
3249 |
3250 | city
3251 | 梧州
3252 |
3253 |
3254 | areas
3255 |
3256 | 南丹县
3257 | 金城江区
3258 | 凤山县
3259 | 天峨县
3260 | 罗城仫佬族自治县
3261 | 东兰县
3262 | 都安瑶族自治县
3263 | 大化瑶族自治县
3264 | 环江毛南族自治县
3265 | 巴马瑶族自治县
3266 | 宜州市
3267 |
3268 | city
3269 | 河池
3270 |
3271 |
3272 | areas
3273 |
3274 | 乐业县
3275 | 田林县
3276 | 那坡县
3277 | 凌云县
3278 | 德保县
3279 | 靖西县
3280 | 田东县
3281 | 平果县
3282 | 田阳县
3283 | 右江区
3284 | 西林县
3285 | 隆林各族自治县
3286 |
3287 | city
3288 | 百色
3289 |
3290 |
3291 | areas
3292 |
3293 | 忻城县
3294 | 象州县
3295 | 兴宾区
3296 | 武宣县
3297 | 金秀瑶族自治县
3298 | 合山市
3299 |
3300 | city
3301 | 来宾
3302 |
3303 |
3304 | areas
3305 |
3306 | 港北区
3307 | 港南区
3308 | 覃塘区
3309 | 桂平市
3310 | 平南县
3311 |
3312 | city
3313 | 贵港
3314 |
3315 |
3316 | areas
3317 |
3318 | 北流市
3319 | 兴业县
3320 | 博白县
3321 | 陆川县
3322 | 容县
3323 | 玉州区
3324 |
3325 | city
3326 | 玉林
3327 |
3328 |
3329 | areas
3330 |
3331 | 钦北区
3332 | 灵山县
3333 | 浦北县
3334 | 钦南区
3335 |
3336 | city
3337 | 钦州
3338 |
3339 |
3340 | areas
3341 |
3342 | 海城区
3343 | 铁山港区
3344 | 银海区
3345 | 合浦县
3346 |
3347 | city
3348 | 北海
3349 |
3350 |
3351 | areas
3352 |
3353 | 城中区
3354 | 鱼峰区
3355 | 柳南区
3356 | 柳北区
3357 | 柳江县
3358 | 柳城县
3359 | 鹿寨县
3360 | 融安县
3361 | 融水苗族自治县
3362 | 三江侗族自治县
3363 |
3364 | city
3365 | 柳州
3366 |
3367 |
3368 | areas
3369 |
3370 | 灌阳县
3371 | 龙胜各族自治县
3372 | 兴安县
3373 | 永福县
3374 | 荔蒲县
3375 | 恭城瑶族自治县
3376 | 资源县
3377 | 平乐县
3378 | 象山区
3379 | 叠彩区
3380 | 秀峰区
3381 | 临桂县
3382 | 阳朔县
3383 | 雁山区
3384 | 七星区
3385 | 全州县
3386 | 灵川县
3387 |
3388 | city
3389 | 桂林
3390 |
3391 |
3392 | areas
3393 |
3394 | 横县
3395 | 宾阳县
3396 | 上林县
3397 | 兴宁区
3398 | 江南区
3399 | 青秀区
3400 | 良庆区
3401 | 西乡塘区
3402 | 武鸣县
3403 | 邕宁区
3404 | 马山县
3405 | 隆安县
3406 |
3407 | city
3408 | 南宁
3409 |
3410 |
3411 | areas
3412 |
3413 | 防城区
3414 | 港口区
3415 | 上思县
3416 | 东兴市
3417 |
3418 | city
3419 | 防城港
3420 |
3421 |
3422 | areas
3423 |
3424 | 大新县
3425 | 龙州县
3426 | 凭祥市
3427 | 天等县
3428 | 江洲区
3429 | 宁明县
3430 | 扶绥县
3431 |
3432 | city
3433 | 崇左
3434 |
3435 |
3436 | province
3437 | 广西
3438 |
3439 |
3440 | cities
3441 |
3442 |
3443 | areas
3444 |
3445 | 东湖区
3446 | 西湖区
3447 | 青云谱区
3448 | 湾里区
3449 | 进贤县
3450 | 安义县
3451 | 新建县
3452 | 青山湖区
3453 | 南昌县
3454 |
3455 | city
3456 | 南昌
3457 |
3458 |
3459 | areas
3460 |
3461 | 安源区
3462 | 芦溪县
3463 | 上栗县
3464 | 莲花县
3465 | 湘东区
3466 |
3467 | city
3468 | 萍乡
3469 |
3470 |
3471 | areas
3472 |
3473 | 乐平市
3474 | 浮梁县
3475 | 珠山区
3476 | 昌江区
3477 |
3478 | city
3479 | 景德镇
3480 |
3481 |
3482 | areas
3483 |
3484 | 安福县
3485 | 万安县
3486 | 遂川县
3487 | 泰和县
3488 | 永丰县
3489 | 新干县
3490 | 峡江县
3491 | 吉水县
3492 | 青原区
3493 | 吉安县
3494 | 井冈山市
3495 | 永新县
3496 | 吉州区
3497 |
3498 | city
3499 | 吉安
3500 |
3501 |
3502 | areas
3503 |
3504 | 彭泽县
3505 | 德安县
3506 | 星子县
3507 | 修水县
3508 | 永修县
3509 | 九江县
3510 | 武宁县
3511 | 庐山区
3512 | 浔阳区
3513 | 湖口县
3514 | 都昌县
3515 | 瑞昌市
3516 |
3517 | city
3518 | 九江
3519 |
3520 |
3521 | areas
3522 |
3523 | 分宜县
3524 | 渝水区
3525 |
3526 | city
3527 | 新余
3528 |
3529 |
3530 | areas
3531 |
3532 | 贵溪市
3533 | 余江县
3534 | 月湖区
3535 |
3536 | city
3537 | 鹰潭
3538 |
3539 |
3540 | areas
3541 |
3542 | 广昌县
3543 | 南城县
3544 | 临川区
3545 | 南丰县
3546 | 黎川县
3547 | 乐安县
3548 | 崇仁县
3549 | 金溪县
3550 | 宜黄县
3551 | 东乡县
3552 | 资溪县
3553 |
3554 | city
3555 | 抚州
3556 |
3557 |
3558 | areas
3559 |
3560 | 章贡区
3561 | 会昌县
3562 | 于都县
3563 | 兴国县
3564 | 宁都县
3565 | 全南县
3566 | 石城县
3567 | 寻乌县
3568 | 安远县
3569 | 崇义县
3570 | 定南县
3571 | 龙南县
3572 | 信丰县
3573 | 赣县
3574 | 上犹县
3575 | 大余县
3576 | 南康市
3577 | 瑞金市
3578 |
3579 | city
3580 | 赣州
3581 |
3582 |
3583 | areas
3584 |
3585 | 德兴市
3586 | 婺源县
3587 | 万年县
3588 | 横峰县
3589 | 弋阳县
3590 | 玉山县
3591 | 铅山县
3592 | 上饶县
3593 | 广丰县
3594 | 信州区
3595 | 余干县
3596 | 鄱阳县
3597 |
3598 | city
3599 | 上饶
3600 |
3601 |
3602 | areas
3603 |
3604 | 宜丰县
3605 | 靖安县
3606 | 铜鼓县
3607 | 丰城市
3608 | 袁州区
3609 | 奉新县
3610 | 万载县
3611 | 上高县
3612 | 樟树市
3613 | 高安市
3614 |
3615 | city
3616 | 宜春
3617 |
3618 |
3619 | province
3620 | 江西
3621 |
3622 |
3623 | cities
3624 |
3625 |
3626 | areas
3627 |
3628 | 毕节市
3629 | 黔西县
3630 | 大方县
3631 | 纳雍县
3632 | 威宁
3633 | 赫章县
3634 | 织金县
3635 | 金沙县
3636 |
3637 | city
3638 | 毕节地
3639 |
3640 |
3641 | areas
3642 |
3643 | 惠水县
3644 | 龙里县
3645 | 都匀市
3646 | 荔波县
3647 | 福泉市
3648 | 瓮安县
3649 | 贵定县
3650 | 平塘县
3651 | 独山县
3652 | 长顺县
3653 | 罗甸县
3654 | 三都
3655 |
3656 | city
3657 | 黔南
3658 |
3659 |
3660 | areas
3661 |
3662 | 钟山区
3663 | 水城县
3664 | 六枝特区
3665 | 盘县
3666 |
3667 | city
3668 | 六盘水
3669 |
3670 |
3671 | areas
3672 |
3673 | 岑巩县
3674 | 天柱县
3675 | 锦屏县
3676 | 黎平县
3677 | 台江县
3678 | 剑河县
3679 | 凯里市
3680 | 黄平县
3681 | 施秉县
3682 | 三穗县
3683 | 镇远县
3684 | 丹寨县
3685 | 雷山县
3686 | 从江县
3687 | 麻江县
3688 | 榕江县
3689 |
3690 | city
3691 | 黔东南
3692 |
3693 |
3694 | areas
3695 |
3696 | 清镇市
3697 | 小河区
3698 | 开阳县
3699 | 乌当区
3700 | 白云区
3701 | 云岩区
3702 | 花溪区
3703 | 南明区
3704 | 修文县
3705 | 息烽县
3706 |
3707 | city
3708 | 贵阳
3709 |
3710 |
3711 | areas
3712 |
3713 | 遵义县
3714 | 汇川区
3715 | 红花岗区
3716 | 仁怀市
3717 | 习水县
3718 | 赤水市
3719 | 务川县
3720 | 凤冈县
3721 | 湄潭县
3722 | 余庆县
3723 | 桐梓县
3724 | 绥阳县
3725 | 正安县
3726 | 道真县
3727 |
3728 | city
3729 | 遵义
3730 |
3731 |
3732 | areas
3733 |
3734 | 印江
3735 | 玉屏
3736 | 江口县
3737 | 铜仁市
3738 | 德江县
3739 | 石阡县
3740 | 思南县
3741 | 万山特区
3742 | 沿河
3743 | 松桃
3744 |
3745 | city
3746 | 铜仁地
3747 |
3748 |
3749 | areas
3750 |
3751 | 安龙县
3752 | 贞丰县
3753 | 晴隆县
3754 | 册亨县
3755 | 望谟县
3756 | 兴仁县
3757 | 普安县
3758 | 兴义市
3759 |
3760 | city
3761 | 黔西南
3762 |
3763 |
3764 | areas
3765 |
3766 | 紫云
3767 | 关岭
3768 | 镇宁
3769 | 普定县
3770 | 平坝县
3771 | 西秀区
3772 |
3773 | city
3774 | 安顺
3775 |
3776 |
3777 | province
3778 | 贵州
3779 |
3780 |
3781 | cities
3782 |
3783 |
3784 | areas
3785 |
3786 | 桐柏县
3787 | 新野县
3788 | 唐河县
3789 | 社旗县
3790 | 邓州市
3791 | 镇平县
3792 | 西峡县
3793 | 淅川县
3794 | 内乡县
3795 | 卧龙区
3796 | 宛城区
3797 | 方城县
3798 | 南召县
3799 |
3800 | city
3801 | 南阳
3802 |
3803 |
3804 | areas
3805 |
3806 | 宜阳县
3807 | 洛宁县
3808 | 嵩县
3809 | 汝阳县
3810 | 老城区
3811 | 廛河回族区
3812 | 洛龙区
3813 | 西工区
3814 | 吉利区
3815 | 涧西区
3816 | 孟津县
3817 | 伊川县
3818 | 偃师市
3819 | 新安县
3820 | 栾川县
3821 |
3822 | city
3823 | 洛阳
3824 |
3825 |
3826 | areas
3827 |
3828 | 陕县
3829 | 卢氏县
3830 | 湖滨区
3831 | 渑池县
3832 | 义马市
3833 | 灵宝市
3834 |
3835 | city
3836 | 三门峡
3837 |
3838 |
3839 | areas
3840 |
3841 | 夏邑县
3842 | 睢阳区
3843 | 民权县
3844 | 睢县
3845 | 宁陵县
3846 | 永城市
3847 | 梁园区
3848 | 柘城县
3849 | 虞城县
3850 |
3851 | city
3852 | 商丘
3853 |
3854 |
3855 | areas
3856 |
3857 | 温县
3858 | 武陟县
3859 | 博爱县
3860 | 修武县
3861 | 解放区
3862 | 中站区
3863 | 沁阳市
3864 | 济源市
3865 | 马村区
3866 | 山阳区
3867 | 孟州市
3868 |
3869 | city
3870 | 焦作
3871 |
3872 |
3873 | areas
3874 |
3875 | 通许县
3876 | 杞县
3877 | 开封县
3878 | 尉氏县
3879 | 兰考县
3880 | 禹王台区
3881 | 金明区
3882 | 龙亭区
3883 | 顺河回族区
3884 | 鼓楼区
3885 |
3886 | city
3887 | 开封
3888 |
3889 |
3890 | areas
3891 |
3892 | 西平县
3893 | 驿城区
3894 | 平舆县
3895 | 上蔡县
3896 | 确山县
3897 | 正阳县
3898 | 汝南县
3899 | 泌阳县
3900 | 遂平县
3901 | 新蔡县
3902 |
3903 | city
3904 | 驻马店
3905 |
3906 |
3907 | areas
3908 |
3909 | 范县
3910 | 台前县
3911 | 濮阳县
3912 | 华龙区
3913 | 南乐县
3914 | 清丰县
3915 |
3916 | city
3917 | 濮阳
3918 |
3919 |
3920 | areas
3921 |
3922 | 魏都区
3923 | 许昌县
3924 | 鄢陵县
3925 | 襄城县
3926 | 禹州市
3927 | 长葛市
3928 |
3929 | city
3930 | 许昌
3931 |
3932 |
3933 | areas
3934 |
3935 | 安阳县
3936 | 汤阴县
3937 | 滑县
3938 | 内黄县
3939 | 文峰区
3940 | 北关区
3941 | 殷都区
3942 | 龙安区
3943 | 林州市
3944 |
3945 | city
3946 | 安阳
3947 |
3948 |
3949 | areas
3950 |
3951 | 淮滨县
3952 | 息县
3953 | 商城县
3954 | 新县
3955 | 光山县
3956 | 罗山县
3957 | 平桥区
3958 | 浉河区
3959 | 潢川县
3960 | 固始县
3961 |
3962 | city
3963 | 信阳
3964 |
3965 |
3966 | areas
3967 |
3968 | 舞阳县
3969 | 源汇区
3970 | 郾城区
3971 | 召陵区
3972 | 临颍县
3973 |
3974 | city
3975 | 漯河
3976 |
3977 |
3978 | areas
3979 |
3980 | 郏县
3981 | 鲁山县
3982 | 叶县
3983 | 宝丰县
3984 | 湛河区
3985 | 石龙区
3986 | 卫东区
3987 | 新华区
3988 | 汝州市
3989 | 舞钢市
3990 |
3991 | city
3992 | 平顶山
3993 |
3994 |
3995 | areas
3996 |
3997 | 登封市
3998 | 巩义市
3999 | 中牟县
4000 | 惠济区
4001 | 中原区
4002 | 荥阳市
4003 | 新密市
4004 | 新郑市
4005 | 上街区
4006 | 金水区
4007 | 管城回族区
4008 | 二七区
4009 |
4010 | city
4011 | 郑州
4012 |
4013 |
4014 | areas
4015 |
4016 | 封丘县
4017 | 长垣县
4018 | 原阳县
4019 | 延津县
4020 | 获嘉县
4021 | 新乡县
4022 | 卫辉市
4023 | 辉县市
4024 | 卫滨区
4025 | 红旗区
4026 | 牧野区
4027 | 凤泉区
4028 |
4029 | city
4030 | 新乡
4031 |
4032 |
4033 | areas
4034 |
4035 | 浚县
4036 | 淇滨区
4037 | 鹤山区
4038 | 淇县
4039 | 山城区
4040 |
4041 | city
4042 | 鹤壁
4043 |
4044 |
4045 | areas
4046 |
4047 | 沈丘县
4048 | 郸城县
4049 | 西华县
4050 | 商水县
4051 | 川汇区
4052 | 扶沟县
4053 | 鹿邑县
4054 | 淮阳县
4055 | 太康县
4056 | 项城市
4057 |
4058 | city
4059 | 周口
4060 |
4061 |
4062 | province
4063 | 河南
4064 |
4065 |
4066 | cities
4067 |
4068 |
4069 | areas
4070 |
4071 | 北湖区
4072 | 安仁县
4073 | 资兴市
4074 | 嘉禾县
4075 | 临武县
4076 | 汝城县
4077 | 桂东县
4078 | 苏仙区
4079 | 桂阳县
4080 | 宜章县
4081 | 永兴县
4082 |
4083 | city
4084 | 郴州
4085 |
4086 |
4087 | areas
4088 |
4089 | 君山区
4090 | 云溪区
4091 | 岳阳楼区
4092 | 平江县
4093 | 湘阴县
4094 | 华容县
4095 | 岳阳县
4096 | 临湘市
4097 | 汨罗市
4098 |
4099 | city
4100 | 岳阳
4101 |
4102 |
4103 | areas
4104 |
4105 | 通道侗族自治县
4106 | 靖州苗族侗族自治县
4107 | 洪江市
4108 | 新晃侗族自治县
4109 | 芷江侗族自治县
4110 | 中方县
4111 | 沅陵县
4112 | 鹤城区
4113 | 会同县
4114 | 麻阳苗族自治县
4115 | 辰溪县
4116 | 溆浦县
4117 |
4118 | city
4119 | 怀化
4120 |
4121 |
4122 | areas
4123 |
4124 | 新化县
4125 | 双峰县
4126 | 涟源市
4127 | 冷水江市
4128 | 娄星区
4129 |
4130 | city
4131 | 娄底
4132 |
4133 |
4134 | areas
4135 |
4136 | 慈利县
4137 | 武陵源区
4138 | 桑植县
4139 | 永定区
4140 |
4141 | city
4142 | 张家界
4143 |
4144 |
4145 | areas
4146 |
4147 | 沅江市
4148 | 资阳区
4149 | 南县
4150 | 赫山区
4151 | 安化县
4152 | 桃江县
4153 |
4154 | city
4155 | 益阳
4156 |
4157 |
4158 | areas
4159 |
4160 | 凤凰县
4161 | 花垣县
4162 | 保靖县
4163 | 古丈县
4164 | 泸溪县
4165 | 吉首市
4166 | 龙山县
4167 | 永顺县
4168 |
4169 | city
4170 | 湘西土家族苗族
4171 |
4172 |
4173 | areas
4174 |
4175 | 津市市
4176 | 桃源县
4177 | 石门县
4178 | 澧县
4179 | 临澧县
4180 | 安乡县
4181 | 汉寿县
4182 | 武陵区
4183 | 鼎城区
4184 |
4185 | city
4186 | 常德
4187 |
4188 |
4189 | areas
4190 |
4191 | 岳塘区
4192 | 雨湖区
4193 | 湘乡市
4194 | 湘潭县
4195 | 韶山市
4196 |
4197 | city
4198 | 湘潭
4199 |
4200 |
4201 | areas
4202 |
4203 | 江华瑶族自治县
4204 | 新田县
4205 | 蓝山县
4206 | 宁远县
4207 | 江永县
4208 | 道县
4209 | 双牌县
4210 | 东安县
4211 | 祁阳县
4212 | 冷水滩区
4213 | 零陵区
4214 |
4215 | city
4216 | 永州
4217 |
4218 |
4219 | areas
4220 |
4221 | 珠晖区
4222 | 祁东县
4223 | 耒阳市
4224 | 衡山县
4225 | 衡东县
4226 | 衡阳县
4227 | 衡南县
4228 | 蒸湘区
4229 | 南岳区
4230 | 石鼓区
4231 | 雁峰区
4232 | 常宁市
4233 |
4234 | city
4235 | 衡阳
4236 |
4237 |
4238 | areas
4239 |
4240 | 醴陵市
4241 | 炎陵县
4242 | 攸县
4243 | 茶陵县
4244 | 芦淞区
4245 | 石峰区
4246 | 天元区
4247 | 株洲县
4248 | 荷塘区
4249 |
4250 | city
4251 | 株洲
4252 |
4253 |
4254 | areas
4255 |
4256 | 长沙县
4257 | 雨花区
4258 | 开福区
4259 | 岳麓区
4260 | 天心区
4261 | 芙蓉区
4262 | 望城县
4263 | 宁乡县
4264 | 浏阳市
4265 |
4266 | city
4267 | 长沙
4268 |
4269 |
4270 | areas
4271 |
4272 | 大祥区
4273 | 北塔区
4274 | 邵东县
4275 | 新邵县
4276 | 邵阳县
4277 | 隆回县
4278 | 洞口县
4279 | 绥宁县
4280 | 新宁县
4281 | 城步苗族自治县
4282 | 武冈市
4283 | 双清区
4284 |
4285 | city
4286 | 邵阳
4287 |
4288 |
4289 | province
4290 | 湖南
4291 |
4292 |
4293 | cities
4294 |
4295 |
4296 | areas
4297 |
4298 | city
4299 | 保亭
4300 |
4301 |
4302 | areas
4303 |
4304 | city
4305 | 澄迈
4306 |
4307 |
4308 | areas
4309 |
4310 | city
4311 | 南沙群岛
4312 |
4313 |
4314 | areas
4315 |
4316 | city
4317 | 陵水黎族
4318 |
4319 |
4320 | areas
4321 |
4322 | city
4323 | 中沙群岛
4324 |
4325 |
4326 | areas
4327 |
4328 | city
4329 | 屯昌
4330 |
4331 |
4332 | areas
4333 |
4334 | city
4335 | 昌江黎族
4336 |
4337 |
4338 | areas
4339 |
4340 | city
4341 | 乐东黎族
4342 |
4343 |
4344 | areas
4345 |
4346 | city
4347 | 琼海
4348 |
4349 |
4350 | areas
4351 |
4352 | city
4353 | 儋州
4354 |
4355 |
4356 | areas
4357 |
4358 | city
4359 | 文昌
4360 |
4361 |
4362 | areas
4363 |
4364 | city
4365 | 万宁
4366 |
4367 |
4368 | areas
4369 |
4370 | city
4371 | 白沙黎族
4372 |
4373 |
4374 | areas
4375 |
4376 | 琼山区
4377 | 龙华区
4378 | 秀英区
4379 | 美兰区
4380 |
4381 | city
4382 | 海口
4383 |
4384 |
4385 | areas
4386 |
4387 | city
4388 | 三亚
4389 |
4390 |
4391 | areas
4392 |
4393 | city
4394 | 五指山
4395 |
4396 |
4397 | areas
4398 |
4399 | city
4400 | 琼中
4401 |
4402 |
4403 | areas
4404 |
4405 | city
4406 | 东方
4407 |
4408 |
4409 | areas
4410 |
4411 | city
4412 | 定安
4413 |
4414 |
4415 | areas
4416 |
4417 | city
4418 | 西沙群岛
4419 |
4420 |
4421 | areas
4422 |
4423 | city
4424 | 临高
4425 |
4426 |
4427 | province
4428 | 海南
4429 |
4430 |
4431 | cities
4432 |
4433 |
4434 | areas
4435 |
4436 | 银州区
4437 | 清河区
4438 | 调兵山市
4439 | 昌图县
4440 | 西丰县
4441 | 铁岭县
4442 | 开原市
4443 |
4444 | city
4445 | 铁岭
4446 |
4447 |
4448 | areas
4449 |
4450 | 建昌县
4451 | 兴城市
4452 | 南票区
4453 | 绥中县
4454 | 连山区
4455 | 龙港区
4456 |
4457 | city
4458 | 葫芦岛
4459 |
4460 |
4461 | areas
4462 |
4463 | 鲅鱼圈区
4464 | 老边区
4465 | 站前区
4466 | 西市区
4467 | 盖州市
4468 | 大石桥市
4469 |
4470 | city
4471 | 营口
4472 |
4473 |
4474 | areas
4475 |
4476 | 平山区
4477 | 溪湖区
4478 | 明山区
4479 | 桓仁满族自治县
4480 | 南芬区
4481 | 本溪满族自治县
4482 |
4483 | city
4484 | 本溪
4485 |
4486 |
4487 | areas
4488 |
4489 | 宏伟区
4490 | 文圣区
4491 | 弓长岭区
4492 | 太子河区
4493 | 白塔区
4494 | 灯塔市
4495 | 辽阳县
4496 |
4497 | city
4498 | 辽阳
4499 |
4500 |
4501 | areas
4502 |
4503 | 双台子区
4504 | 兴隆台区
4505 | 大洼县
4506 | 盘山县
4507 |
4508 | city
4509 | 盘锦
4510 |
4511 |
4512 | areas
4513 |
4514 | 阜新蒙古族自治县
4515 | 细河区
4516 | 彰武县
4517 | 新邱区
4518 | 海州区
4519 | 清河门区
4520 | 太平区
4521 |
4522 | city
4523 | 阜新
4524 |
4525 |
4526 | areas
4527 |
4528 | 喀喇沁左翼蒙古族自治县
4529 | 建平县
4530 | 北票市
4531 | 凌源市
4532 | 朝阳县
4533 | 龙城区
4534 | 双塔区
4535 |
4536 | city
4537 | 朝阳
4538 |
4539 |
4540 | areas
4541 |
4542 | 凌海市
4543 | 古塔区
4544 | 北镇市
4545 | 黑山县
4546 | 义县
4547 | 太和区
4548 | 凌河区
4549 |
4550 | city
4551 | 锦州
4552 |
4553 |
4554 | areas
4555 |
4556 | 清原满族自治县
4557 | 东洲区
4558 | 新抚区
4559 | 望花区
4560 | 顺城区
4561 | 抚顺县
4562 | 新宾满族自治县
4563 |
4564 | city
4565 | 抚顺
4566 |
4567 |
4568 | areas
4569 |
4570 | 凤城市
4571 | 东港市
4572 | 宽甸满族自治县
4573 | 振安区
4574 | 振兴区
4575 | 元宝区
4576 |
4577 | city
4578 | 丹东
4579 |
4580 |
4581 | areas
4582 |
4583 | 新民市
4584 | 康平县
4585 | 法库县
4586 | 沈河区
4587 | 和平区
4588 | 东陵区
4589 | 新城子区
4590 | 于洪区
4591 | 辽中县
4592 | 大东区
4593 | 皇姑区
4594 | 铁西区
4595 | 苏家屯区
4596 |
4597 | city
4598 | 沈阳
4599 |
4600 |
4601 | areas
4602 |
4603 | 铁东区
4604 | 立山区
4605 | 铁西区
4606 | 台安县
4607 | 千山区
4608 | 海城市
4609 | 岫岩满族自治县
4610 |
4611 | city
4612 | 鞍山
4613 |
4614 |
4615 | areas
4616 |
4617 | 庄河市
4618 | 瓦房店市
4619 | 普兰店市
4620 | 金州区
4621 | 长海县
4622 | 甘井子区
4623 | 旅顺口区
4624 | 西岗区
4625 | 沙河口区
4626 | 中山区
4627 |
4628 | city
4629 | 大连
4630 |
4631 |
4632 | province
4633 | 辽宁
4634 |
4635 |
4636 | cities
4637 |
4638 |
4639 | areas
4640 |
4641 | 宁江区
4642 | 前郭尔罗斯蒙古族自治县
4643 | 长岭县
4644 | 乾安县
4645 | 扶余县
4646 |
4647 | city
4648 | 松原
4649 |
4650 |
4651 | areas
4652 |
4653 | 铁西区
4654 | 双辽市
4655 | 伊通满族自治县
4656 | 公主岭市
4657 | 梨树县
4658 | 铁东区
4659 |
4660 | city
4661 | 四平
4662 |
4663 |
4664 | areas
4665 |
4666 | 洮南市
4667 | 大安市
4668 | 洮北区
4669 | 镇赉县
4670 | 通榆县
4671 |
4672 | city
4673 | 白城
4674 |
4675 |
4676 | areas
4677 |
4678 | 长白朝鲜族自治县
4679 | 靖宇县
4680 | 抚松县
4681 | 八道江区
4682 | 临江市
4683 | 江源县
4684 |
4685 | city
4686 | 白山
4687 |
4688 |
4689 | areas
4690 |
4691 | 舒兰市
4692 | 桦甸市
4693 | 磐石市
4694 | 丰满区
4695 | 船营区
4696 | 蛟河市
4697 | 永吉县
4698 | 龙潭区
4699 | 昌邑区
4700 |
4701 | city
4702 | 吉林
4703 |
4704 |
4705 | areas
4706 |
4707 | 集安市
4708 | 梅河口市
4709 | 二道江区
4710 | 辉南县
4711 | 东昌区
4712 | 通化县
4713 | 柳河县
4714 |
4715 | city
4716 | 通化
4717 |
4718 |
4719 | areas
4720 |
4721 | 二道区
4722 | 朝阳区
4723 | 双阳区
4724 | 绿园区
4725 | 九台市
4726 | 农安县
4727 | 德惠市
4728 | 榆树市
4729 | 南关区
4730 | 宽城区
4731 |
4732 | city
4733 | 长春
4734 |
4735 |
4736 | areas
4737 |
4738 | 图们市
4739 | 延吉市
4740 | 珲春市
4741 | 敦化市
4742 | 和龙市
4743 | 龙井市
4744 | 安图县
4745 | 汪清县
4746 |
4747 | city
4748 | 延边朝鲜族
4749 |
4750 |
4751 | areas
4752 |
4753 | 龙山区
4754 | 东辽县
4755 | 西安区
4756 | 东丰县
4757 |
4758 | city
4759 | 辽源
4760 |
4761 |
4762 | province
4763 | 吉林
4764 |
4765 |
4766 | region
4767 | 华西区
4768 |
4769 |
4770 | provinces
4771 |
4772 |
4773 | cities
4774 |
4775 |
4776 | areas
4777 |
4778 | city
4779 | 花地玛堂
4780 |
4781 |
4782 | areas
4783 |
4784 | city
4785 | 圣安多尼堂
4786 |
4787 |
4788 | areas
4789 |
4790 | city
4791 | 大堂
4792 |
4793 |
4794 | areas
4795 |
4796 | city
4797 | 望德堂
4798 |
4799 |
4800 | areas
4801 |
4802 | city
4803 | 风顺堂
4804 |
4805 |
4806 | areas
4807 |
4808 | city
4809 | 嘉模堂
4810 |
4811 |
4812 | areas
4813 |
4814 | city
4815 | 圣方济各堂
4816 |
4817 |
4818 | province
4819 | 澳门
4820 |
4821 |
4822 | cities
4823 |
4824 |
4825 | areas
4826 |
4827 | city
4828 | 油尖旺
4829 |
4830 |
4831 | areas
4832 |
4833 | city
4834 | 黄大仙
4835 |
4836 |
4837 | areas
4838 |
4839 | city
4840 | 深水埗
4841 |
4842 |
4843 | areas
4844 |
4845 | city
4846 | 观塘
4847 |
4848 |
4849 | areas
4850 |
4851 | city
4852 | 九龙城
4853 |
4854 |
4855 | areas
4856 |
4857 | city
4858 | 湾仔
4859 |
4860 |
4861 | areas
4862 |
4863 | city
4864 | 葵青
4865 |
4866 |
4867 | areas
4868 |
4869 | city
4870 | 离岛
4871 |
4872 |
4873 | areas
4874 |
4875 | city
4876 | 中西
4877 |
4878 |
4879 | areas
4880 |
4881 | city
4882 | 南
4883 |
4884 |
4885 | areas
4886 |
4887 | city
4888 | 东
4889 |
4890 |
4891 | areas
4892 |
4893 | city
4894 | 荃湾
4895 |
4896 |
4897 | areas
4898 |
4899 | city
4900 | 元朗
4901 |
4902 |
4903 | areas
4904 |
4905 | city
4906 | 沙田
4907 |
4908 |
4909 | areas
4910 |
4911 | city
4912 | 西贡
4913 |
4914 |
4915 | areas
4916 |
4917 | city
4918 | 屯门
4919 |
4920 |
4921 | areas
4922 |
4923 | city
4924 | 大埔
4925 |
4926 |
4927 | areas
4928 |
4929 | city
4930 | 北
4931 |
4932 |
4933 | province
4934 | 香港
4935 |
4936 |
4937 | cities
4938 |
4939 |
4940 | areas
4941 |
4942 | city
4943 | 新竹
4944 |
4945 |
4946 | areas
4947 |
4948 | city
4949 | 基隆
4950 |
4951 |
4952 | areas
4953 |
4954 | city
4955 | 高雄
4956 |
4957 |
4958 | areas
4959 |
4960 | city
4961 | 台北
4962 |
4963 |
4964 | areas
4965 |
4966 | city
4967 | 台南
4968 |
4969 |
4970 | areas
4971 |
4972 | city
4973 | 嘉义
4974 |
4975 |
4976 | areas
4977 |
4978 | city
4979 | 台中
4980 |
4981 |
4982 | areas
4983 |
4984 | city
4985 | 宜兰
4986 |
4987 |
4988 | areas
4989 |
4990 | city
4991 | 屏东
4992 |
4993 |
4994 | areas
4995 |
4996 | city
4997 | 桃园
4998 |
4999 |
5000 | areas
5001 |
5002 | city
5003 | 台东
5004 |
5005 |
5006 | areas
5007 |
5008 | city
5009 | 苗栗
5010 |
5011 |
5012 | areas
5013 |
5014 | city
5015 | 金门
5016 |
5017 |
5018 | areas
5019 |
5020 | city
5021 | 花莲
5022 |
5023 |
5024 | areas
5025 |
5026 | city
5027 | 云林
5028 |
5029 |
5030 | areas
5031 |
5032 | city
5033 | 连江
5034 |
5035 |
5036 | areas
5037 |
5038 | city
5039 | 澎湖
5040 |
5041 |
5042 | areas
5043 |
5044 | city
5045 | 南投
5046 |
5047 |
5048 | areas
5049 |
5050 | city
5051 | 彰化
5052 |
5053 |
5054 | province
5055 | 台湾
5056 |
5057 |
5058 | cities
5059 |
5060 |
5061 | areas
5062 |
5063 | 新源
5064 | 昭苏
5065 | 霍城
5066 | 巩留
5067 | 伊宁
5068 | 察布查尔
5069 | 伊宁市
5070 | 奎屯市
5071 | 尼勒克
5072 | 特克斯
5073 |
5074 | city
5075 | 伊犁
5076 |
5077 |
5078 | areas
5079 |
5080 | 独山子区
5081 | 白碱滩区
5082 | 克拉玛依区
5083 | 乌尔禾区
5084 |
5085 | city
5086 | 克拉玛依
5087 |
5088 |
5089 | areas
5090 |
5091 | 巴里坤
5092 | 哈密市
5093 | 伊吾
5094 |
5095 | city
5096 | 哈密地
5097 |
5098 |
5099 | areas
5100 |
5101 | city
5102 | 石河子
5103 |
5104 |
5105 | areas
5106 |
5107 | 托克逊
5108 | 鄯善
5109 | 吐鲁番市
5110 |
5111 | city
5112 | 吐鲁番地
5113 |
5114 |
5115 | areas
5116 |
5117 | city
5118 | 阿拉尔
5119 |
5120 |
5121 | areas
5122 |
5123 | 阿勒泰市
5124 | 布尔津
5125 | 福海
5126 | 哈巴河
5127 | 青河
5128 | 吉木乃
5129 | 富蕴
5130 |
5131 | city
5132 | 阿勒泰地
5133 |
5134 |
5135 | areas
5136 |
5137 | 乌鲁木齐
5138 | 天山区
5139 | 沙依巴克区
5140 | 新市区
5141 | 水磨沟区
5142 | 头屯河区
5143 | 达坂城区
5144 | 东山区
5145 |
5146 | city
5147 | 乌鲁木齐
5148 |
5149 |
5150 | areas
5151 |
5152 | 和布克赛尔
5153 | 乌苏市
5154 | 塔城市
5155 | 沙湾
5156 | 额敏
5157 | 裕民
5158 | 托里
5159 |
5160 | city
5161 | 塔城地
5162 |
5163 |
5164 | areas
5165 |
5166 | 昌吉市
5167 | 呼图壁
5168 | 玛纳斯
5169 | 阜康市
5170 | 米泉市
5171 | 木垒
5172 | 奇台
5173 | 吉木萨尔
5174 |
5175 | city
5176 | 昌吉
5177 |
5178 |
5179 | areas
5180 |
5181 | 阿合奇
5182 | 阿克陶
5183 | 阿图什市
5184 | 乌恰
5185 |
5186 | city
5187 | 克孜勒
5188 |
5189 |
5190 | areas
5191 |
5192 | city
5193 | 图木舒克
5194 |
5195 |
5196 | areas
5197 |
5198 | 乌什
5199 | 拜城
5200 | 柯坪
5201 | 阿瓦提
5202 | 库车
5203 | 温宿
5204 | 新和
5205 | 沙雅
5206 | 阿克苏市
5207 |
5208 | city
5209 | 阿克苏地
5210 |
5211 |
5212 | areas
5213 |
5214 | city
5215 | 五家渠
5216 |
5217 |
5218 | areas
5219 |
5220 | 博湖
5221 | 尉犁
5222 | 若羌
5223 | 库尔勒市
5224 | 轮台
5225 | 和静
5226 | 和硕
5227 | 且末
5228 | 焉耆
5229 |
5230 | city
5231 | 巴音郭楞
5232 |
5233 |
5234 | areas
5235 |
5236 | 于田
5237 | 民丰
5238 | 策勒
5239 | 洛浦
5240 | 皮山
5241 | 墨玉
5242 | 和田
5243 | 和田市
5244 |
5245 | city
5246 | 和田地
5247 |
5248 |
5249 | areas
5250 |
5251 | 精河
5252 | 温泉
5253 | 博乐市
5254 |
5255 | city
5256 | 博尔塔拉
5257 |
5258 |
5259 | areas
5260 |
5261 | 伽师
5262 | 岳普湖
5263 | 叶城
5264 | 麦盖提
5265 | 疏勒
5266 | 英吉沙
5267 | 泽普
5268 | 莎车
5269 | 塔什库尔干
5270 | 巴楚
5271 | 喀什市
5272 | 疏附
5273 |
5274 | city
5275 | 喀什地
5276 |
5277 |
5278 | province
5279 | 新疆
5280 |
5281 |
5282 | cities
5283 |
5284 |
5285 | areas
5286 |
5287 | 临河区
5288 | 五原县
5289 | 磴口县
5290 | 乌拉特前旗
5291 | 乌拉特中旗
5292 | 乌拉特后旗
5293 | 杭锦后旗
5294 |
5295 | city
5296 | 巴彦淖尔
5297 |
5298 |
5299 | areas
5300 |
5301 | 多伦县
5302 | 二连浩特市
5303 | 苏尼特左旗
5304 | 苏尼特右旗
5305 | 锡林浩特市
5306 | 阿巴嘎旗
5307 | 东乌珠穆沁旗
5308 | 西乌珠穆沁旗
5309 | 正蓝旗
5310 | 正镶白旗
5311 | 镶黄旗
5312 | 太仆寺旗
5313 |
5314 | city
5315 | 锡林郭勒盟
5316 |
5317 |
5318 | areas
5319 |
5320 | 科尔沁右翼前旗
5321 | 阿尔山市
5322 | 乌兰浩特市
5323 | 突泉县
5324 | 科尔沁右翼中旗
5325 | 扎赉特旗
5326 |
5327 | city
5328 | 兴安盟
5329 |
5330 |
5331 | areas
5332 |
5333 | 化德县
5334 | 商都县
5335 | 四子王旗
5336 | 察哈尔右翼后旗
5337 | 丰镇市
5338 | 凉城县
5339 | 兴和县
5340 | 集宁区
5341 | 卓资县
5342 | 察哈尔右翼中旗
5343 | 察哈尔右翼前旗
5344 |
5345 | city
5346 | 乌兰察布
5347 |
5348 |
5349 | areas
5350 |
5351 | 达拉特旗
5352 | 东胜区
5353 | 乌审旗
5354 | 伊金霍洛旗
5355 | 鄂托克旗
5356 | 杭锦旗
5357 | 准格尔旗
5358 | 鄂托克前旗
5359 |
5360 | city
5361 | 鄂尔多斯
5362 |
5363 |
5364 | areas
5365 |
5366 | 乌达区
5367 | 海南区
5368 | 海勃湾区
5369 |
5370 | city
5371 | 乌海
5372 |
5373 |
5374 | areas
5375 |
5376 | 达尔罕茂明安联合旗
5377 | 昆都仑区
5378 | 东河区
5379 | 九原区
5380 | 白云矿区
5381 | 固阳县
5382 | 石拐区
5383 | 青山区
5384 | 土默特右旗
5385 |
5386 | city
5387 | 包头
5388 |
5389 |
5390 | areas
5391 |
5392 | 清水河县
5393 | 和林格尔县
5394 | 托克托县
5395 | 土默特左旗
5396 | 赛罕区
5397 | 武川县
5398 | 新城区
5399 | 回民区
5400 | 玉泉区
5401 |
5402 | city
5403 | 呼和浩特
5404 |
5405 |
5406 | areas
5407 |
5408 | 根河市
5409 | 新巴尔虎右旗
5410 | 新巴尔虎左旗
5411 | 陈巴尔虎旗
5412 | 鄂温克族自治旗
5413 | 额尔古纳市
5414 | 扎兰屯市
5415 | 牙克石市
5416 | 满洲里市
5417 | 莫力达瓦达斡尔族
5418 | 鄂伦春自治旗
5419 | 海拉尔区
5420 | 阿荣旗
5421 |
5422 | city
5423 | 呼伦贝尔
5424 |
5425 |
5426 | areas
5427 |
5428 | 科尔沁左翼中旗
5429 | 科尔沁区
5430 | 开鲁县
5431 | 科尔沁左翼后旗
5432 | 奈曼旗
5433 | 库伦旗
5434 | 霍林郭勒市
5435 | 扎鲁特旗
5436 |
5437 | city
5438 | 通辽
5439 |
5440 |
5441 | areas
5442 |
5443 | 额济纳旗
5444 | 阿拉善右旗
5445 | 阿拉善左旗
5446 |
5447 | city
5448 | 阿拉善盟
5449 |
5450 |
5451 | areas
5452 |
5453 | 林西县
5454 | 克什克腾旗
5455 | 翁牛特旗
5456 | 喀喇沁旗
5457 | 松山区
5458 | 阿鲁科尔沁旗
5459 | 巴林左旗
5460 | 巴林右旗
5461 | 宁城县
5462 | 敖汉旗
5463 | 元宝山区
5464 | 红山区
5465 |
5466 | city
5467 | 赤峰
5468 |
5469 |
5470 | province
5471 | 内蒙古
5472 |
5473 |
5474 | cities
5475 |
5476 |
5477 | areas
5478 |
5479 | 普兰
5480 | 措勤
5481 | 改则
5482 | 革吉
5483 | 日土
5484 | 噶尔
5485 | 札达
5486 |
5487 | city
5488 | 阿里地
5489 |
5490 |
5491 | areas
5492 |
5493 | 当雄
5494 | 尼木
5495 | 城关区
5496 | 林周
5497 | 达孜
5498 | 墨竹工卡
5499 | 曲水
5500 | 堆龙德庆
5501 |
5502 | city
5503 | 拉萨
5504 |
5505 |
5506 | areas
5507 |
5508 | 曲松
5509 | 措美
5510 | 洛扎
5511 | 加查
5512 | 扎囊
5513 | 贡嘎
5514 | 桑日
5515 | 琼结
5516 | 浪卡子
5517 | 隆子
5518 | 错那
5519 | 乃东
5520 |
5521 | city
5522 | 山南地
5523 |
5524 |
5525 | areas
5526 |
5527 | 昂仁
5528 | 拉孜
5529 | 萨迦
5530 | 定日
5531 | 江孜
5532 | 南木林
5533 | 日喀则市
5534 | 聂拉木
5535 | 萨嘎
5536 | 亚东
5537 | 吉隆
5538 | 定结
5539 | 仲巴
5540 | 白朗
5541 | 谢通门
5542 | 仁布
5543 | 岗巴
5544 | 康马
5545 |
5546 | city
5547 | 日喀则地
5548 |
5549 |
5550 | areas
5551 |
5552 | 尼玛
5553 | 那曲
5554 | 比如
5555 | 嘉黎
5556 | 安多
5557 | 聂荣
5558 | 索
5559 | 申扎
5560 | 巴青
5561 | 班戈
5562 |
5563 | city
5564 | 那曲地
5565 |
5566 |
5567 | areas
5568 |
5569 | 芒康
5570 | 边坝
5571 | 左贡
5572 | 八宿
5573 | 昌都
5574 | 江达
5575 | 类乌齐
5576 | 贡觉
5577 | 察雅
5578 | 丁青
5579 | 洛隆
5580 |
5581 | city
5582 | 昌都地
5583 |
5584 |
5585 | areas
5586 |
5587 | 墨脱
5588 | 米林
5589 | 工布江达
5590 | 林芝
5591 | 波密
5592 | 察隅
5593 | 朗
5594 |
5595 | city
5596 | 林芝地
5597 |
5598 |
5599 | province
5600 | 西藏
5601 |
5602 |
5603 | cities
5604 |
5605 |
5606 | areas
5607 |
5608 | 西固区
5609 | 安宁区
5610 | 城关区
5611 | 七里河区
5612 | 皋兰县
5613 | 榆中县
5614 | 红古区
5615 | 永登县
5616 |
5617 | city
5618 | 兰州
5619 |
5620 |
5621 | areas
5622 |
5623 | 金川区
5624 | 永昌县
5625 |
5626 | city
5627 | 金昌
5628 |
5629 |
5630 | areas
5631 |
5632 | 碌曲县
5633 | 玛曲县
5634 | 夏河县
5635 | 卓尼县
5636 | 临潭县
5637 | 迭部县
5638 | 舟曲县
5639 | 合作市
5640 |
5641 | city
5642 | 甘南藏族
5643 |
5644 |
5645 | areas
5646 |
5647 | 静宁县
5648 | 庄浪县
5649 | 崆峒区
5650 | 华亭县
5651 | 崇信县
5652 | 灵台县
5653 | 泾川县
5654 |
5655 | city
5656 | 平凉
5657 |
5658 |
5659 | areas
5660 |
5661 | city
5662 | 嘉峪关
5663 |
5664 |
5665 | areas
5666 |
5667 | 秦安县
5668 | 清水县
5669 | 甘谷县
5670 | 武山县
5671 | 北道区
5672 | 秦城区
5673 | 张家川
5674 |
5675 | city
5676 | 天水
5677 |
5678 |
5679 | areas
5680 |
5681 | 景泰县
5682 | 会宁县
5683 | 白银区
5684 | 靖远县
5685 | 平川区
5686 |
5687 | city
5688 | 白银
5689 |
5690 |
5691 | areas
5692 |
5693 | 凉州区
5694 | 民勤县
5695 | 古浪县
5696 | 天祝
5697 |
5698 | city
5699 | 武威
5700 |
5701 |
5702 | areas
5703 |
5704 | 肃南裕固族
5705 | 民乐县
5706 | 山丹县
5707 | 高台县
5708 | 临泽县
5709 | 甘州区
5710 |
5711 | city
5712 | 张掖
5713 |
5714 |
5715 | areas
5716 |
5717 | 华池县
5718 | 合水县
5719 | 西峰区
5720 | 宁县
5721 | 正宁县
5722 | 镇原县
5723 | 庆城县
5724 | 环县
5725 |
5726 | city
5727 | 庆阳
5728 |
5729 |
5730 | areas
5731 |
5732 | 安定区
5733 | 陇西县
5734 | 通渭县
5735 | 临洮县
5736 | 渭源县
5737 | 漳县
5738 | 岷县
5739 |
5740 | city
5741 | 定西
5742 |
5743 |
5744 | areas
5745 |
5746 | 积石山
5747 | 东乡族
5748 | 和政县
5749 | 广河县
5750 | 永靖县
5751 | 康乐县
5752 | 临夏县
5753 | 临夏市
5754 |
5755 | city
5756 | 临夏回族
5757 |
5758 |
5759 | areas
5760 |
5761 | 敦煌市
5762 | 阿克塞
5763 | 玉门市
5764 | 瓜州县
5765 | 肃北
5766 | 肃州区
5767 | 金塔县
5768 |
5769 | city
5770 | 酒泉
5771 |
5772 |
5773 | areas
5774 |
5775 | 两当县
5776 | 礼县
5777 | 徽县
5778 | 文县
5779 | 宕昌县
5780 | 康县
5781 | 西和县
5782 | 武都区
5783 | 成县
5784 |
5785 | city
5786 | 陇南
5787 |
5788 |
5789 | province
5790 | 甘肃
5791 |
5792 |
5793 | cities
5794 |
5795 |
5796 | areas
5797 |
5798 | 大武口区
5799 | 惠农区
5800 | 平罗县
5801 |
5802 | city
5803 | 石嘴山
5804 |
5805 |
5806 | areas
5807 |
5808 | 原州区
5809 | 彭阳县
5810 | 泾源县
5811 | 隆德县
5812 | 西吉县
5813 |
5814 | city
5815 | 固原
5816 |
5817 |
5818 | areas
5819 |
5820 | 海原县
5821 | 中宁县
5822 | 沙坡头区
5823 |
5824 | city
5825 | 中卫
5826 |
5827 |
5828 | areas
5829 |
5830 | 贺兰县
5831 | 灵武市
5832 | 金凤区
5833 | 永宁县
5834 | 兴庆区
5835 | 西夏区
5836 |
5837 | city
5838 | 银川
5839 |
5840 |
5841 | areas
5842 |
5843 | 青铜峡市
5844 | 同心县
5845 | 盐池县
5846 | 利通区
5847 |
5848 | city
5849 | 吴忠
5850 |
5851 |
5852 | province
5853 | 宁夏
5854 |
5855 |
5856 | cities
5857 |
5858 |
5859 | areas
5860 |
5861 | 河南
5862 | 泽库县
5863 | 尖扎县
5864 | 同仁县
5865 |
5866 | city
5867 | 黄南
5868 |
5869 |
5870 | areas
5871 |
5872 | 乐都县
5873 | 互助
5874 | 平安县
5875 | 民和
5876 | 化隆
5877 | 循化
5878 |
5879 | city
5880 | 海东地
5881 |
5882 |
5883 | areas
5884 |
5885 | 班玛县
5886 | 甘德县
5887 | 达日县
5888 | 久治县
5889 | 玛沁县
5890 | 玛多县
5891 |
5892 | city
5893 | 果洛
5894 |
5895 |
5896 | areas
5897 |
5898 | 湟中县
5899 | 湟源县
5900 | 城北区
5901 | 大通
5902 | 城西区
5903 | 城中区
5904 | 城东区
5905 |
5906 | city
5907 | 西宁
5908 |
5909 |
5910 | areas
5911 |
5912 | 刚察县
5913 | 海晏县
5914 | 祁连县
5915 | 门源
5916 |
5917 | city
5918 | 海北
5919 |
5920 |
5921 | areas
5922 |
5923 | 玉树县
5924 | 称多县
5925 | 杂多县
5926 | 囊谦县
5927 | 治多县
5928 | 曲麻莱县
5929 |
5930 | city
5931 | 玉树
5932 |
5933 |
5934 | areas
5935 |
5936 | 贵南县
5937 | 贵德县
5938 | 兴海县
5939 | 同德县
5940 | 共和县
5941 |
5942 | city
5943 | 海南
5944 |
5945 |
5946 | areas
5947 |
5948 | 天峻县
5949 | 都兰县
5950 | 格尔木市
5951 | 乌兰县
5952 | 德令哈市
5953 |
5954 | city
5955 | 海西
5956 |
5957 |
5958 | province
5959 | 青海
5960 |
5961 |
5962 | region
5963 | 华北区
5964 |
5965 |
5966 |
5967 |
--------------------------------------------------------------------------------