private async _getSpriteSheetRootPath()

in src/tms_service.ts [454:461]


  private async _getSpriteSheetRootPath(): Promise<string> {
    const vectorStyleJson = await this._getVectorStyleJsonRaw();
    if (vectorStyleJson?.sprite) {
      return this._proxyPath + this._getAbsoluteUrl(vectorStyleJson.sprite.toString());
    } else {
      return '';
    }
  }