forked from yousan/sasukeNe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapping.html
26 lines (26 loc) · 1.01 KB
/
mapping.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API サンプル</title>
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript"
src="mapping.js"></script>
</head>
<body onload="initialize()">
<p>Google Maps v3 APIを使ったサンプル 地図座標位置の取得</p>
地図上でクリックで座標・住所の取得
<table style="width:100%;border:0;" >
<tr style="background-color:#dddddd;">
<th style="width:120px">項目</th>
<th>情報</th></tr>
<tr><td>緯度</td><td id="id_ido"></td></tr>
<tr><td>経度</td><td id="id_keido"></td></tr>
<tr><td>ズームレベル</td><td id="id_level"></td></tr>
<tr><td>住所</td><td id="id_address"></td></tr>
</table>
<div id="map_canvas" style="width:100%; height:500px"></div>
thanks! http://www.google-mapi.com/googlemaps/geocoding-candidate.html
</body>
</html>