Story/php
php 구글맵 api 로 주소 좌표로 변환
Stdio
2013. 4. 5. 16:53
반응형
$xml = simplexml_load_file('http://maps.googleapis.com/maps/api/geocode/xml?address='.urlencode("찾을주소").'&sensor=false');
$xml->result->geometry->location->lat;
$xml->result->geometry->location->lng
반응형