Google Maps API

書籍:公開API活用ガイドの第9章にあるGoogle Maps APIをお試し。

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />

	<title>Google Maps API version3</title>

	<style type="text/css">
		html {
			height: 100%;
		}
		body {
			height: 100%;
			margin: 0px;
			padding: 0px;
		}
		#map_canvas {
			height: 100%;
		}
	</style>

	<script type="text/javascript"
		src="http://maps.google.com/maps/api/js?sensor=true">
	</script>
	<script type="text/javascript">
	function initialize() {
		var latlng = new google.maps.LatLng(35.658517, 139.701334);
		var myOptions = {
			zoom: 16,
			center: latlng,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	}
	</script>
</head>

<body onload="initialize()">
	<div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>

確認:hello_googlemapsapi.html

参考サイト

公開API活用ガイド (I・O BOOKS)
公開API活用ガイド (I・O BOOKS)

posted with amazlet at 12.01.24
ZAPA
工学社
売り上げランキング: 149253

関連エントリー

  1. Google Maps API 続き
  2. 緯度・経度から住所を取得したい (Google Maps API)
  3. jQuery mobileでGoogleマップを表示する(jquery-ui-map)
  4. Google AJAX Feed API
  5. PHPでGoogle Maps APIを利用したい
This entry was posted in 未分類 and tagged , . Bookmark the permalink.