日本測地系から世界測地系に変換する

説明

現在のGoogle Mapsで指定する位置は世界測地系になっています。日本では日本測地系が使われているため、北西方向に経度が約-12秒、緯度が約+12秒ほどずれることになります。ただ、このずれ具合は場所によって異なるため、世界測地系に変換した際にどうしてもずれが発生してしまいます。続きは書籍で、どうぞ...
逆引きGoogle Maps APIリファレンス  詳しい解説などは逆引きGoogle Maps APIリファレンス、またはGoogle Maps APIリファレンスを参照してください。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Sample</title>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAasAJryKxWJnBFVJa487d9hTHGAxTVT7IRADYa-JdYz7xQ8IQZBSthgDZdggYpQHsmm6WYtHstQFfLA" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
window.onload = function() {
map = new GMap2(document.getElementById("gmap"));
var x = 138.7275;
var y = 35.360833333;
y = y - y * 0.00010695 + x * 0.000017464 + 0.0046017;
x = x - y * 0.000046038 - x * 0.000083043 + 0.010040;
map.setCenter(new GLatLng(y, x), 6);
map.addControl(new GLargeMapControl());
}
//]]>
</script>
</head>
<body>
<div id="gmap" style="width: 500px; height: 400px"></div>
</body>
</html>