2014年12月25日木曜日

2 - ol3ex 43b - Zoom constrained example 2

「zoom-constrained.js(243-ol3ex.js)」は、マップを表示するための JavaScript ファイルです。

「243-ol3ex.js」
var map = new ol.Map({
 target: 'map',
 layers: [
  new ol.layer.Tile({
  /** ol.layer.Tile 
   * For layer sources that provide pre-rendered, tiled 
   * images in grids that are organized by zoom levels for 
   * specific resolutions. 
   * プリレンダリング(事前描画)を提供するレイヤソースのための、
   * 特定の解像度でのズームレベルによって編成されているグリッドの
   * タイルイメージ。(ol3 API)
   */
   source: new ol.source.BingMaps({
   /** ol.source.BingMaps
    * Layer source for Bing Maps tile data.
    * Bing Maps タイルデータのレイヤソース。(ol3 API)
    */
    key: 'Ak-dzM...(省略)',
    imagerySet: 'Aerial'
   })
  })
 ],
 view: new ol.View({
  center: [-13553864, 5918250],
  zoom: 11,
  minZoom: 9,
  maxZoom: 13
 })
});

0 件のコメント: