Skip to content

Commit 07225f9

Browse files
committed
修改例子style
1 parent 608e8e2 commit 07225f9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/leaflet/SummaryMeshJobService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h4 class="modal-title">提示</h4>
3636

3737
info.onAdd = function () {
3838
var popup = L.DomUtil.create('div');
39-
popup.style = 'width:350px';
39+
popup.style.width = '350px';
4040
popup.innerHTML = "<div class='panel panel-default'>" +
4141
"<div class='panel-heading'>" +
4242
"<h3 class='panel-title'>点聚合分析</h3>" +

examples/leaflet/SummaryRegionJobService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h4 class="modal-title">提示</h4>
3636

3737
info.onAdd = function () {
3838
var popup = L.DomUtil.create('div');
39-
popup.style = 'width:420px';
39+
popup.style.width = '420px';
4040
popup.innerHTML = "<div class='panel panel-default'>" +
4141
"<div class='panel-heading'>" +
4242
"<h3 class='panel-title'>区域汇总分析</h3>" +

examples/leaflet/addressMatchService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
var control = L.control({position: 'topright'});
2525
control.onAdd = function () {
2626
var popup = L.DomUtil.create('div');
27-
popup.style = 'width:20%';
27+
popup.style.width = '20%';
2828
popup.innerHTML = "<div class='panel panel-default'>" +
2929
"<div class='panel-body'>" +
3030
"<ul class='nav nav-tabs nav-justified'>" +

examples/leaflet/kernelDensityJobService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h4 class="modal-title">提示</h4>
3636

3737
info.onAdd = function () {
3838
var popup = L.DomUtil.create('div');
39-
popup.style = 'width:300px';
39+
popup.style.width = '300px';
4040
popup.innerHTML = "<div class='panel panel-default'>" +
4141
"<div class='panel-heading'>" +
4242
"<h3 class='panel-title'>密度分析</h3>" +

examples/leaflet/singleObjectQueryJobService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ <h4 class="modal-title">提示</h4>
4545
info = L.control({position: 'topright'});
4646
info.onAdd = function () {
4747
var popup = L.DomUtil.create('div');
48-
popup.style = 'width:350px';
48+
popup.style.width = '350px';
4949
popup.innerHTML = "<div class='panel panel-default'>" +
5050
"<div class='panel-heading'>" +
5151
"<h3 class='panel-title'>单对象查询分析</h3>" +

examples/leaflet/vectorClipJobService.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h4 class="modal-title">提示</h4>
4444
info = L.control({position: 'topright'});
4545
info.onAdd = function () {
4646
var popup = L.DomUtil.create('div');
47-
popup.style = 'width:350px';
47+
popup.style.width = '350px';
4848
popup.innerHTML = "<div class='panel panel-default'>" +
4949
"<div class='panel-heading'>" +
5050
"<h3 class='panel-title'>矢量裁剪分析</h3>" +

0 commit comments

Comments
 (0)