api是高德地圖官方的,其中臺(tái)灣省,市區(qū)行政區(qū)劃數(shù)據(jù)沒有提供,文末有我從別處整理了json數(shù)據(jù)。
public function setAddressFather(){$province = [];$provinceCount = 0;$city = [];$cityCount = 34;$district = [];$pro = ["北京","天津","河北省","山西","內(nèi)蒙古","遼寧","吉林","黑龍江","上海","江蘇","浙江","安徽","福建","江西","山東","河南","湖北","湖南","廣東","廣西","海南省","重慶","四川","貴州","云南","西藏","陜西","甘肅","青海","寧夏","新疆","香港","澳門","臺(tái)灣"];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 == "臺(tái)灣"){$TaiwanCity = [["name" => "臺(tái)北市","address_name" => "臺(tái)北市","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" => "臺(tái)中市","address_name" => "臺(tái)中市","father_id" => $provinceCount,"highest_father_id" => $provinceCount,"level" => 2,"city_code" => "710400",],["name" => "臺(tái)南市","address_name" => "臺(tái)南市","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" => "臺(tái)東縣","address_name" => "臺(tái)東縣","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請(qǐng)求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;}
臺(tái)灣省行政區(qū)劃json數(shù)據(jù),與上面api獲取的數(shù)據(jù)合并就可以了
?
[
{
"name":"臺(tái)北市",
"address_name":"臺(tái)北市",
"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":"臺(tái)中市",
"address_name":"臺(tái)中市",
"father_id":34,
"highest_father_id":34,
"level":2,
"city_code":"710400"
},
{
"name":"臺(tái)南市",
"address_name":"臺(tái)南市",
"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":"臺(tái)東縣",
"address_name":"臺(tái)東縣",
"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":"大同區(qū)",
"address_name":"大同區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"大安區(qū)",
"address_name":"大安區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"北投區(qū)",
"address_name":"北投區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"中山區(qū)",
"address_name":"中山區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"信義區(qū)",
"address_name":"信義區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"文山區(qū)",
"address_name":"文山區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"南港區(qū)",
"address_name":"南港區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"中正區(qū)",
"address_name":"中正區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"萬華區(qū)",
"address_name":"萬華區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"士林區(qū)",
"address_name":"士林區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"內(nèi)湖區(qū)",
"address_name":"內(nèi)湖區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"松山區(qū)",
"address_name":"松山區(qū)",
"father_id":405,
"highest_father_id":34,
"level":3,
"city_code":"710100"
},
{
"name":"深坑區(qū)",
"address_name":"深坑區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"三重區(qū)",
"address_name":"三重區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"永和區(qū)",
"address_name":"永和區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"泰山區(qū)",
"address_name":"泰山區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"新店區(qū)",
"address_name":"新店區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"坪林區(qū)",
"address_name":"坪林區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"雙溪區(qū)",
"address_name":"雙溪區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"平溪區(qū)",
"address_name":"平溪區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"烏來區(qū)",
"address_name":"烏來區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"石碇區(qū)",
"address_name":"石碇區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"汐止區(qū)",
"address_name":"汐止區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"鶯歌區(qū)",
"address_name":"鶯歌區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"三峽區(qū)",
"address_name":"三峽區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"新莊區(qū)",
"address_name":"新莊區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"樹林區(qū)",
"address_name":"樹林區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"蘆洲區(qū)",
"address_name":"蘆洲區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"土城區(qū)",
"address_name":"土城區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"五股區(qū)",
"address_name":"五股區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"中和區(qū)",
"address_name":"中和區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"板橋區(qū)",
"address_name":"板橋區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"三芝區(qū)",
"address_name":"三芝區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"瑞芳區(qū)",
"address_name":"瑞芳區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"淡水區(qū)",
"address_name":"淡水區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"萬里區(qū)",
"address_name":"萬里區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"八里區(qū)",
"address_name":"八里區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"林口區(qū)",
"address_name":"林口區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"石門區(qū)",
"address_name":"石門區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"金山區(qū)",
"address_name":"金山區(qū)",
"father_id":406,
"highest_father_id":34,
"level":3,
"city_code":"710300"
},
{
"name":"貢寮區(qū)",
"address_name":"貢寮區(qū)",
"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":"復(fù)興鄉(xiāng)",
"address_name":"復(fù)興鄉(xiāng)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"龍?zhí)多l(xiāng)",
"address_name":"龍?zhí)多l(xiāng)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"桃園區(qū)",
"address_name":"桃園區(qū)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"龜山鄉(xiāng)",
"address_name":"龜山鄉(xiāng)",
"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":"平鎮(zhèn)市",
"address_name":"平鎮(zhèn)市",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"大溪鎮(zhèn)",
"address_name":"大溪鎮(zhèn)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"蘆竹鄉(xiāng)",
"address_name":"蘆竹鄉(xiāng)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"觀音鄉(xiāng)",
"address_name":"觀音鄉(xiāng)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"大園鄉(xiāng)",
"address_name":"大園鄉(xiāng)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"新屋鄉(xiāng)",
"address_name":"新屋鄉(xiāng)",
"father_id":407,
"highest_father_id":34,
"level":3,
"city_code":"710600"
},
{
"name":"中區(qū)",
"address_name":"中區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"南屯區(qū)",
"address_name":"南屯區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"外埔區(qū)",
"address_name":"外埔區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"石岡區(qū)",
"address_name":"石岡區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"和平區(qū)",
"address_name":"和平區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"新社區(qū)",
"address_name":"新社區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"太平區(qū)",
"address_name":"太平區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"潭子區(qū)",
"address_name":"潭子區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"北區(qū)",
"address_name":"北區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"東區(qū)",
"address_name":"東區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"南區(qū)",
"address_name":"南區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大肚區(qū)",
"address_name":"大肚區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"沙鹿區(qū)",
"address_name":"沙鹿區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大雅區(qū)",
"address_name":"大雅區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大里區(qū)",
"address_name":"大里區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"東勢(shì)區(qū)",
"address_name":"東勢(shì)區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"后里區(qū)",
"address_name":"后里區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"西區(qū)",
"address_name":"西區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"豐原區(qū)",
"address_name":"豐原區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"霧峰區(qū)",
"address_name":"霧峰區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"神岡區(qū)",
"address_name":"神岡區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"北屯區(qū)",
"address_name":"北屯區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"西屯區(qū)",
"address_name":"西屯區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"烏日區(qū)",
"address_name":"烏日區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大甲區(qū)",
"address_name":"大甲區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"大安區(qū)",
"address_name":"大安區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"梧棲區(qū)",
"address_name":"梧棲區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"清水區(qū)",
"address_name":"清水區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"龍井區(qū)",
"address_name":"龍井區(qū)",
"father_id":408,
"highest_father_id":34,
"level":3,
"city_code":"710400"
},
{
"name":"鹽水區(qū)",
"address_name":"鹽水區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"東區(qū)",
"address_name":"東區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"中西區(qū)",
"address_name":"中西區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"仁德區(qū)",
"address_name":"仁德區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"北區(qū)",
"address_name":"北區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"永康區(qū)",
"address_name":"永康區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"歸仁區(qū)",
"address_name":"歸仁區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"關(guān)廟區(qū)",
"address_name":"關(guān)廟區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"龍崎區(qū)",
"address_name":"龍崎區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"新化區(qū)",
"address_name":"新化區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"左鎮(zhèn)區(qū)",
"address_name":"左鎮(zhèn)區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"南化區(qū)",
"address_name":"南化區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"玉井區(qū)",
"address_name":"玉井區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"山上區(qū)",
"address_name":"山上區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"楠西區(qū)",
"address_name":"楠西區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"新市區(qū)",
"address_name":"新市區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安定區(qū)",
"address_name":"安定區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"西港區(qū)",
"address_name":"西港區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"佳里區(qū)",
"address_name":"佳里區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"大內(nèi)區(qū)",
"address_name":"大內(nèi)區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"善化區(qū)",
"address_name":"善化區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"官田區(qū)",
"address_name":"官田區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"六甲區(qū)",
"address_name":"六甲區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"東山區(qū)",
"address_name":"東山區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"柳營區(qū)",
"address_name":"柳營區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"白河區(qū)",
"address_name":"白河區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"后壁區(qū)",
"address_name":"后壁區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"新營區(qū)",
"address_name":"新營區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"下營區(qū)",
"address_name":"下營區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"麻豆區(qū)",
"address_name":"麻豆區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"學(xué)甲區(qū)",
"address_name":"學(xué)甲區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"北門區(qū)",
"address_name":"北門區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"南區(qū)",
"address_name":"南區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安平區(qū)",
"address_name":"安平區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安南區(qū)",
"address_name":"安南區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"七股區(qū)",
"address_name":"七股區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"將軍區(qū)",
"address_name":"將軍區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"學(xué)甲區(qū)",
"address_name":"學(xué)甲區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"北門區(qū)",
"address_name":"北門區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"南區(qū)",
"address_name":"南區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安平區(qū)",
"address_name":"安平區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"安南區(qū)",
"address_name":"安南區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"七股區(qū)",
"address_name":"七股區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"將軍區(qū)",
"address_name":"將軍區(qū)",
"father_id":409,
"highest_father_id":34,
"level":3,
"city_code":"710500"
},
{
"name":"湖內(nèi)區(qū)",
"address_name":"湖內(nèi)區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"內(nèi)門區(qū)",
"address_name":"內(nèi)門區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"桃源區(qū)",
"address_name":"桃源區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"鳳山區(qū)",
"address_name":"鳳山區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"前金區(qū)",
"address_name":"前金區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"新興區(qū)",
"address_name":"新興區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"三民區(qū)",
"address_name":"三民區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"鳥松區(qū)",
"address_name":"鳥松區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"大寮區(qū)",
"address_name":"大寮區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"仁武區(qū)",
"address_name":"仁武區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"大社區(qū)",
"address_name":"大社區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"岡山區(qū)",
"address_name":"岡山區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"橋頭區(qū)",
"address_name":"橋頭區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"燕巢區(qū)",
"address_name":"燕巢區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"大樹區(qū)",
"address_name":"大樹區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"路竹區(qū)",
"address_name":"路竹區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"阿蓮區(qū)",
"address_name":"阿蓮區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"田寮區(qū)",
"address_name":"田寮區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"旗山區(qū)",
"address_name":"旗山區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"美濃區(qū)",
"address_name":"美濃區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"杉林區(qū)",
"address_name":"杉林區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"茂林區(qū)",
"address_name":"茂林區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"甲仙區(qū)",
"address_name":"甲仙區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"六龜區(qū)",
"address_name":"六龜區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"那瑪夏區(qū)",
"address_name":"那瑪夏區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"旗津區(qū)",
"address_name":"旗津區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"鹽埕區(qū)",
"address_name":"鹽埕區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"林園區(qū)",
"address_name":"林園區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"小港區(qū)",
"address_name":"小港區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"前鎮(zhèn)區(qū)",
"address_name":"前鎮(zhèn)區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"苓雅區(qū)",
"address_name":"苓雅區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"鼓山區(qū)",
"address_name":"鼓山區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"左營區(qū)",
"address_name":"左營區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"楠梓區(qū)",
"address_name":"楠梓區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"梓官區(qū)",
"address_name":"梓官區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"彌陀區(qū)",
"address_name":"彌陀區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"永安區(qū)",
"address_name":"永安區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"茄萣區(qū)",
"address_name":"茄萣區(qū)",
"father_id":410,
"highest_father_id":34,
"level":3,
"city_code":"710200"
},
{
"name":"暖暖區(qū)",
"address_name":"暖暖區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"七堵區(qū)",
"address_name":"七堵區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"中山區(qū)",
"address_name":"中山區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"仁愛區(qū)",
"address_name":"仁愛區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"信義區(qū)",
"address_name":"信義區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"安樂區(qū)",
"address_name":"安樂區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"中正區(qū)",
"address_name":"中正區(qū)",
"father_id":411,
"highest_father_id":34,
"level":3,
"city_code":"719001"
},
{
"name":"東區(qū)",
"address_name":"東區(qū)",
"father_id":412,
"highest_father_id":34,
"level":3,
"city_code":"719002"
},
{
"name":"北區(qū)",
"address_name":"北區(qū)",
"father_id":412,
"highest_father_id":34,
"level":3,
"city_code":"719002"
},
{
"name":"香山區(qū)",
"address_name":"香山區(qū)",
"father_id":412,
"highest_father_id":34,
"level":3,
"city_code":"719002"
},
{
"name":"東區(qū)",
"address_name":"東區(qū)",
"father_id":413,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"西區(qū)",
"address_name":"西區(qū)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"五峰鄉(xiāng)",
"address_name":"五峰鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"尖石鄉(xiāng)",
"address_name":"尖石鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"峨眉鄉(xiāng)",
"address_name":"峨眉鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"北埔鄉(xiāng)",
"address_name":"北埔鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"寶山鄉(xiāng)",
"address_name":"寶山鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"竹東鎮(zhèn)",
"address_name":"竹東鎮(zhèn)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"橫山鄉(xiāng)",
"address_name":"橫山鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"芎林鄉(xiāng)",
"address_name":"芎林鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"關(guān)西鎮(zhèn)",
"address_name":"關(guān)西鎮(zhèn)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"新埔鎮(zhèn)",
"address_name":"新埔鎮(zhèn)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"湖口鄉(xiāng)",
"address_name":"湖口鄉(xiāng)",
"father_id":414,
"highest_father_id":34,
"level":3,
"city_code":"719004"
},
{
"name":"新豐鄉(xiāng)",
"address_name":"新豐鄉(xiāng)",
"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":"冬山鄉(xiāng)",
"address_name":"冬山鄉(xiāng)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"羅東鎮(zhèn)",
"address_name":"羅東鎮(zhèn)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"三星鄉(xiāng)",
"address_name":"三星鄉(xiāng)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"員山鄉(xiāng)",
"address_name":"員山鄉(xiāng)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"礁溪鄉(xiāng)",
"address_name":"礁溪鄉(xiāng)",
"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":"大同鄉(xiāng)",
"address_name":"大同鄉(xiāng)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"頭城鎮(zhèn)",
"address_name":"頭城鎮(zhèn)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"南澳鄉(xiāng)",
"address_name":"南澳鄉(xiāng)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"蘇澳鎮(zhèn)",
"address_name":"蘇澳鎮(zhèn)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"五結(jié)鄉(xiāng)",
"address_name":"五結(jié)鄉(xiāng)",
"father_id":415,
"highest_father_id":34,
"level":3,
"city_code":"719005"
},
{
"name":"壯圍鄉(xiāng)",
"address_name":"壯圍鄉(xiāng)",
"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":"卓蘭鎮(zhèn)",
"address_name":"卓蘭鎮(zhèn)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"大湖鄉(xiāng)",
"address_name":"大湖鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"三義鄉(xiāng)",
"address_name":"三義鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"銅鑼鄉(xiāng)",
"address_name":"銅鑼鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"苑里鎮(zhèn)",
"address_name":"苑里鎮(zhèn)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"西湖鄉(xiāng)",
"address_name":"西湖鄉(xiāng)",
"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":"公館鄉(xiāng)",
"address_name":"公館鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"頭屋鄉(xiāng)",
"address_name":"頭屋鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"造橋鄉(xiāng)",
"address_name":"造橋鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"獅潭鄉(xiāng)",
"address_name":"獅潭鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"泰安鄉(xiāng)",
"address_name":"泰安鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"南莊鄉(xiāng)",
"address_name":"南莊鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"三灣鄉(xiāng)",
"address_name":"三灣鄉(xiāng)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"頭份鎮(zhèn)",
"address_name":"頭份鎮(zhèn)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"竹南鎮(zhèn)",
"address_name":"竹南鎮(zhèn)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"后龍鎮(zhèn)",
"address_name":"后龍鎮(zhèn)",
"father_id":416,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"通霄鎮(zhèn)",
"address_name":"通霄鎮(zhèn)",
"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":"竹塘鄉(xiāng)",
"address_name":"竹塘鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"溪州鄉(xiāng)",
"address_name":"溪州鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"二水鄉(xiāng)",
"address_name":"二水鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"田中鎮(zhèn)",
"address_name":"田中鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"北斗鎮(zhèn)",
"address_name":"北斗鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"埤頭鄉(xiāng)",
"address_name":"埤頭鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"二林鎮(zhèn)",
"address_name":"二林鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"社頭鄉(xiāng)",
"address_name":"社頭鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"員林鎮(zhèn)",
"address_name":"員林鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"大村鄉(xiāng)",
"address_name":"大村鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"田尾鄉(xiāng)",
"address_name":"田尾鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"永靖鄉(xiāng)",
"address_name":"永靖鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"埔心鄉(xiāng)",
"address_name":"埔心鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"溪湖鎮(zhèn)",
"address_name":"溪湖鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"埔鹽鄉(xiāng)",
"address_name":"埔鹽鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719006"
},
{
"name":"花壇鄉(xiāng)",
"address_name":"花壇鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"秀水鄉(xiāng)",
"address_name":"秀水鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"芬園鄉(xiāng)",
"address_name":"芬園鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"和美鎮(zhèn)",
"address_name":"和美鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"伸港鄉(xiāng)",
"address_name":"伸港鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"大城鄉(xiāng)",
"address_name":"大城鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"芳苑鄉(xiāng)",
"address_name":"芳苑鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"福興鄉(xiāng)",
"address_name":"福興鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"鹿港鎮(zhèn)",
"address_name":"鹿港鎮(zhèn)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"線西鄉(xiāng)",
"address_name":"線西鄉(xiāng)",
"father_id":417,
"highest_father_id":34,
"level":3,
"city_code":"719007"
},
{
"name":"古坑鄉(xiāng)",
"address_name":"古坑鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"東勢(shì)鄉(xiāng)",
"address_name":"東勢(shì)鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"水林鄉(xiāng)",
"address_name":"水林鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"北港鎮(zhèn)",
"address_name":"北港鎮(zhèn)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"大埤鄉(xiāng)",
"address_name":"大埤鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"褒忠鄉(xiāng)",
"address_name":"褒忠鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"侖背鄉(xiāng)",
"address_name":"侖背鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"土庫鎮(zhèn)",
"address_name":"土庫鎮(zhèn)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"二侖鄉(xiāng)",
"address_name":"二侖鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"虎尾鎮(zhèn)",
"address_name":"虎尾鎮(zhèn)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"西螺鎮(zhèn)",
"address_name":"西螺鎮(zhèn)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"莿桐鄉(xiāng)",
"address_name":"莿桐鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"斗南鎮(zhèn)",
"address_name":"斗南鎮(zhèn)",
"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":"元長(zhǎng)鄉(xiāng)",
"address_name":"元長(zhǎng)鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"林內(nèi)鄉(xiāng)",
"address_name":"林內(nèi)鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"口湖鄉(xiāng)",
"address_name":"口湖鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"四湖鄉(xiāng)",
"address_name":"四湖鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"麥寮鄉(xiāng)",
"address_name":"麥寮鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"臺(tái)西鄉(xiāng)",
"address_name":"臺(tái)西鄉(xiāng)",
"father_id":418,
"highest_father_id":34,
"level":3,
"city_code":"719008"
},
{
"name":"草屯鎮(zhèn)",
"address_name":"草屯鎮(zhèn)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"埔里鎮(zhèn)",
"address_name":"埔里鎮(zhèn)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"仁愛鄉(xiāng)",
"address_name":"仁愛鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"信義鄉(xiāng)",
"address_name":"信義鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"竹山鎮(zhèn)",
"address_name":"竹山鎮(zhèn)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"名間鄉(xiāng)",
"address_name":"名間鄉(xiāng)",
"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":"鹿谷鄉(xiāng)",
"address_name":"鹿谷鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"水里鄉(xiāng)",
"address_name":"水里鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"集集鎮(zhèn)",
"address_name":"集集鎮(zhèn)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"中寮鄉(xiāng)",
"address_name":"中寮鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"國姓鄉(xiāng)",
"address_name":"國姓鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"魚池鄉(xiāng)",
"address_name":"魚池鄉(xiāng)",
"father_id":419,
"highest_father_id":34,
"level":3,
"city_code":"719009"
},
{
"name":"東區(qū)",
"address_name":"東區(qū)",
"father_id":420,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"西區(qū)",
"address_name":"西區(qū)",
"father_id":420,
"highest_father_id":34,
"level":3,
"city_code":"719003"
},
{
"name":"霧臺(tái)鄉(xiāng)",
"address_name":"霧臺(tái)鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"獅子鄉(xiāng)",
"address_name":"獅子鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"春日鄉(xiāng)",
"address_name":"春日鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"來義鄉(xiāng)",
"address_name":"來義鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"新埤鄉(xiāng)",
"address_name":"新埤鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"南州鄉(xiāng)",
"address_name":"南州鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"崁頂鄉(xiāng)",
"address_name":"崁頂鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"萬丹鄉(xiāng)",
"address_name":"萬丹鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"潮州鎮(zhèn)",
"address_name":"潮州鎮(zhèn)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"竹田鄉(xiāng)",
"address_name":"竹田鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"萬巒鄉(xiāng)",
"address_name":"萬巒鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"泰武鄉(xiāng)",
"address_name":"泰武鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"九如鄉(xiāng)",
"address_name":"九如鄉(xiāng)",
"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":"麟洛鄉(xiāng)",
"address_name":"麟洛鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"內(nèi)埔鄉(xiāng)",
"address_name":"內(nèi)埔鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"長(zhǎng)治鄉(xiāng)",
"address_name":"長(zhǎng)治鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"瑪家鄉(xiāng)",
"address_name":"瑪家鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"里港鄉(xiāng)",
"address_name":"里港鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"鹽埔鄉(xiāng)",
"address_name":"鹽埔鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"高樹鄉(xiāng)",
"address_name":"高樹鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"三地門鄉(xiāng)",
"address_name":"三地門鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"恒春鎮(zhèn)",
"address_name":"恒春鎮(zhèn)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"車城鄉(xiāng)",
"address_name":"車城鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"滿州鄉(xiāng)",
"address_name":"滿州鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"牡丹鄉(xiāng)",
"address_name":"牡丹鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"枋山鄉(xiāng)",
"address_name":"枋山鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"東港鎮(zhèn)",
"address_name":"東港鎮(zhèn)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"林邊鄉(xiāng)",
"address_name":"林邊鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"佳冬鄉(xiāng)",
"address_name":"佳冬鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"枋寮鄉(xiāng)",
"address_name":"枋寮鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"新園鄉(xiāng)",
"address_name":"新園鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"琉球鄉(xiāng)",
"address_name":"琉球鄉(xiāng)",
"father_id":421,
"highest_father_id":34,
"level":3,
"city_code":"719011"
},
{
"name":"海端鄉(xiāng)",
"address_name":"海端鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"綠島鄉(xiāng)",
"address_name":"綠島鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"金峰鄉(xiāng)",
"address_name":"金峰鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"延平鄉(xiāng)",
"address_name":"延平鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"鹿野鄉(xiāng)",
"address_name":"鹿野鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"關(guān)山鎮(zhèn)",
"address_name":"關(guān)山鎮(zhèn)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"池上鄉(xiāng)",
"address_name":"池上鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"蘭嶼鄉(xiāng)",
"address_name":"蘭嶼鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"東河鄉(xiāng)",
"address_name":"東河鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"長(zhǎng)濱鄉(xiāng)",
"address_name":"長(zhǎng)濱鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"太麻里鄉(xiāng)",
"address_name":"太麻里鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"大武鄉(xiāng)",
"address_name":"大武鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"達(dá)仁鄉(xiāng)",
"address_name":"達(dá)仁鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"臺(tái)東市",
"address_name":"臺(tái)東市",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"卑南鄉(xiāng)",
"address_name":"卑南鄉(xiāng)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"成功鎮(zhèn)",
"address_name":"成功鎮(zhèn)",
"father_id":422,
"highest_father_id":34,
"level":3,
"city_code":"719012"
},
{
"name":"卓溪鄉(xiāng)",
"address_name":"卓溪鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"玉里鎮(zhèn)",
"address_name":"玉里鎮(zhèn)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"富里鄉(xiāng)",
"address_name":"富里鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"瑞穗鄉(xiāng)",
"address_name":"瑞穗鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"光復(fù)鄉(xiāng)",
"address_name":"光復(fù)鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"鳳林鎮(zhèn)",
"address_name":"鳳林鎮(zhèn)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"萬榮鄉(xiāng)",
"address_name":"萬榮鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"秀林鄉(xiāng)",
"address_name":"秀林鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"豐濱鄉(xiāng)",
"address_name":"豐濱鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"壽豐鄉(xiāng)",
"address_name":"壽豐鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"吉安鄉(xiāng)",
"address_name":"吉安鄉(xiāng)",
"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":"新城鄉(xiāng)",
"address_name":"新城鄉(xiāng)",
"father_id":423,
"highest_father_id":34,
"level":3,
"city_code":"719013"
},
{
"name":"西嶼鄉(xiāng)",
"address_name":"西嶼鄉(xiāng)",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"湖西鄉(xiāng)",
"address_name":"湖西鄉(xiāng)",
"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":"白沙鄉(xiāng)",
"address_name":"白沙鄉(xiāng)",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"望安鄉(xiāng)",
"address_name":"望安鄉(xiāng)",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
},
{
"name":"七美鄉(xiāng)",
"address_name":"七美鄉(xiāng)",
"father_id":424,
"highest_father_id":34,
"level":3,
"city_code":"719014"
}
]
總結(jié)
以上是生活随笔為你收集整理的2021全国省市区行政区划数据接口的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。