1. 程式人生 > >cesium加載DEM數據

cesium加載DEM數據

arcmap serve get server del config www. 問題 sys

參考:https://www.jianshu.com/p/62d6f03f44e3

1、目前一般都是win7-64位系統,從tif數據轉成terrain,最好在win7-32位系統上安裝後做轉換;嘗試在win7-64位電腦上安裝32位的python,arcmap被裝壞掉

2、IIS上發布terrain數據

首先需要解決跨域問題,做cors配置;

其次需要在數據目錄下放web.config,內容如下:

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.webServer>

<httpProtocol>

<customHeaders>

<add name="Access-Control-Allow-Origin" value="*" />

<add name="Access-Control-Allow-Methods" value="GET,POST,PUT,DELETE,HEAD,OPTIONS" />

<add name="Access-Control-Allow-Headers" value="Content-Type,api_key,Authorization,X-Requested-With" />

</customHeaders>

</httpProtocol>

</system.webServer>

</configuration>

然後需要添加對terrain數據的解析:

技術分享圖片

添加對json的解析:

技術分享圖片

cesium加載DEM數據