説明に次のようにあります。
In this example a sprite image is used for the icon styles. Using a sprite is required to get good performance with WebGL.
この例では、スプライト画像がアイコンスタイルのために使用されます。スプライトを使用することは WebGL との良好なパフォーマンスを得るために必要とされています。
sprite image については、「CSS Image Sprites(https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/CSS_Image_Sprites)」に次のようにあります。
Image "sprites" are used in numerous web apps where multiple icons are used. Rather than include each icon as a .png image file, it is much more memory and bandwidth-friendly to send it as a single image because the number of HTTP requests is reduced.
「スプライト」は、複数のアイコンが使用されている多くのWebアプリケーションで使用されています。.png 画像ファイルとして、各アイコンを含むよりは、単一の画像として送信することでHTTP 要求の数が低減されるので、多くのメモリと帯域幅に扱いやすいものになっています。
HTML ファイルの作成
a Eclipse のメニューの「ファイル」->「ファイルを開く」をクリックします。
b 「ファイルを開く」ウィンドウで、「user」->「mapsite」->「ol3proj」->「v3.3.0」->「examples」->「icon-sprite-webgl.html」をクリックして選択し、「OK」ボタンをクリックします。
同じように「icon-sprite-webgl.js」を開きます。
c メニューの「ファイル」->「新規」 -> 「ファイル」をクリックします。
d 「ファイル」ウィンドウで「ol3proj」をクリックして選択し、「ファイル名」を「289-ol3ex.html」と入力し、「次へ」ボタンをクリックします。
e 「File Template」ウィンドウで「HTML 5 Template」をクリックして選択し、「OK」ボタンをクリックします。
f 「icon-sprite-webgl.html」の内容をコピーして「289-ol3ex.html」に貼り付け、修正します。
g 同じように、新規に「289-ol3ex.js」ファイルを作成し、「File Template」ウィンドウで「JavaScript Template」をクリックして選択し、「完了」ボタンをクリックして、「icon-sprite-webgl.js」の内容をコピーして貼り付け、修正します。「icon-sprite-webgl-require.js」も「289-ol3ex-require.js」に貼り付けます。
「289-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.3.0/css/ol.css" type="text/css"> <link rel="stylesheet" href="v3.3.0/resources/bootstrap/css/bootstrap.min.css" type="text/css"> <link rel="stylesheet" href="v3.3.0/resources/layout.css" type="text/css"> <link rel="stylesheet" href="v3.3.0/resources/bootstrap/css/bootstrap-responsive.min.css" type="text/css">
<title>Icon sprites with WebGL example</title>
</head> <body>
<!-- bootstrap.min.css, bootstrap-responsive.min.css で設定されたセレクタを使用。 --> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container">
<!-- <a class="brand" href="./"><img src="../resources/logo.png"> OpenLayers 3 Examples</a> --> <!-- ディレクトリ修正 --> <a class="brand" href="v3.3.0/examples/"><img src="v3.3.0/resources/logo.png"> OpenLayers 3 Examples</a>
</div> </div> </div> <div class="container-fluid">
<div class="row-fluid"> <div class="span12"> <div id="map" class="map"></div>
</div> </div>
<div class="row-fluid"> <div class="span8"> <h4 id="title">Icon sprite with WebGL example</h4> <p id="shortdesc">Icon sprite with WebGL.</p>
<div id="docs"> <!-- <p>See the <a href="icon-sprite-webgl.js" target="_blank">icon-sprite-webgl.js source</a> to see how this is done.</p> --> <!-- ファイル修正 --> <p>See the <a href="289-ol3ex.js" target="_blank">289-ol3ex.js source</a> to see how this is done.</p>
<p>In this example a sprite image is used for the icon styles. Using a sprite is required to get good performance with WebGL.</p>
</div> <div id="tags">webgl, icon, sprite, vector, point</div> </div>
<div class="span2 offset2"> <div id="info" class="alert alert-success"> </div> </div>
</div> </div>
<!-- <script src="../resources/jquery.min.js" type="text/javascript"></script> <script src="../resources/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="../resources/example-behaviour.js" type="text/javascript"></script> --> <!-- ディレクトリ修正 jQuery Minified版と bootstrap.min.js(tooltip など) example-behaviour.js(Examples用 JSコード[文字コードなど]) --> <script src="v3.3.0/resources/jquery.min.js" type="text/javascript"></script> <script src="v3.3.0/resources/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="v3.3.0/resources/example-behaviour.js" type="text/javascript"></script>
<!-- <script src="loader.js?id=icon-sprite-webgl" type="text/javascript"></script> --> <!-- ファイル修正 --> <!-- ディレクトリ修正 --> <script src="loader.js?id=289-ol3ex" type="text/javascript"></script>
</body> </html>
0 件のコメント:
コメントを投稿