2014年9月25日木曜日

2 - ol3ex 6b - XYZ Esri example 2

「xyz-esri.js(206-ol3ex.js)」は、地図を表示するのに必要な javascript です。「206-ol3ex.js」
var attribution = new ol.Attribution({
 html: 'Tiles © <a href="http://services.arcgisonline.com/ArcGIS/' +
     'rest/services/World_Topo_Map/MapServer">ArcGIS</a>'
});
var map = new ol.Map({
 target: 'map',
 layers: [
  new ol.layer.Tile({
   source: new ol.source.XYZ({
   attributions: [attribution],
   url: 'http://server.arcgisonline.com/ArcGIS/rest/services/' +
      'World_Topo_Map/MapServer/tile/{z}/{y}/{x}'
   })
  })
 ],
 view: new ol.View2D({
//center: ol.proj.transform([-121.1, 47.5], 'EPSG:4326', 'EPSG:3857'),
  center: ol.proj.transform([139.42, 35.68], 'EPSG:4326', 'EPSG:3857'),
  /** ol.proj.transform(coordinate, source, destination)
   * Transforms a coordinate from source projection to 
   * destination projection. This returns a new coordinate 
   * (and does not modify the original).
   * ソース投影から変換先投影に座標変換します。これは、新しい座標
   * を返します(オリジナルを変更しません)。(ol3 API)
   */
//zoom: 7
  zoom: 10
 })
});

0 件のコメント: