匯入靜態 HTML 檔案

  1. 使用要載入的庫建立 HTML 檔案(在此示例中為 libraries/turf.html):

    <script src="../../bower_components/turf/turf.min.js"></script>
    
  2. 使用其餘匯入匯入元件中的 HTML 檔案(libraries/turf.html):

    <link rel="import" href="../../bower_components/polymer/polymer.html">
    <link rel="import" href="../libraries/turf.html">
    
  3. 呼叫你的庫(示例用法):

        var point = turf.point([42.123123, -23.83839]);