

|
<script type="text/javascript"> //<![CDATA[ window.onload=loadMap; var map = null; var geocoder = null; function loadMap() { map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(35.698292249817314, 139.77313041687012), 15); geocoder = new GClientGeocoder(); } function showAddress(address) { if (geocoder) { geocoder.getLatLng( address, function(point) { if (!point) { alert(address + " not found"); } else { map.setCenter(point, 15); var marker = new GMarker(point); map.addOverlay(marker); marker.openInfoWindowHtml(address); } } ); } } window.onunload = GUnload; //]> </script> |
|
//東京都新宿区新宿5-6-1をxml形式で呼出 http://maps.google.co.jp/maps/geo?key=ABQIA...&q=東京都新宿区新宿5-6-1&output=xml&ie=UTF8 //東京都新宿区新宿5-6-1をjson形式で呼出 http://maps.google.co.jp/maps/geo?key=ABQIA...&q=東京都新宿区新宿5-6-1&output=json&ie=UTF8 //東京都新宿区新宿5-6-1をxml形式での結果 東京都新宿区新宿5-6-1200geocode日本東京都新宿区新宿5丁目6−1JP東京都新宿区新宿5丁目6−1139.709646,35.691854,0 //東京都新宿区新宿5-6-1をjson形式での結果 {"name":"東京都新宿区新宿5-6-1","Status":{"code":200,"request":"geocode"},"Placemark":[{"address":"日本東京都新宿区新宿5丁目6−1","AddressDetails":{"Country":{"CountryNameCode":"JP","AddressLine":["東京都新宿区新宿5丁目6−1"]},"Accuracy": 1},"Point":{"coordinates":[139.709646,35.691854,0]}}]} |