Function getWMTSLayerInfo

  • 取得WMTS圖層資訊。

    Parameters

    • url: string

      WMTS來源網址。

    • callback: ((ret) => void)

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

    Returns void

    Example

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

Generated using TypeDoc