123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <!--********************************************************************
- * 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>
- <style type="text/css">
- body {
- margin: 0;
- overflow: hidden;
- background: #fff;
- width: 100%;
- height: 100%
- }
- #map {
- position: absolute;
- left: 200px;
- right: 0px;
- width: 100%;
- height: 100%;
- }
- #toolbar {
- position: absolute;
- top: 50px;
- right: 10px;
- width: 401px;
- text-align: center;
- z-index: 100;
- border-radius: 4px;
- }
-
- #toolbar .panel-title {
- font-size: 16px;
- color: white;
- }
- #filetree {
- position: absolute;
- float: left;
- background: #ffffff;
- width: 250px;
- height: 100%;
- border: 1px solid #3473b7;
- z-index: 100;
- }
- .input-group {
- margin-bottom: 10px;
- }
- .panel-title {
- font-size: 16px;
- color: #ffffff;
- }
- </style>
- </head>
- <body>
- <div id="toolbar" class="panel panel-primary">
- <div class='panel-heading'>
- <h5 class='panel-title text-center' data-i18n="resources.title_filetransfer"></h5></div>
- <div class='panel-body content' style="border-bottom-left-radius: 4px;border-bottom-right-radius: 4px">
- <div class='input-group' style="margin-top: 15px;margin-left: 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;">
- <span class='input-group-addon' data-i18n="resources.text_fileUrl"></span>
- <input class='form-control' type="text" style='width:200px;' 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">
- <span class='input-group-addon' data-i18n="resources.text_fileName"></span>
- <input class='form-control' type="text" style='width:200px;' 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="filetree" data-i18n="[title]resources.text_fileList"></div>
- <div id="map"></div>
- <script type="text/javascript" include="bootstrap,fileupLoad" src="../js/include-web.js"></script>
- <script type="text/javascript" exclude="iclient-classic" include="iclient8c-plot,PlottingPanel" src="../../dist/classic/include-classic.js"></script>
- <script>
- var map, layer, drawFeature, treePanel, plottingLayer, plottingEdit, sitManager, plotting;
- var host = window.isLocal ? window.server : "https://iserver.supermap.io";
- var mapurl = host + "/iserver/services/map-china400/rest/maps/China_4326";
- var serverUrl = host + "/iserver/services/plot-jingyong/rest/plot/";
- init();
- function init() {
- map = new SuperMap.Map("map", {
- controls: [
- new SuperMap.Control.LayerSwitcher(),
- new SuperMap.Control.ScaleLine(),
- new SuperMap.Control.Zoom(),
- new SuperMap.Control.Navigation({
- dragPanOptions: {
- enableKinetic: true
- }
- })]
- });
- layer = new SuperMap.Layer.TiledDynamicRESTLayer("World", mapurl, {
- transparent: true,
- cacheEnabled: true
- }, {maxResolution: "auto"});
- layer.events.on({"layerInitialized": addLayer});
- plottingLayer = new SuperMap.Layer.PlottingLayer("标绘图层", serverUrl);
- plottingLayer.style = {
- fillColor: "#66cccc",
- fillOpacity: 0.4,
- strokeColor: "#66cccc",
- strokeOpacity: 1,
- strokeWidth: 3,
- pointRadius: 6
- };
- }
- function addLayer() {
- map.addLayers([layer, plottingLayer]);
- map.setCenter(new SuperMap.LonLat(104, 35), 3);
- plotting = SuperMap.Plotting.getInstance(map, serverUrl);
- treePanel = new SuperMap.Plotting.TreePanel("filetree");
- treePanel.events.on({"clickTreeNode": clickTreeNode});
- sitManager = plotting.getSitDataManager();
- sitManager.events.on({
- "getSMLInfosCompleted": getSMLInfosSuccess,
- "getSMLInfosFailed": getSMLInfosFail,
- "deleteSmlFileCompleted": deleteSmlFileSuccess,
- "deleteSmlFileFail": deleteSmlFileFail
- });
- getSMLInfos();
- fileFilter();
- }
- function getSMLInfos() {
- sitManager.getSMLInfos(0, 10);
- }
- function getSMLInfosSuccess(result) {
- treePanel.initializeTree(result);
- }
- function getSMLInfosFail(result) {
- console.log(result);
- }
- function clickTreeNode() {
- var result = sitManager.downloadSmlFileURL(this.clickSmlFileName);
- document.getElementById("downloadUrl").value = serverUrl + result;
- document.getElementById("smlFileName").value = this.clickSmlFileName;
- sitManager.openSmlFileOnServer(this.clickSmlFileName);
- plottingLayer.redraw();
- }
- function uploadSmlFile() {
- function sucess() {
- getSMLInfos();
- }
- function fail() {
- console.log("todo something if faied");
- }
- sitManager.uploadSmlFile('smlFile', sucess, fail);
- }
- function downloadSmlFileOnServer() {
- window.open(document.getElementById("downloadUrl").value);
- }
- function deleteSmlFileOnServer() {
- var smlFileName = document.getElementById("smlFileName").value;
- sitManager.deleteSmlFileOnServer(smlFileName);
- }
- function deleteSmlFileSuccess() {
- document.getElementById("downloadUrl").value = null;
- document.getElementById("smlFileName").value = null;
- var allLayers = map.layers;
- for (var j = 0; j < allLayers.length; j++) {
- if (allLayers[j].isBaseLayer === true) {
- continue;
- }
- allLayers[j].removeAllFeatures();
- map.removeLayer(allLayers[j], false);
- }
- getSMLInfos();
- }
- function deleteSmlFileFail() {
- }
- function fileFilter() {
- var file = document.getElementById('smlFile');
- file.setAttribute("accept", ".sml");
- }
- function stop() {
- window.event.returnValue = false;
- return false;
- }
- </script>
- </body>
- </html>
|