管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-09-07 8d7a67ab1d635cb954337d8a767878ae526dd3dc
ExportMap/lf.html
@@ -2,11 +2,21 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>LF接口测试</title>
  <meta http-equiv="Expires" content="0" />
  <meta http-equiv="Cache" content="no-cache" />
  <meta http-equiv="Pragma" content="no-cache" />
  <meta http-equiv="Cache-control" content="no-cache" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <script src="js/jquery.1.12.4.js"></script>
  <script src="js/rsa.min.js"></script>
  <script src="js/rollups.js"></script>
  <script src="js/config.js"></script>
  <script>
    var url = "http://127.0.0.1:12316/server/";
    var token = "?token=9c62ba00-5c82-40c2-a210-6aecc33e8c96";
    // 项目,站场,管道中心线,战略通道,矢量图,影像注记,影像图
    window.onload = function () {
      getPublicKey();
    }
@@ -170,21 +180,21 @@
      });
    }
    function downloadShp() {
    function downloadMarkShp() {
      var data = [
          { id: 1, name: "Point-1", props: "{}", wkt: "POINT(95.80461853400004 34.13862467200005)" },
          { id: 2, name: "Linestring-1", props: "{}", wkt: "LINESTRING(04.98985101830993 37.43840773692756,104.99318913447104 37.43883729720358)" },
          { id: 3, name: "Polygon-1", props: "{}", wkt: "POLYGON((104.9907822932683 37.43532941961706,104.99088987736599 37.43532941961706,104.9908670336867 37.4349030213574,104.99078327712658 37.4349030213574,104.9907822932683 37.43532941961706))" }
          { id: 1, name: "Point-1", bak: "{}", wkt: "POINT(95.80461853400004 34.13862467200005)" },
          { id: 2, name: "Linestring-1", bak: "{}", wkt: "LINESTRING(04.98985101830993 37.43840773692756,104.99318913447104 37.43883729720358)" },
          { id: 3, name: "Polygon-1", bak: "{}", wkt: "POLYGON((104.9907822932683 37.43532941961706,104.99088987736599 37.43532941961706,104.9908670336867 37.4349030213574,104.99078327712658 37.4349030213574,104.9907822932683 37.43532941961706))" }
      ];
      ajax(url + "mark/downloadShp" + token, "POST", JSON.stringify(data), "json", null, function (rs) {
      ajax(url + "comprehensive/downloadShp" + token, "POST", JSON.stringify(data), "json", null, function (rs) {
        alert("code = " + rs.code + ", msg = " + rs.msg + ", result = " + rs.result);
        // 下载文件
        if (rs && rs.code == 200) {
          var a = document.createElement('a'); // 创建一个a标签元素
          a.style.display = 'none'; // 设置元素不可见
          // http://127.0.0.1:12316/mark/downloadFile?guid=5ce046cc05b186332775c03ac6792caf
          a.href = url + "mark/downloadFile" + token + "&guid=" + rs.result;
          // http://127.0.0.1:12316/server/comprehensive/downloadFile?guid=5f0d5b61ca8cd79a07502f308c2f4dcc
          a.href = url + "comprehensive/downloadFile" + token + "&guid=" + rs.result;
          document.body.appendChild(a); // 加入
          a.click(); // 触发点击,下载
@@ -228,7 +238,7 @@
    function downloadFile() {
      var a = document.createElement('a'); // 创建一个a标签元素
      a.style.display = 'none'; // 设置元素不可见
      a.href = url + "mark/downloadFile" + token + "&guid=" + "5ce046cc05b186332775c03ac6792caf";
      a.href = url + "comprehensive/downloadFile" + token + "&guid=" + "5ce046cc05b186332775c03ac6792caf";
      document.body.appendChild(a); // 加入
      a.click(); // 触发点击,下载
@@ -254,7 +264,7 @@
        return;
      }
      $.ajax(url + "mark/uploadShp" + token, {
      $.ajax(url + "comprehensive/uploadShp" + token, {
        type: "post",
        data: formData,
        async: true,
@@ -319,10 +329,6 @@
    }
  </script>
  <script>
    var url = "http://127.0.0.1:12316/server/";
    var token = "?token=37da6489-9286-4cb6-9662-69d464238e9b";
    // 项目,站场,管道中心线,战略通道,矢量图,影像注记,影像图
    function exportMap1() {
      var page = $("#selectPage").find("option:selected").text();
      var data = {
@@ -394,8 +400,8 @@
  <input type="button" value="Ajax上传" onclick="ajxUpload()" />
  <input type="button" value="uploadData" onclick="uploadData();" />
  <input type="button" value="uploadShpForWKT" onclick="uploadShpForWKT();" />
  <input type="button" value="uploadShp" onclick="downloadShp();" />
  <input type="button" value="downloadFile" onclick="downloadFile();" />
  <input type="button" value="downloadMarkShp" onclick="downloadMarkShp();" />
  <input type="button" value="uploadShpForMark" onclick="uploadShpForMark();" />
  <input type="button" value="管线分析" onclick="pipeAnalysis()" />
  <input type="button" value="管线分析下载" onclick="downloadPipeReq()" />