<html> <head> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"></script> <script type="text/javascript"> function initialize() { var latlng = new google.maps.LatLng(35.811288,140.507031); var myOptions = { zoom: 18, center: latlng, mapTypeId: google.maps.MapTypeId.SATELLITE }; var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var imageBounds = new google.maps.LatLngBounds( new google.maps.LatLng(35.810283,140.505808), new google.maps.LatLng(35.81198,140.508211)); var image = new google.maps.GroundOverlay("http://www.yas-s.sakura.ne.jp/htdocs/?action=common_download_main&upload_id=7",imageBounds); image.setMap(map); } </script> </head> <body onload="initialize()"> <div id="map_canvas" style="width:440; height:365"></div> </body> </html>