Skip to content

Commit 12fa868

Browse files
committed
【examples】更新plot例子
1 parent 6caa252 commit 12fa868

30 files changed

+55
-55
lines changed

dist/leaflet/include-leaflet.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@
147147
inputCSS(disturl + '/leaflet/iclient-leaflet.min.css');
148148
}
149149
if (inArray(includes, 'iclient-plot-leaflet')) {
150-
inputCSS(libsurl + '/plotting/leaflet/12.0.0/iclient-plot-leaflet.css');
150+
inputCSS(libsurl + '/plotting/leaflet/12.0.0.0/iclient-plot-leaflet.css');
151151
if (supportES6()) {
152-
inputScript(libsurl + '/plotting/leaflet/12.0.0/iclient-plot-leaflet-es6.min.js');
152+
inputScript(libsurl + '/plotting/leaflet/12.0.0.0/iclient-plot-leaflet-es6.min.js');
153153
} else {
154-
inputScript(libsurl + '/plotting/leaflet/12.0.0/iclient-plot-leaflet.min.js');
154+
inputScript(libsurl + '/plotting/leaflet/12.0.0.0/iclient-plot-leaflet.min.js');
155155
}
156156
}
157157
if (inArray(includes, 'ant-design-vue')) {

examples/js/plottingPanel/PlotMapPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.*/
1+
/* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.*/
22
// import {ChildPlotLayer} from "../../../plugins/plotting/leaflet/mapping";
33

44
L.supermap.plotting.initPlotMapPanel = function(div, plotMapManager){

examples/js/plottingPanel/PlotPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
/* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.*/
2+
/* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.*/
33
L.supermap.plotting.initPlotPanel = function (div, serverUrl, drawControl) {
44
var plotPanel = document.getElementById(div);
55

examples/js/plottingPanel/PlottingPanel.Include.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.*/
1+
/* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.*/
22
(function () {
33
var r = new RegExp("(^|(.*?\\/))(PlottingPanel.Include\.js)(\\?|$)"),
44
s = document.getElementsByTagName('script'), targetScript;

examples/js/plottingPanel/SMLInfosPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.*/
1+
/* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.*/
22
L.supermap.plotting.initSMLInfosPanel = function(div, smlInfos, clickTreeNode){
33
var smlInfosPanel = document.getElementById(div);
44

examples/js/plottingPanel/StylePanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.*/
1+
/* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.*/
22
var selectFeatures = [];
33
//var groupIndex = 0;
44
L.supermap.plotting.initStylePanel = function (div, serverUrl, editControl) {

examples/js/plottingPanel/customEditor/ColorpickerEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.*/
1+
/* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.*/
22
$.extend($.fn.datagrid.defaults.editors, {
33
colorpicker: {
44
init: function (container, options) {

examples/leaflet/plot_addfile.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!--********************************************************************
2-
* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.
2+
* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.
33
*********************************************************************-->
44
<!--********************************************************************
55
* 该示例需要引入
6-
* iclient-plot-leaflet (https://iclient.supermap.io/web/libs/plotting/leaflet/11.1.0/iclient-plot-leaflet.min.js)
6+
* iclient-plot-leaflet (https://iclient.supermap.io/web/libs/plotting/leaflet/12.0.0.0/iclient-plot-leaflet.min.js)
77
*********************************************************************-->
88

99
<!DOCTYPE html>

examples/leaflet/plot_defaultStyle.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!--********************************************************************
2-
* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.
2+
* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.
33
*********************************************************************-->
44
<!--********************************************************************
55
* 该示例需要引入
6-
* iclient-plot-leaflet (https://iclient.supermap.io/web/libs/plotting/leaflet/11.1.0/iclient-plot-leaflet.min.js)
6+
* iclient-plot-leaflet (https://iclient.supermap.io/web/libs/plotting/leaflet/12.0.0.0/iclient-plot-leaflet.min.js)
77
*********************************************************************-->
88
<!DOCTYPE html>
99
<html>

examples/leaflet/plot_drawGeoGraphicObject.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!--********************************************************************
2-
* Copyright© 2000 - 2024 SuperMap Software Co.Ltd. All rights reserved.
2+
* Copyright© 2000 - 2025 SuperMap Software Co.Ltd. All rights reserved.
33
*********************************************************************-->
44
<!--********************************************************************
55
* 该示例需要引入
6-
* iclient-plot-leaflet (https://iclient.supermap.io/web/libs/plotting/leaflet/11.1.0/iclient-plot-leaflet.min.js)
6+
* iclient-plot-leaflet (https://iclient.supermap.io/web/libs/plotting/leaflet/12.0.0.0/iclient-plot-leaflet.min.js)
77
*********************************************************************-->
88
<!DOCTYPE html>
99
<html>

0 commit comments

Comments
 (0)