Hello guys. Is ii possible to host Cesium on a IIS server? Using an OVH windows mutual hosted solution, and having no control to install additional package, I wonder if Cesium could be able to run on IIS8 with that environment : ASP.NET, ASP, PHP, LINQ, AJAX, MVC?
thanks
--
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.
Hello guys. Is ii possible to host Cesium on a IIS server? Using an OVH windows mutual hosted solution, and having no control to install additional package, I wonder if Cesium could be able to run on IIS8 with that environment : ASP.NET, ASP, PHP, LINQ, AJAX, MVC?
thanks
THanks a lot. This is working well. I am in the learning curve. Not so easy to feel confortable quickly but progressing. I am now looking to czml. How to use it and how to generate it as well. This morning if was wondering if it exists some way to manage layers to display vs the distance from the camera. For example like in STK have markers only, or markers+labels, ...?
Next big question is what you addressed in your answer about the imagery and terrain server. What do you recommand to be able to do this. I will have to test with specific data covering some part in the Alps
tanks
Bruno
For more options, visit https://groups.google.com/d/optout.
Hi All,
I'm currently using Cesium to load point cloud data in our project. And it worked perfectly when using NodeJS as the server.
However, when I tried to host everything on IIS, the loading of Cesium3DTileset doesn't work anymore.
I took the suggests and edited the web.config file as following:
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="application/json" />
<remove fileExtension=".pnts" />
<mimeMap fileExtension=".pnts" mimeType="application/octet-stream" />
</staticContent>
</system.webServer>
</configuration>
So there is no error messages to serve .pnts or .json files.
But the console log showed that selectedTiles:Array(0) instead of selectedTiles:Array(1). That means the .json file has been loaded but .pnts file has not.
I also checked the Cesium.js source code which I followed https://github.com/mattshax/cesium_pnt_generator.
where the Cesium3DTileset constructor has been implemented. But it seems like the code is also server-agnostic.
I'm not sure if there are more configurations I need to change in IIS. But this problem does not come from the code-side but server-side.
It has been bothered me many days and if anybody could help, I would appreciate A LOT!
Best,
Shirui