Skip to content

Commit 0ae6e67

Browse files
committed
2 parents c9e98f2 + 1ece4b1 commit 0ae6e67

File tree

85 files changed

+788
-422
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+788
-422
lines changed

examples/classic/addressMatchService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</head>
2222
<body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%">
2323
<div id="map" style="width: 100%;height:100%"></div>
24-
<div id="control" class="control" style='width:20%'>
24+
<div id="control" class="control" style='width:350px'>
2525
<div class="panel panel-default">
2626
<div class="panel-body">
2727
<ul class="nav nav-tabs nav-justified">

examples/classic/controler_drawGeometry.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ <h5 class='panel-title text-center' data-i18n="resources.text_drawGeometry"></h5
7272
new SuperMap.Control.LayerSwitcher()
7373
, drawPoint, drawLine, drawPolygon, selectCtrl, modifyCtrl]
7474
});
75-
layer = new SuperMap.Layer.CloudLayer();
75+
layer = new SuperMap.Layer.OSM("OSM");
7676
addLayer();
7777
//layer.events.on({"layerInitialized":addLayer});
7878
vecotrLayer.style = {

examples/classic/map_cloudLayer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
})]
2626
});
2727

28-
layer = new SuperMap.Layer.CloudLayer();
28+
layer = new SuperMap.Layer.OSM("OSM");
2929
map.addLayers([layer]);
3030
map.setCenter(new SuperMap.LonLat(11339634.286396, 4588716.5813769), 4);
3131
</script>

examples/classic/others_contextMenu.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
}
4141
</style>
4242
</head>
43-
<body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;;">
43+
<body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;">
4444

4545
<div id="map" style="margin:0 auto;width: 100%;height: 100%;"></div>
4646
<div id="myMenu">

examples/classic/others_d3_zoomablePacking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#box > div {
2121
overflow: hidden;
22-
overflow: hidden;;
22+
overflow: hidden;
2323
text-align: center;
2424
opacity: 0.7;
2525
}

examples/classic/others_echart_graphBar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
control = new SuperMap.Control.UTFGrid({
9595
layers: [utfgrid],
9696
callback: callback,
97-
handlerMode: "move"
97+
handlerMode: "hover"
9898
});
9999
map.addControl(control);
100100
}

examples/classic/vizLayer_animatorBase.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_animatorBase"></h
7373
})]
7474
});
7575
map.addControl(new SuperMap.Control.LayerSwitcher(), new SuperMap.Pixel(42, 80));
76-
layer = new SuperMap.Layer.CloudLayer();
76+
layer = new SuperMap.Layer.OSM("OSM");
7777

7878
map.addLayers([layer]);
7979

examples/classic/vizLayer_animatorLine.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_animatorLine"></h
101101
})],
102102
projection: "EPSG:3857"
103103
});
104-
layer = new SuperMap.Layer.CloudLayer();
104+
layer = new SuperMap.Layer.OSM("OSM");
105105
//初始化动画矢量图层
106106
animatorVector = new SuperMap.Layer.AnimatorVector("Train", {}, {
107107
//设置速度为每帧播放0.01小时的数据

examples/classic/vizLayer_animatorMetro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_animatorMetro"></
174174
})],
175175
projection: "EPSG:3857"
176176
});
177-
layer = new SuperMap.Layer.CloudLayer();
177+
layer = new SuperMap.Layer.OSM("OSM");
178178
addLayer();
179179
}
180180

examples/classic/vizLayer_animatorMetro2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h5 class='panel-title text-center' data-i18n="resources.title_animatorMetro2"><
183183
})],
184184
projection: "EPSG:3857"
185185
});
186-
layer = new SuperMap.Layer.CloudLayer();
186+
layer = new SuperMap.Layer.OSM("OSM");
187187
addLayer();
188188
map.events.on({"zoomend": showLayer});
189189
}

0 commit comments

Comments
 (0)