Created
February 7, 2014 06:31
-
-
Save tigawa/8858219 to your computer and use it in GitHub Desktop.
GoogleMapsを表示する方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AED設置場所の確認</title> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | |
<meta charset="utf-8"> | |
<style> | |
html, body, #map-canvas { | |
height: 100%; | |
margin: 0px; | |
padding: 0px | |
} | |
</style> | |
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true&language=ja"></script> | |
<script type="text/javaScript"> | |
var map; | |
var range = 1000; | |
function initialize() { | |
//地図表示 | |
var mapOptions = { | |
zoom: 15, | |
center: /"ここにマップ上に表示したい軽度経度を記入する。 | |
}; | |
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); | |
} | |
google.maps.event.addDomListener(window, 'load', initialize); | |
</script> | |
</head> | |
<body> | |
<div id="map-canvas"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment