PilotGaea 3D O'view
    正在準備搜尋索引...

    函數 getWMTSLayerInfo

    • 取得WMTS圖層資訊。

      參數

      • url: string

        WMTS來源網址。

      • callback: (ret: null | WMTSLayerInfo) => void

        事件回呼,呼叫次數隨著WMTS圖層數量而變動。

      回傳 void

      ov.getWMTSLayerInfo("http://127.0.0.1/wmts", function(result){
      if (result !== null){
      console.log(result.url + " " + result.identifier + " " + result.epsg);
      }
      });