Skip to content

Instantly share code, notes, and snippets.

@vincentisambart
Created September 16, 2009 02:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vincentisambart/187821 to your computer and use it in GitHub Desktop.
Save vincentisambart/187821 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>test</title>
<script src="http://maps.google.co.jp/maps?file=api&amp;hl=ja&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAaGrpYL1xB0gxisU-6UlcSRT6suOry0oJYFaXw8CSwv7fUN3XBxSly8NKZzOwK3Ypuaq7h2eHx9UNCg" type="text/javascript"></script>
<script type="text/javascript">
function init() {
var div = document.getElementById('mydiv');
var geocoder = new GClientGeocoder();
geocoder.setBaseCountryCode('jp');
geocoder.getLocations(new GLatLng(35.69, 139.766084), function (response) {
if (response && response.Status.code == 200) {
var html = 'language: ' + GLanguage.getLanguageCode();
html += '<br />address: ' + response.Placemark[0].address;
html += '<br />address should be: 日本東京都千代田区内神田1丁目5−16';
div.innerHTML = html;
}
});
}
</script>
</head>
<body onload="init()">
<div id="mydiv"></div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment