Imagery Layer like google maps

Hello, I have an AWS server that hosts mapping tiles of a certain area.
in my google maps, I use the overlayMapTypes to pass the parameters to the URL.
google uses 256X256 tiles and cesium also.
I have 3 problems:

  1. the numbers don’t match
  2. the position of the tiles seemed not according to the tiles.
  3. where I can find the right numbers cesium expects
var viewer = new Cesium.Viewer("cesiumContainer", {

});

var imageryLayers = viewer.imageryLayers;

imageryLayers.addImageryProvider(new Cesium.TileCoordinatesImageryProvider()); 

1 Like

var positron = new Cesium.UrlTemplateImageryProvider()
I am using this one with url.

1 Like