api是高德地图官方的,其中台湾省,市区行政区划数据没有提供,文末有我从别处整理了json数据。

    public function setAddressFather(){$province = [];$provinceCount = 0;$city = [];$cityCount = 34;$district = [];$pro = ["北京","天津","河北省","山西","内蒙古","辽宁","吉林","黑龙江","上海","江苏","浙江","安徽","福建","江西","山东","河南","湖北","湖南","广东","广西","海南省","重庆","四川","贵州","云南","西藏","陕西","甘肃","青海","宁夏","新疆","香港","澳门","台湾"];foreach($pro as $v){$url = "https://restapi.amap.com/v3/config/district?key=你的高德地图阿皮key&keywords=".$v."&subdistrict=2&extensions=base";$data = self::httpGet($url);$resturn = json_decode($data,true);$provinceCount++;$province[] = ["name" => $v,"address_name" => $resturn["districts"][0]["name"],"father_id" => 0,"highest_father_id" => 0,"level" => 1,"city_code" => "",];$last_names = array_column($resturn["districts"][0]["districts"],'adcode');array_multisort($last_names,SORT_ASC,$resturn["districts"][0]["districts"]);if($v == "香港" || $v == "澳门"){$city[] = ["name" => $resturn["districts"][0]["name"],"address_name" => $resturn["districts"][0]["name"],"father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => $resturn["districts"][0]["citycode"],];}if($v == "台湾"){$TaiwanCity = [["name" => "台北市","address_name" => "台北市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710100",],["name" => "新北市","address_name" => "新北市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710300",],["name" => "桃园市","address_name" => "桃园市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710600",],["name" => "台中市","address_name" => "台中市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710400",],["name" => "台南市","address_name" => "台南市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710500",],["name" => "高雄市","address_name" => "高雄市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710200",],["name" => "基隆市","address_name" => "基隆市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719001",],["name" => "新竹市","address_name" => "新竹市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719002",],["name" => "嘉义市","address_name" => "嘉义市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719003",],["name" => "新竹县","address_name" => "新竹县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719004",],["name" => "宜兰县","address_name" => "宜兰县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719005",],["name" => "苗栗县","address_name" => "苗栗县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719006",],["name" => "彰化县","address_name" => "彰化县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719007",],["name" => "云林县","address_name" => "云林县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719008",],["name" => "南投县","address_name" => "南投县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719009",],["name" => "嘉义县","address_name" => "嘉义县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719010",],["name" => "屏东县","address_name" => "屏东县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719011",],["name" => "台东县","address_name" => "台东县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719012",],["name" => "花莲县","address_name" => "花莲县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719013",],["name" => "澎湖县","address_name" => "澎湖县","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "719014",]];$city = array_merge($city,$TaiwanCity);}foreach($resturn["districts"][0]["districts"] as $key => $val){if($v == "香港" || $v == "澳门") {$district[] = ["name" => $val["name"],"address_name" => $val["name"],"father_id" => $cityCount,"highest_father_id" => $provinceCount,"level" => 3,"city_code" => $val["citycode"],];}else{++$cityCount;$city[] = ["name" => $val["name"],"address_name" => $val["name"],"father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => $val["citycode"],];$last_names = array_column($val["districts"],'adcode');array_multisort($last_names,SORT_ASC,$val["districts"]);foreach ($val["districts"] as $c => $d){$district[] = ["name" => $d["name"],"address_name" => $d["name"],"father_id" => $cityCount,"highest_father_id" => $provinceCount,"level" => 3,"city_code" => $val["citycode"],];}}}}$data = array_merge($province,$city,$district);}//模拟get请求public function httpGet($url) {$curl = curl_init();curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);curl_setopt($curl, CURLOPT_TIMEOUT, 500);curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);curl_setopt($curl, CURLOPT_URL, $url);$res = curl_exec($curl);curl_close($curl);return $res;}

台湾省行政区划json数据,与上面api获取的数据合并就可以了

[
{
"name":"台北市",
"address_name":"台北市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710100"
},
{
"name":"新北市",
"address_name":"新北市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710300"
},
{
"name":"桃园市",
"address_name":"桃园市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710600"
},
{
"name":"台中市",
"address_name":"台中市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710400"
},
{
"name":"台南市",
"address_name":"台南市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710500"
},
{
"name":"高雄市",
"address_name":"高雄市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710200"
},
{
"name":"基隆市",
"address_name":"基隆市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719001"
},
{
"name":"新竹市",
"address_name":"新竹市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719002"
},
{
"name":"嘉义市",
"address_name":"嘉义市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719003"
},
{
"name":"新竹县",
"address_name":"新竹县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719004"
},
{
"name":"宜兰县",
"address_name":"宜兰县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719005"
},
{
"name":"苗栗县",
"address_name":"苗栗县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719006"
},
{
"name":"彰化县",
"address_name":"彰化县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719007"
},
{
"name":"云林县",
"address_name":"云林县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719008"
},
{
"name":"南投县",
"address_name":"南投县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719009"
},
{
"name":"嘉义县",
"address_name":"嘉义县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719010"
},
{
"name":"屏东县",
"address_name":"屏东县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719011"
},
{
"name":"台东县",
"address_name":"台东县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719012"
},
{
"name":"花莲县",
"address_name":"花莲县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719013"
},
{
"name":"澎湖县",
"address_name":"澎湖县",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"719014"
},
{
"name":"大同区",
"address_name":"大同区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"大安区",
"address_name":"大安区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"北投区",
"address_name":"北投区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"中山区",
"address_name":"中山区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"信义区",
"address_name":"信义区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"文山区",
"address_name":"文山区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"南港区",
"address_name":"南港区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"中正区",
"address_name":"中正区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"万华区",
"address_name":"万华区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"士林区",
"address_name":"士林区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"内湖区",
"address_name":"内湖区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"松山区",
"address_name":"松山区",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"深坑区",
"address_name":"深坑区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"三重区",
"address_name":"三重区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"永和区",
"address_name":"永和区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"泰山区",
"address_name":"泰山区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"新店区",
"address_name":"新店区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"坪林区",
"address_name":"坪林区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"双溪区",
"address_name":"双溪区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"平溪区",
"address_name":"平溪区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"乌来区",
"address_name":"乌来区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"石碇区",
"address_name":"石碇区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"汐止区",
"address_name":"汐止区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"莺歌区",
"address_name":"莺歌区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"三峡区",
"address_name":"三峡区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"新庄区",
"address_name":"新庄区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"树林区",
"address_name":"树林区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"芦洲区",
"address_name":"芦洲区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"土城区",
"address_name":"土城区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"五股区",
"address_name":"五股区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"中和区",
"address_name":"中和区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"板桥区",
"address_name":"板桥区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"三芝区",
"address_name":"三芝区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"瑞芳区",
"address_name":"瑞芳区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"淡水区",
"address_name":"淡水区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"万里区",
"address_name":"万里区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"八里区",
"address_name":"八里区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"林口区",
"address_name":"林口区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"石门区",
"address_name":"石门区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"金山区",
"address_name":"金山区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"贡寮区",
"address_name":"贡寮区",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"八德市",
"address_name":"八德市",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"复兴乡",
"address_name":"复兴乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"龙潭乡",
"address_name":"龙潭乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"桃园区",
"address_name":"桃园区",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"龟山乡",
"address_name":"龟山乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"中坜市",
"address_name":"中坜市",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"杨梅市",
"address_name":"杨梅市",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"平镇市",
"address_name":"平镇市",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"大溪镇",
"address_name":"大溪镇",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"芦竹乡",
"address_name":"芦竹乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"观音乡",
"address_name":"观音乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"大园乡",
"address_name":"大园乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"新屋乡",
"address_name":"新屋乡",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"中区",
"address_name":"中区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"南屯区",
"address_name":"南屯区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"外埔区",
"address_name":"外埔区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"石冈区",
"address_name":"石冈区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"和平区",
"address_name":"和平区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"新社区",
"address_name":"新社区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"太平区",
"address_name":"太平区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"潭子区",
"address_name":"潭子区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"北区",
"address_name":"北区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"东区",
"address_name":"东区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"南区",
"address_name":"南区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大肚区",
"address_name":"大肚区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"沙鹿区",
"address_name":"沙鹿区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大雅区",
"address_name":"大雅区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大里区",
"address_name":"大里区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"东势区",
"address_name":"东势区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"后里区",
"address_name":"后里区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"西区",
"address_name":"西区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"丰原区",
"address_name":"丰原区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"雾峰区",
"address_name":"雾峰区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"神冈区",
"address_name":"神冈区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"北屯区",
"address_name":"北屯区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"西屯区",
"address_name":"西屯区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"乌日区",
"address_name":"乌日区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大甲区",
"address_name":"大甲区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大安区",
"address_name":"大安区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"梧栖区",
"address_name":"梧栖区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"清水区",
"address_name":"清水区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"龙井区",
"address_name":"龙井区",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"盐水区",
"address_name":"盐水区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"东区",
"address_name":"东区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"中西区",
"address_name":"中西区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"仁德区",
"address_name":"仁德区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"北区",
"address_name":"北区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"永康区",
"address_name":"永康区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"归仁区",
"address_name":"归仁区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"关庙区",
"address_name":"关庙区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"龙崎区",
"address_name":"龙崎区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"新化区",
"address_name":"新化区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"左镇区",
"address_name":"左镇区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"南化区",
"address_name":"南化区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"玉井区",
"address_name":"玉井区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"山上区",
"address_name":"山上区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"楠西区",
"address_name":"楠西区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"新市区",
"address_name":"新市区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安定区",
"address_name":"安定区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"西港区",
"address_name":"西港区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"佳里区",
"address_name":"佳里区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"大内区",
"address_name":"大内区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"善化区",
"address_name":"善化区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"官田区",
"address_name":"官田区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"六甲区",
"address_name":"六甲区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"东山区",
"address_name":"东山区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"柳营区",
"address_name":"柳营区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"白河区",
"address_name":"白河区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"后壁区",
"address_name":"后壁区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"新营区",
"address_name":"新营区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"下营区",
"address_name":"下营区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"麻豆区",
"address_name":"麻豆区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"学甲区",
"address_name":"学甲区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"北门区",
"address_name":"北门区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"南区",
"address_name":"南区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安平区",
"address_name":"安平区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安南区",
"address_name":"安南区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"七股区",
"address_name":"七股区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"将军区",
"address_name":"将军区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"学甲区",
"address_name":"学甲区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"北门区",
"address_name":"北门区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"南区",
"address_name":"南区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安平区",
"address_name":"安平区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安南区",
"address_name":"安南区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"七股区",
"address_name":"七股区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"将军区",
"address_name":"将军区",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"湖内区",
"address_name":"湖内区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"内门区",
"address_name":"内门区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"桃源区",
"address_name":"桃源区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"凤山区",
"address_name":"凤山区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"前金区",
"address_name":"前金区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"新兴区",
"address_name":"新兴区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"三民区",
"address_name":"三民区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"鸟松区",
"address_name":"鸟松区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"大寮区",
"address_name":"大寮区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"仁武区",
"address_name":"仁武区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"大社区",
"address_name":"大社区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"冈山区",
"address_name":"冈山区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"桥头区",
"address_name":"桥头区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"燕巢区",
"address_name":"燕巢区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"大树区",
"address_name":"大树区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"路竹区",
"address_name":"路竹区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"阿莲区",
"address_name":"阿莲区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"田寮区",
"address_name":"田寮区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"旗山区",
"address_name":"旗山区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"美浓区",
"address_name":"美浓区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"杉林区",
"address_name":"杉林区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"茂林区",
"address_name":"茂林区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"甲仙区",
"address_name":"甲仙区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"六龟区",
"address_name":"六龟区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"那玛夏区",
"address_name":"那玛夏区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"旗津区",
"address_name":"旗津区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"盐埕区",
"address_name":"盐埕区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"林园区",
"address_name":"林园区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"小港区",
"address_name":"小港区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"前镇区",
"address_name":"前镇区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"苓雅区",
"address_name":"苓雅区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"鼓山区",
"address_name":"鼓山区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"左营区",
"address_name":"左营区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"楠梓区",
"address_name":"楠梓区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"梓官区",
"address_name":"梓官区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"弥陀区",
"address_name":"弥陀区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"永安区",
"address_name":"永安区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"茄萣区",
"address_name":"茄萣区",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"暖暖区",
"address_name":"暖暖区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"七堵区",
"address_name":"七堵区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"中山区",
"address_name":"中山区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"仁爱区",
"address_name":"仁爱区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"信义区",
"address_name":"信义区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"安乐区",
"address_name":"安乐区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"中正区",
"address_name":"中正区",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"东区",
"address_name":"东区",
"father_id":412,
"highest_father_id":34,
"level":3,
"city_code":"719002"
},
{
"name":"北区",
"address_name":"北区",
"father_id":412,
"highest_father_id":34,
"level":3,
"city_code":"719002"
},
{
"name":"香山区",
"address_name":"香山区",
"father_id":412,
"highest_father_id":34,
"level":3,
"city_code":"719002"
},
{
"name":"东区",
"address_name":"东区",
"father_id":413,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"西区",
"address_name":"西区",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"五峰乡",
"address_name":"五峰乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"尖石乡",
"address_name":"尖石乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"峨眉乡",
"address_name":"峨眉乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"北埔乡",
"address_name":"北埔乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"宝山乡",
"address_name":"宝山乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"竹东镇",
"address_name":"竹东镇",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"横山乡",
"address_name":"横山乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"芎林乡",
"address_name":"芎林乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"关西镇",
"address_name":"关西镇",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"新埔镇",
"address_name":"新埔镇",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"湖口乡",
"address_name":"湖口乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"新丰乡",
"address_name":"新丰乡",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"竹北市",
"address_name":"竹北市",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"冬山乡",
"address_name":"冬山乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"罗东镇",
"address_name":"罗东镇",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"三星乡",
"address_name":"三星乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"员山乡",
"address_name":"员山乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"礁溪乡",
"address_name":"礁溪乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"宜兰市",
"address_name":"宜兰市",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"大同乡",
"address_name":"大同乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"头城镇",
"address_name":"头城镇",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"南澳乡",
"address_name":"南澳乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"苏澳镇",
"address_name":"苏澳镇",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"五结乡",
"address_name":"五结乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"壮围乡",
"address_name":"壮围乡",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"花瓶屿",
"address_name":"花瓶屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"棉花屿",
"address_name":"棉花屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"钓鱼岛",
"address_name":"钓鱼岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"彭佳屿",
"address_name":"彭佳屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"黄尾屿",
"address_name":"黄尾屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"南小岛",
"address_name":"南小岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"小元宝岛",
"address_name":"小元宝岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"北小岛",
"address_name":"北小岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"赤尾屿",
"address_name":"赤尾屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"南屿",
"address_name":"南屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"冲南岩",
"address_name":"冲南岩",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"基隆屿",
"address_name":"基隆屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"元宝岛",
"address_name":"元宝岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"飞云岛",
"address_name":"飞云岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"北屿仔岛",
"address_name":"北屿仔岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"大黄鱼岛",
"address_name":"大黄鱼岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"鲳鱼岛",
"address_name":"鲳鱼岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"龙头鱼岛",
"address_name":"龙头鱼岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"黄姑鱼岛",
"address_name":"黄姑鱼岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"龙王鲷东岛",
"address_name":"龙王鲷东岛",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"北屿",
"address_name":"北屿",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"冲北岩",
"address_name":"冲北岩",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"卓兰镇",
"address_name":"卓兰镇",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"大湖乡",
"address_name":"大湖乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"三义乡",
"address_name":"三义乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"铜锣乡",
"address_name":"铜锣乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"苑里镇",
"address_name":"苑里镇",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"西湖乡",
"address_name":"西湖乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"苗栗市",
"address_name":"苗栗市",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"公馆乡",
"address_name":"公馆乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"头屋乡",
"address_name":"头屋乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"造桥乡",
"address_name":"造桥乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"狮潭乡",
"address_name":"狮潭乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"泰安乡",
"address_name":"泰安乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"南庄乡",
"address_name":"南庄乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"三湾乡",
"address_name":"三湾乡",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"头份镇",
"address_name":"头份镇",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"竹南镇",
"address_name":"竹南镇",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"后龙镇",
"address_name":"后龙镇",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"通霄镇",
"address_name":"通霄镇",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"彰化市",
"address_name":"彰化市",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"竹塘乡",
"address_name":"竹塘乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"溪州乡",
"address_name":"溪州乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"二水乡",
"address_name":"二水乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"田中镇",
"address_name":"田中镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"北斗镇",
"address_name":"北斗镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"埤头乡",
"address_name":"埤头乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"二林镇",
"address_name":"二林镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"社头乡",
"address_name":"社头乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"员林镇",
"address_name":"员林镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"大村乡",
"address_name":"大村乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"田尾乡",
"address_name":"田尾乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"永靖乡",
"address_name":"永靖乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"埔心乡",
"address_name":"埔心乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"溪湖镇",
"address_name":"溪湖镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"埔盐乡",
"address_name":"埔盐乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"花坛乡",
"address_name":"花坛乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"秀水乡",
"address_name":"秀水乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"芬园乡",
"address_name":"芬园乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"和美镇",
"address_name":"和美镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"伸港乡",
"address_name":"伸港乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"大城乡",
"address_name":"大城乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"芳苑乡",
"address_name":"芳苑乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"福兴乡",
"address_name":"福兴乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"鹿港镇",
"address_name":"鹿港镇",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"线西乡",
"address_name":"线西乡",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"古坑乡",
"address_name":"古坑乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"东势乡",
"address_name":"东势乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"水林乡",
"address_name":"水林乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"北港镇",
"address_name":"北港镇",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"大埤乡",
"address_name":"大埤乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"褒忠乡",
"address_name":"褒忠乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"仑背乡",
"address_name":"仑背乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"土库镇",
"address_name":"土库镇",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"二仑乡",
"address_name":"二仑乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"虎尾镇",
"address_name":"虎尾镇",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"西螺镇",
"address_name":"西螺镇",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"莿桐乡",
"address_name":"莿桐乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"斗南镇",
"address_name":"斗南镇",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"斗六市",
"address_name":"斗六市",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"元长乡",
"address_name":"元长乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"林内乡",
"address_name":"林内乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"口湖乡",
"address_name":"口湖乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"四湖乡",
"address_name":"四湖乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"麦寮乡",
"address_name":"麦寮乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"台西乡",
"address_name":"台西乡",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"草屯镇",
"address_name":"草屯镇",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"埔里镇",
"address_name":"埔里镇",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"仁爱乡",
"address_name":"仁爱乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"信义乡",
"address_name":"信义乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"竹山镇",
"address_name":"竹山镇",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"名间乡",
"address_name":"名间乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"南投市",
"address_name":"南投市",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"鹿谷乡",
"address_name":"鹿谷乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"水里乡",
"address_name":"水里乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"集集镇",
"address_name":"集集镇",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"中寮乡",
"address_name":"中寮乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"国姓乡",
"address_name":"国姓乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"鱼池乡",
"address_name":"鱼池乡",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"东区",
"address_name":"东区",
"father_id":420,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"西区",
"address_name":"西区",
"father_id":420,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"雾台乡",
"address_name":"雾台乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"狮子乡",
"address_name":"狮子乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"春日乡",
"address_name":"春日乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"来义乡",
"address_name":"来义乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"新埤乡",
"address_name":"新埤乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"南州乡",
"address_name":"南州乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"崁顶乡",
"address_name":"崁顶乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"万丹乡",
"address_name":"万丹乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"潮州镇",
"address_name":"潮州镇",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"竹田乡",
"address_name":"竹田乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"万峦乡",
"address_name":"万峦乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"泰武乡",
"address_name":"泰武乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"九如乡",
"address_name":"九如乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"屏东市",
"address_name":"屏东市",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"麟洛乡",
"address_name":"麟洛乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"内埔乡",
"address_name":"内埔乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"长治乡",
"address_name":"长治乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"玛家乡",
"address_name":"玛家乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"里港乡",
"address_name":"里港乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"盐埔乡",
"address_name":"盐埔乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"高树乡",
"address_name":"高树乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"三地门乡",
"address_name":"三地门乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"恒春镇",
"address_name":"恒春镇",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"车城乡",
"address_name":"车城乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"满州乡",
"address_name":"满州乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"牡丹乡",
"address_name":"牡丹乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"枋山乡",
"address_name":"枋山乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"东港镇",
"address_name":"东港镇",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"林边乡",
"address_name":"林边乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"佳冬乡",
"address_name":"佳冬乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"枋寮乡",
"address_name":"枋寮乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"新园乡",
"address_name":"新园乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"琉球乡",
"address_name":"琉球乡",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"海端乡",
"address_name":"海端乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"绿岛乡",
"address_name":"绿岛乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"金峰乡",
"address_name":"金峰乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"延平乡",
"address_name":"延平乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"鹿野乡",
"address_name":"鹿野乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"关山镇",
"address_name":"关山镇",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"池上乡",
"address_name":"池上乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"兰屿乡",
"address_name":"兰屿乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"东河乡",
"address_name":"东河乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"长滨乡",
"address_name":"长滨乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"太麻里乡",
"address_name":"太麻里乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"大武乡",
"address_name":"大武乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"达仁乡",
"address_name":"达仁乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"台东市",
"address_name":"台东市",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"卑南乡",
"address_name":"卑南乡",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"成功镇",
"address_name":"成功镇",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"卓溪乡",
"address_name":"卓溪乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"玉里镇",
"address_name":"玉里镇",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"富里乡",
"address_name":"富里乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"瑞穗乡",
"address_name":"瑞穗乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"光复乡",
"address_name":"光复乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"凤林镇",
"address_name":"凤林镇",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"万荣乡",
"address_name":"万荣乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"秀林乡",
"address_name":"秀林乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"丰滨乡",
"address_name":"丰滨乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"寿丰乡",
"address_name":"寿丰乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"吉安乡",
"address_name":"吉安乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"花莲市",
"address_name":"花莲市",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"新城乡",
"address_name":"新城乡",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"西屿乡",
"address_name":"西屿乡",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"湖西乡",
"address_name":"湖西乡",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"马公市",
"address_name":"马公市",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"白沙乡",
"address_name":"白沙乡",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"望安乡",
"address_name":"望安乡",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"七美乡",
"address_name":"七美乡",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
}
]

2021全国省市区行政区划数据接口相关推荐

  1. 奥维查看行政边界_全国乡镇行政区划数据乡镇边界数据查询获取方式

    原标题:全国乡镇行政区划数据乡镇边界数据查询获取方式 北京揽宇方圆信息技术有限公司提供全国遥感影像数据,全国乡镇行政区划数据,是结合野外实测资料,同时参照有关地理图件,采用人机交互的方式开展行政区划地 ...

  2. 全国天气预报信息数据接口 API

    全国天气预报信息数据接口 API,精确到行政区的7日天气预报 日4次数据更新 / 小时级天气预报. 产品功能 全国天气预报每隔 6 小时更新数据: 精确到行政区级别的天气预报数据: 提供最长 7 天的 ...

  3. 福利,《2021全国交通大数据行业应用报告》发布,限时免费领取纸质版

    <2021全国交通大数据行业应用报告>是数据宝在交通大数据领域的系列研究报告,从2020年开始已经连续2年发布.点击这里,这里,限时免费领取纸质版<2021全国交通大数据行业应用报告 ...

  4. php获取全国最新省市区行政区划数据

    首先打开网址http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/201608/t20160809_1386477.html,这是国家统计局发布最新省市区行政区划代码,这是 ...

  5. 全国省市区JSON数据-转

    版权声明:本文为CSDN博主「PJ-ZH」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明. 原文链接:https://blog.csdn.net/zhouhaisun ...

  6. 从高德上同步省市区行政区划数据到本地数据库demo

      本地数据库表结构: create table tbl_sys_area_bak (id int not nullprimary key,parent_ids varchar(255) null c ...

  7. 分析界面,在全国公共资源交易平台使用java获取全国的招投标数据接口

    任务:获取全国的建筑招投标数据信息,并打开界面获取详情页抓取html保存至本地. 打开网址地址,进行网页分析. 2.获取省市区联动,在控制台并没有发现任何往后台获取省市区联动的信息,怀疑是在js里写死 ...

  8. 解析全国省市区Json数据

    最近在使用项目中的区域表时,发现了有区域缺失的情况,于是找了个较新的省市区数据来解析更新到区域表中. 数据来源:https://blog.csdn.net/supergao222/article/de ...

  9. 全国省市区json数据

    {"110000": {"name": "北京市","child": {"110100": {&qu ...

最新文章

  1. apicloud ajax html,基于apicloudAJAX请求代码合集
  2. 密码统计分析工具pipal
  3. Android --- 很好用的时间选择器
  4. 伯明顿分校计算机研究生专业,印第安纳大学伯明顿分校计算机科学硕士专业申请条件及申请材料...
  5. source insight 4.0 括号尾部提醒 及 常用快捷键
  6. 计算机图形学真实感显示代码,计算机图形学实验 - 真实感图形场景的生成
  7. aws lambda_跑来跑去:假人与AWS Lambda的第一次接触
  8. Oracle 数据怎么实时同步到 PgSQL | 亲测干货分享建议收藏
  9. mysql的sql优化工具下载_MySQL SQL查询优化工具EverSQL
  10. html5表单与Jquery Ajax结合使用
  11. HDU 2604 Queuing( 递推关系 + 矩阵快速幂 )
  12. 地温梯度 河南_河南省地热(温泉)分布规律
  13. 软件工程经济学结课报告——兰花智慧大棚监控系统可行性研究报告
  14. 动态逆序对:CDQ分治
  15. 1068 万绿丛中一点红
  16. ORAN C平面 Section Type 7
  17. NR 5G 5G-GUTI解读
  18. 优质短视频内容有哪些特质?不要迷信爆款,通俗易懂很重要
  19. 计算机ncre教材,ncre教材
  20. 计算机网怎样连接网络连接不上,网络连接不上,详细教您电脑网络连接不上怎么解决...

热门文章

  1. 目前业界几款主流的消息中间件对比
  2. 主成分分析法 (PCA) 用于数据可视化实验 -- Matlab版
  3. ManageEngine卓豪助您符合ISO 20000标准(二)
  4. WordPress自定义简码制作写法
  5. 网络聊天软件现状及展望
  6. 从玩客云到文件传输协议TCFS,迅雷的区块链平台野心
  7. 普通网红如何打造个人IP?个人IP打造有哪些注意事项?
  8. Ubuntu9.04安装小记,无图有真相
  9. 计算机网络专业土味情话,大学生新兵写给军营的“土味情话”,请各专业对号入座!...
  10. android播放gif动画控件(例子)