2015年4月20日月曜日

2 - ol3.4ex 116a - Geolocation tracking with orientation example 1

「Geolocation tracking with orientation example (geolocation-orientation.html)」を参考に地図を表示してみます。

HTML ファイルの作成
a Eclipse のメニューの「ファイル」->「ファイルを開く」をクリックします。





b 「ファイルを開く」ウィンドウで、「user」->「mapsite」->「ol3proj」->「v3.4.0」->「examples」->「geolocation-orientation.html」をクリックして選択し、「OK」ボタンをクリックします。
同じように「geolocation-orientation.js」を開きます。





c メニューの「ファイル」->「新規」 -> 「ファイル」をクリックします。



d 「ファイル」ウィンドウで「ol3proj」をクリックして選択し、「ファイル名」を「2116-ol3ex.html」と入力し、「次へ」ボタンをクリックします。








e 「File Template」ウィンドウで「HTML 5 Template」をクリックして選択し、「OK」ボタンをクリックします。











f 「geolocation-orientation.html」の内容をコピーして「2116-ol3ex.html」に貼り付け、修正します。
g 同じように、新規に「2116-ol3ex.js」ファイルを作成し、「File Template」ウィンドウで「JavaScript Template」をクリックして選択し、「完了」ボタンをクリックして、「geolocation-orientation.js」の内容をコピーして貼り付け、修正します。「geolocation-orientation-require.js」も「2116-ol3ex-require.js」に貼り付けます。

「2116-ol3ex.html」
<!doctype html>
<html lang="en">
 <head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="chrome=1">
  <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
  <!--
  <link rel="stylesheet" href="../css/ol.css" type="text/css">
  <link rel="stylesheet" href="../resources/bootstrap/css/bootstrap.min.css" type="text/css">
  <link rel="stylesheet" href="../resources/layout.css" type="text/css">
  <link rel="stylesheet" href="../resources/bootstrap/css/bootstrap-responsive.min.css" type="text/css">
  -->
  <!-- ディレクトリ修正 -->
  <link rel="stylesheet" href="v3.4.0/css/ol.css" type="text/css">
  <link rel="stylesheet" href="v3.4.0/resources/bootstrap/css/bootstrap.min.css" type="text/css">
  <link rel="stylesheet" href="v3.4.0/resources/layout.css" type="text/css">
  <link rel="stylesheet" href="v3.4.0/resources/bootstrap/css/bootstrap-responsive.min.css" type="text/css">
  <title>Mobile Geolocation Tracking with Orientation</title>
  <style type="text/css">
   html, body, .map {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
   }
   #info {
    position: absolute;
    font-size: 0.7em;
    top: 10px;
    right: 10px;
    background-color: lightgrey;
    padding: 4px;
   }
   .button {
    position: absolute;
    bottom: 40px;
    left: 10px;
   }
  </style>
 </head>
 <body>
  <div id="map" class="map"></div>
  <div id="info"></div>
  <img id="geolocation_marker" src="data/geolocation_marker.png" />
  <div class="button">
   <button id="geolocate">Geolocate Me!</button>
   <button id="simulate">Simulate</button>
  </div>
  <!--
  <script src="../resources/jquery.min.js" type="text/javascript"></script>
  <script src="../resources/example-behaviour.js" type="text/javascript"></script>
  -->
  <!-- ディレクトリ修正
   jQuery Minified版と
   example-behaviour.js(Examples用 JSコード[文字コードなど])
 -->
  <script src="v3.4.0/resources/jquery.min.js" type="text/javascript"></script>
  <script src="v3.4.0/resources/example-behaviour.js" type="text/javascript"></script>
  <!--
  <script src="loader.js?id=geolocation-orientation" type="text/javascript"></script>
  -->
  <!-- ファイル修正 -->  <!-- ディレクトリ修正 -->
  <script src="loader.js?id=2116-ol3ex" type="text/javascript"></script>
  <div style="display: none;">
   <div id="title">Geolocation tracking with orientation example</div>
   <div id="shortdesc">Example of a geolocated and oriented map.</div>
   <div id="tags">fullscreen, geolocation, orientation, mobile</div>
  </div>
  </body>
</html>

0 件のコメント: