123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title data-i18n="resources.title_filetransfer"></title>
- </head>
- <body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;">
- <div id="toolbar" class="panel panel-primary" style=" position: absolute;top: 15px;right: 10px;text-align: center;z-index: 9999;border-radius: 4px;">
- <div class='panel-heading' id="panelheading">
- <h5 class='panel-title text-center' data-i18n="resources.title_filetransfer" style=" font-size: 16px;color: #ffffff;"></h5></div>
- <div class='panel-body content' id="panelbodycontent" style="height:160px;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px">
- <div class='input-group' style="margin-top: 15px;margin-left: 10px margin-bottom: 10px;">
- <input type="file" style='width:200px;float: left;' id="smlFile" name="smlFile"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_upload" onclick="uploadSmlFile()"/>
- </div>
- <div class='input-group' style="margin-left: 10px; margin-bottom: 10px;">
- <span data-i18n="resources.text_fileUrl"></span>
- <input type="text" readonly style='width:155px;' id="downloadUrl" name="downloadUrl" value=""/>
- <input type="button" class="btn btn-default"data-i18n="[value]resources.btn_download" onclick="downloadSmlFileOnServer()"/>
- </div>
- <div class='input-group' style="margin-left: 10px;margin-bottom: 15px margin-bottom: 10px;">
- <span data-i18n="resources.text_fileName"></span>
- <input type="text" readonly style='width:155px;' id="smlFileName" name="smlFileName" value=""/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.text_input_value_delete" onclick="deleteSmlFileOnServer()" />
- </div>
- </div>
- </div>
- <div id="popupWin" class="panel panel-primary popupWindow" style=" position: absolute;right: 10px;top: 230px;width: 315px;background: #FFF;z-index: 9999;display: block;">
- <div class="winTitle" style=" background: #1E90FF;">
- <span class="title_left" data-i18n="resources.text_fileList">态势图文件列表</span>
- </div>
- <div id="filetree" class="winContent" style=" padding: 5px;overflow-y: auto;height: 400px;"></div>
- </div>
- <div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
- <script type="text/javascript" include="bootstrap,fileupLoad,plottingPanel" src="../js/include-web.js"></script>
- <script type="text/javascript" include="iclient-plot-leaflet" src="../../dist/leaflet/include-leaflet.js"></script>
- <script type="text/javascript" include="SMLInfosPanel" src="../js/plottingPanel/PlottingPanel.Include.js"></script>
- <script type="text/javascript">
- var host = window.isLocal ? window.server : "https://iserver.supermap.io";
- var url = host + "/iserver/services/map-china400/rest/maps/China_4326";
- var serverUrl = host + "/iserver/services/plot-jingyong/rest/plot/";
- var map;
- map = L.map('map', {
- preferCanvas: true,
- crs: L.CRS.EPSG4326,
- center: [35,104],
- maxZoom: 18,
- zoom: 3
- });
- L.supermap.tiledMapLayer(url).addTo(map);
- var plottingLayer = L.supermap.plotting.plottingLayer("plot", serverUrl);
- plottingLayer.addTo(map);
- var drawControl = L.supermap.plotting.drawControl(plottingLayer);
- drawControl.addTo(map);
- var editControl = L.supermap.plotting.editControl();
- editControl.addTo(map);
- var plotting = L.supermap.plotting.getControl(map, serverUrl);
- var sitDataManager = plotting.getSitDataManager();
- function getSMLInfosSucess(evt){
- L.supermap.plotting.initSMLInfosPanel("filetree", evt.smlInfoList, function(clickSmlFileName){
- var result = sitDataManager.downloadSmlFileURL(clickSmlFileName);
- document.getElementById("downloadUrl").value = serverUrl + result;
- document.getElementById("smlFileName").value =clickSmlFileName;
- sitDataManager.openSmlFileOnServer(clickSmlFileName);
- })
- }
- //获取态势图列表
- function getSMLInfos() {
- sitDataManager.getSMLInfos(0, 10, getSMLInfosSucess);
- }
- //上传态势图
- function uploadSmlFile(){
- sitDataManager.uploadSmlFile('smlFile', function(evt){
- if(evt.success){
- getSMLInfos();
- } else {
- }
- });
- }
- //下载态势图
- function downloadSmlFileOnServer(){
- window.open(document.getElementById("downloadUrl").value);
- }
- //删除态势图
- function deleteSmlFileOnServer(){
- var smlFileName = document.getElementById("smlFileName").value;
- sitDataManager.deleteSmlFileOnServer(smlFileName, function(evt){
- if(evt.success){
- document.getElementById("downloadUrl").value = null;
- document.getElementById("smlFileName").value = null;
- plottingLayer.removeAllFeatures();
- getSMLInfos();
- } else {
- }
- });
- }
- function fileFilter() {
- var file = document.getElementById('smlFile');
- file.setAttribute("accept", ".sml");
- }
- window.onload = function(){
- getSMLInfos();//初始化页面时获取态势图列表
- fileFilter();
- };
- $(document).ready(function(){
- $('#panelheading').click(function(){
- $('#panelbodycontent').toggle();
- $('#popupWin').toggle();
- });
- });
- </script>
- </body>
- </html>
|