輸入地址取得地理座標- Google Geocoding API
將地址轉換為經緯度的程序被稱為地理編碼(Geocoding),要取得某地址的經緯度,也是可以仰賴 google 大神,參考這個網址
http://maps.googleapis.com/maps/api/geocode/json?address=欲查詢的地址&sensor=false
在address後面輸入地址,google會回傳一個json格式的資料。
比如說我輸入一個地址,回傳了這樣的資料,找到location下的經緯度就可以了。
有興趣可以看看這個的地址是哪邊。
http://maps.googleapis.com/maps/api/geocode/json?address=欲查詢的地址&sensor=false
在address後面輸入地址,google會回傳一個json格式的資料。
比如說我輸入一個地址,回傳了這樣的資料,找到location下的經緯度就可以了。
- "geometry" : {
- "location" : {
- "lat" : 25.04385720,
- "lng" : 121.52881520
- },
- "location_type" : "ROOFTOP",
- "viewport" : {
- "northeast" : {
- "lat" : 25.04520618029150,
- "lng" : 121.5301641802915
- },
- "southwest" : {
- "lat" : 25.04250821970850,
- "lng" : 121.5274662197085
- }
- }
- },
有興趣可以看看這個的地址是哪邊。
留言