OpenLayers的使用---- 一個完全免費開源的地圖JS庫

來源:互聯網
上載者:User

標籤:org   get   sheet   style   xxx   比例   java   animation   官網   

OpenLayers很容易的在網站裡放置動態地圖。它能顯示展開圖及從資源中載入地表徵圖記及向量資料。它被開發出儘可能的使用所有的地圖資訊。並且它是完全免費及開源的.
詳細瞭解可去它的官網:http://openlayers.org/

簡單使用,如展示一個塊地圖

<!doctype html><html lang="en">  <head>    <!--引入openlayers的css-->    <link rel="stylesheet" href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.2.0/css/ol.css" type="text/css">    <style>      .mymap {        height: 400px;        width: 100%;      }    </style>    <!--        如果在老的android平台及早期IE還需要在openlayers之前引入下面的js來相容         <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList"></script>    -->    <!--引入openlayers的js-->    <script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.2.0/build/ol.js"></script>  </head>  <body>    <div id="mymap" class="mymap"></div>    <script type="text/javascript">      /*        建立openlayers中的一個map對象。並傳遞一個json對象來配置地圖的一些參數。        target中的值是document中塊標籤的id,用於顯示地圖的容器指定。        layers:地圖圖層的配置,這裡指定一個簡單的塊狀地圖圖層。        view:用於指地圖顯示的中心位置及縮放比例還旋轉      */      var map = new ol.Map({        target: ‘map‘,        layers: [          new ol.layer.Tile({            source: new ol.source.OSM()          })        ],        view: new ol.View({          center: ol.proj.fromLonLat([xxx, xxx]),          zoom: 4        })      });    </script>  </body></html>

OpenLayers的使用---- 一個完全免費開源的地圖JS庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.