I downloaded the latest Cesium 2 days ago.
Using Chrome's element inspection tool (Network tab) I can see the tiles coming back from our geoserver, but the tiles are not displayed on the globe. Tried every which way to change settings, saying layers.raise(myLayer), myLayer.show(true). Nothing. The request to WMS looks good. SRS is 4326, everything looks normal from the network side.
I'd appreciate any insights. Here's my code:
var cesiumWidget = new Cesium.CesiumWidget('cesiumContainer');
var layers = cesiumWidget.centralBody.getImageryLayers();
var mountainLayer = layers.addImageryProvider(new Cesium.WebMapServiceImageryProvider({
url: 'http://foo:8080/geoserver/gwc/service/wms',
layers : 'mountain_areas',
parameters : {
format : 'image/png'
}
}));
--
You received this message because you are subscribed to the Google Groups "cesium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cesium-dev+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I see. I was thrown-off track by how Openlayers worked on this WMS, but not cesium. I will try a proxy servlet on my server (probably mush like your /proxy/ in the examples.
Thanks !
hi,