본문 바로가기

Story/php

php 구글맵 api 로 주소 좌표로 변환

반응형

$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

반응형