2013-08-20から1日間の記事一覧

googleMapをページ内に表示

API

head内に下記のスクリプトを記述する。 緯度と軽度はhttp://www.geocoding.jp/より取得して 4行目の”var myLatlng = new google.maps.LatLng(緯度,経度)”に入れる。 <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script> function initialize() { var myLatlng = new google.maps.LatLng(緯度,経度); var myOpt…