openlysers6 加载太乐地图arcgis切片

openlayers 6.0版本之后对于瓦片数据的加载发生生的变化
// before
function tileUrlFunction(tileCoord) {
const z = tileCoord[0];
const x = tileCoord[1];
const y = -tileCoord[2] - 1;
// do something with z, x, y
}
// after
function tileUrlFunction(tileCoord) {
const z = tileCoord[0];
const x = tileCoord[1];
const y = tileCoord[2];
// do something with z, x, y
}
openlysers6 加载太乐地图arcgis切片

相关文章:

  • 2022-02-18
  • 2021-07-13
  • 2021-09-10
  • 2022-01-23
  • 2021-04-19
  • 2021-08-18
  • 2021-11-17
  • 2021-05-13
猜你喜欢
  • 2022-12-23
  • 2021-09-21
  • 2022-12-23
  • 2021-12-28
  • 2022-02-09
  • 2021-12-12
相关资源
相似解决方案