管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-03-15 fa3c4e145ed26e6e96b3dbf30604a815edbea55a
修改发布数据的host
已修改8个文件
20 ■■■■ 文件已修改
ExportMap/cs/ConvertUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/LasUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/OsgbUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/PyLasUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/SGUtils.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/TerraUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/TerrainUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/XYZUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/ConvertUtils.cs
@@ -29,7 +29,7 @@
        /// </summary>
        public static string GetReleaseUrl(SysMeta meta)
        {
            return "http://{host}/LFData/3d/3dtiles/" + meta.type + "/" + meta.id + "/tileset.json";
            return "{host}/LFData/3d/3dtiles/" + meta.type + "/" + meta.id + "/tileset.json";
        }
        /// <summary>
ExportMap/cs/LasUtils.cs
@@ -23,7 +23,7 @@
        /// </summary>
        public static string GetReleaseUrl(string path)
        {
            return "http://{host}/LFData/" + path.Replace("\\", "/");
            return "{host}/LFData/" + path.Replace("\\", "/");
        }
        /// <summary>
ExportMap/cs/OsgbUtils.cs
@@ -23,7 +23,7 @@
        /// </summary>
        public static string GetReleaseUrl(SysMeta meta)
        {
            return "http://{host}/LFData/3d/3dtiles/osgb/" + meta.id + "/tileset.json";
            return "{host}/LFData/3d/3dtiles/osgb/" + meta.id + "/tileset.json";
        }
        /// <summary>
ExportMap/cs/PyLasUtils.cs
@@ -23,7 +23,7 @@
        /// </summary>
        public static string GetReleaseUrl(string path)
        {
            return "http://{host}/LFData/" + path.Replace("\\", "/");
            return "{host}/LFData/" + path.Replace("\\", "/");
        }
        /// <summary>
ExportMap/cs/SGUtils.cs
@@ -45,11 +45,11 @@
            switch (meta.type)
            {
                case "mpt":
                    return "http://{host}/SG/Imagery;" + sgsID + ".mpt"; // Elevation
                    return "{host}/SG/Imagery;" + sgsID + ".mpt"; // Elevation
                case "3dml":
                    return "http://{host}/SG/b3dm/" + sgsID + "/tileset.json";
                    return "{host}/SG/b3dm/" + sgsID + "/tileset.json";
                case "cpt":
                    return "http://{host}/SG/pnts/" + sgsID + "/tileset.json";
                    return "{host}/SG/pnts/" + sgsID + "/tileset.json";
                default:
                    return string.Empty;
            }
ExportMap/cs/TerraUtils.cs
@@ -96,7 +96,7 @@
        /// </summary>
        public static string GetReleaseUrl(string dircode)
        {
            return "http://{host}/LFData/3d/terrain/" + dircode;
            return "{host}/LFData/3d/terrain/" + dircode;
        }
        /// <summary>
ExportMap/cs/TerrainUtils.cs
@@ -46,7 +46,7 @@
        public static string GetReleaseUrl(string dircode)
        {
            //return "http://{host}/LFData/3d/terrain/" + dircode;
            return "http://{host}/ExportMap/terra0?path=3d/terrain/" + dircode;
            return "{host}/ExportMap/terra0?path=3d/terrain/" + dircode;
        }
        /// <summary>
ExportMap/cs/XYZUtils.cs
@@ -71,7 +71,7 @@
        public static string GetReleaseUrl(string dircode)
        {
            //return "http://{host}/LFData/2d/tiles/" + dircode + "/{z}/{x}/{y}.png";
            return "http://{host}/ExportMap/tile0/{z}/{x}/{y}.png?path=2d/tiles/" + dircode;
            return "{host}/ExportMap/tile0/{z}/{x}/{y}.png?path=2d/tiles/" + dircode;
        }
        /// <summary>