管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2023-03-13 3ec3fdc125d20cd2aa7b4096d8d5c50e8afbc582
1
已修改5个文件
24 ■■■■ 文件已修改
ExportMap/Controllers/ExportController.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/Models/ExportArgs.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/Models/ResponseMsg.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/ExportUtil.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/XYZUtil.cs 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/Controllers/ExportController.cs
@@ -1,5 +1,5 @@
using ExportMap.cs;
using LFServer.Models;
using ExportMap.Models;
using System;
using System.Collections.Generic;
using System.Linq;
ExportMap/Models/ExportArgs.cs
@@ -3,7 +3,7 @@
using System.Linq;
using System.Web;
namespace LFServer.Models
namespace ExportMap.Models
{
    /// <summary>
    /// 出图参数
ExportMap/Models/ResponseMsg.cs
@@ -3,7 +3,7 @@
using System.Linq;
using System.Web;
namespace LFServer.Models
namespace ExportMap.Models
{
    public class ResponseMsg<T>
    {
ExportMap/cs/ExportUtil.cs
@@ -1,5 +1,5 @@
using ExportMap.cs;
using LFServer.Models;
using ExportMap.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
ExportMap/cs/XYZUtil.cs
@@ -1,4 +1,5 @@
using System;
using ExportMap.Models;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
@@ -26,6 +27,19 @@
                return pyFile;
            }
        }
        //xyz.qgz
        /// <summary>
        /// 生成
        /// </summary>
        /// <param name="args">出图参数</param>
        /// <param name="err">错误信息</param>
        /// <returns>图片路径</returns>
        public static string Generate(ExportArgs args, ref string err)
        {
            return null;
        }
    }
}