Skip to content

Commit de29f58

Browse files
修改VT中的注释;修改示例中src的引用地址。
1 parent e24df06 commit de29f58

17 files changed

+25
-25
lines changed

examples-test/base/commonTools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var commonTools = ({
88

99
/*
1010
* function: open specific example and assert elements 'body','#map' present
11-
* params: broswer ;
11+
* params: browser ;
1212
* type(String) - serviceType, eg:'leaflet'、'openlayers' etc.
1313
* exampleName(String) - eg:'01_tiledMapLayer3857' etc.
1414
* */
@@ -28,7 +28,7 @@ var commonTools = ({
2828
/*
2929
* if standard tile not exist , use this function to get standard tile.
3030
* function: getStdTile
31-
* params: broswer ;
31+
* params: browser ;
3232
* type(String) - serviceType, eg:'leaflet'、'openlayers'、'3dwebgl'、'mapboxgl' etc.
3333
* exampleName(String) - eg:'01_tiledMapLayer3857' etc.
3434
* standardTilePrams(offsetX, offsetY, width, height).

examples-test/leaflet/01_overlayTiledMapLayerIT.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
var type = 'leaflet';
55
var exampleName = '01_overlayTiledMapLayer';
66
commonTools.openExampleAndLoadMap(browser, type, exampleName);
7-
//commonTools.getStdTile(browser, type, exampleName, 256, 256);
7+
//测试过程中截取地图瓦片, 和已有的标准瓦片进行对比
88
commonTools.cmpTestTileWithStdTile(browser, type, exampleName, 256, 256);
99
browser.end();
1010
}

examples-test/leaflet/01_tiledMapLayer3857IT.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
var type = 'leaflet';
55
var exampleName = '01_tiledMapLayer3857';
66
commonTools.openExampleAndLoadMap(browser, type, exampleName);
7-
//commonTools.getStdTile(browser, type, exampleName, 256, 256);
7+
//测试过程中截取地图瓦片, 和已有的标准瓦片进行对比
88
commonTools.cmpTestTileWithStdTile(browser, type, exampleName, 256, 256);
99
browser.end();
1010
}

examples-test/leaflet/01_tiledMapLayer4326IT.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
var type = 'leaflet';
55
var exampleName = '01_tiledMapLayer4326';
66
commonTools.openExampleAndLoadMap(browser, type, exampleName);
7-
//commonTools.getStdTile(browser, type, exampleName, 256, 256);
7+
//测试过程中截取地图瓦片, 和已有的标准瓦片进行对比
88
commonTools.cmpTestTileWithStdTile(browser, type, exampleName, 256, 256);
99
browser.end();
1010
}

examples-test/leaflet/01_tiledMapLayerNonEarthIT.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
var type = 'leaflet';
55
var exampleName = '01_tiledMapLayerNonEarth';
66
commonTools.openExampleAndLoadMap(browser, type, exampleName);
7-
//commonTools.getStdTile(browser, type, exampleName, 256, 256);
7+
//测试过程中截取地图瓦片, 和已有的标准瓦片进行对比
88
commonTools.cmpTestTileWithStdTile(browser, type, exampleName, 256, 256);
99
browser.end();
1010
}

examples/leaflet/04_densityKernelAnalystService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
1212

1313
<script type="text/javascript" src="http://cdn.bootcss.com/leaflet/1.0.3/leaflet.js"></script>
14-
<script type="text/javascript" src="../../dist/iclient9-leaflet.js"></script>
14+
<script type="text/javascript" src="../../dist/iclient9-leaflet.min.js"></script>
1515
<script type="text/javascript">
1616
var map, densityAnalystService, densityAnalystParameters, densityAnalystResult,
1717
themeService, themeGridRange, themeParameters, themeLayer,

examples/leaflet/04_interpolationAnalystService_Density.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
1212

1313
<script type="text/javascript" src="http://cdn.bootcss.com/leaflet/1.0.3/leaflet.js"></script>
14-
<script type="text/javascript" src="../../dist/iclient9-leaflet.js"></script>
14+
<script type="text/javascript" src="../../dist/iclient9-leaflet.min.js"></script>
1515
<script type="text/javascript">
1616
var map, interpolationAnalystService, interpolationAnalystParameters, interpolationAnalystResult,
1717
themeService, themeGridRange, themeParameters, themeLayer,

examples/leaflet/04_interpolationAnalystService_IDW_dataset.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
1212

1313
<script type="text/javascript" src="http://cdn.bootcss.com/leaflet/1.0.3/leaflet.js"></script>
14-
<script type="text/javascript" src="../../dist/iclient9-leaflet.js"></script>
14+
<script type="text/javascript" src="../../dist/iclient9-leaflet.min.js"></script>
1515
<script type="text/javascript">
1616
var map, interpolationAnalystService, interpolationAnalystParameters, interpolationAnalystResult,
1717
themeService, themeGridRange, themeParameters, themeLayer,

examples/leaflet/04_interpolationAnalystService_IDW_geometry.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
1212

1313
<script type="text/javascript" src="http://cdn.bootcss.com/leaflet/1.0.3/leaflet.js"></script>
14-
<script type="text/javascript" src="../../dist/iclient9-leaflet.js"></script>
14+
<script type="text/javascript" src="../../dist/iclient9-leaflet.min.js"></script>
1515
<script type="text/javascript">
1616
var map, interpolationAnalystService, interpolationAnalystParameters, interpolationAnalystResult, points,
1717
themeService, themeGridRange, themeParameters, themeLayer,

examples/leaflet/04_interpolationAnalystService_Kriging.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
1212

1313
<script type="text/javascript" src="http://cdn.bootcss.com/leaflet/1.0.3/leaflet.js"></script>
14-
<script type="text/javascript" src="../../dist/iclient9-leaflet.js"></script>
14+
<script type="text/javascript" src="../../dist/iclient9-leaflet.min.js"></script>
1515
<script type="text/javascript">
1616
var map, interpolationAnalystService, interpolationAnalystParameters, interpolationAnalystResult,
1717
themeService, themeGridRange, themeParameters, themeLayer,

0 commit comments

Comments
 (0)