Cesium can load 8 bits depth png tile image?

I try to load 8 bits depth png tile image, but failed.

Mybe Cesium can't support these tiles?

If can, how to do? below is my program:

new Cesium.ImageryLayer(
    new Cesium.UrlTemplateImageryProvider({
  url:'http://219.142.81.86/igserver/ogc/kvp/TAS40S52100296/WMTSServer/1.0.0/TAS40S52100296/default/TAS40S52100296_TMS/{z}/{x}/{y}.png'
    }));

Cesium can load imagery like this fine, the problem is that your server is not configured to support CORS and therefore you need a proxy (or if you are in control of the server, you can enable CORS). I recommend you check out the imagery tutorial for details: http://cesiumjs.org/2013/01/04/Cesium-Imagery-Layers-Tutorial/

Thanks a lot, I have done successfull under your help, only add a row code of "proxy……".

layers.addImageryProvider(new Cesium.ArcGisMapServerImageryProvider({
    url : 'World_Street_Map (MapServer)’,
    proxy : new Cesium.DefaultProxy('/proxy/')
}));

在 2015年9月2日星期三 UTC+8下午9:33:50,Matthew Amato写道:

Cesium can load imagery like this fine, the problem is that your server is not configured to support CORS and therefore you need a proxy (or if you are in control of the server, you can enable CORS). I recommend you check out the imagery tutorial for details: http://cesiumjs.org/2013/01/04/Cesium-Imagery-Layers-Tutorial/

Th

在 2015年9月2日星期三 UTC+8下午9:33:50,Matthew Amato写道: