forked from filippov70/cadXML2GeoJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (157 loc) · 6.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>CadXML2GeoJSON test</title>
<link href="libs/ll/leaflet.css" rel="stylesheet" type="text/css"/>
<link href="libs/jjsonviewer.css" rel="stylesheet" type="text/css"/>
<link href="libs/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<script src="libs/jquery.js" type="text/javascript"></script>
<script src="libs/jquery.xml2json.js" type="text/javascript"></script>
<script src="libs/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="libs/jjsonviewer.js" type="text/javascript"></script>
<script src="libs/ll/leaflet.js" type="text/javascript"></script>
<script src="libs/proj4.js" type="text/javascript"></script>
<script src="libs/proj4leaflet.min.js"></script>
<style>
html, body, #infoPanel, #map {
height: 100%;
width: 100%;
margin: 0px;
}
#info {
width: 35%;
position: absolute;
background: aliceblue;
right: 10px;
top: 10px;
padding: 20px;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
border-radius: 12px;
}
input {
padding-top: 20px;
background-color: transparent;
}
input::-ms-browse {
margin-left: 10px;
}
#kptInfo div div {
padding-left: 20px;
}
.pointer {
cursor: pointer;
}
.hidden {
display: none;
}
.button {
display: inline-block;
outline: none;
cursor: pointer;
border: solid 1px #da7c0c;
margin-top: 10px;
text-align: center;
text-decoration: none;
font: 14px/100% Arial, Helvetica, sans-serif;
padding: .5em 2em .55em;
-webkit-border-radius: .5em;
-moz-border-radius: .5em;
border-radius: .3em;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
background: #f47c20;
background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
background: -moz-linear-gradient(top, #f88e11, #f06015);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.button:active {
position: relative;
top: 1px;
}
.leaflet-popup-content {
max-height: 500px;
overflow-y: auto;
}
.leaflet-popup-content div div {
padding-left: 20px;
}
#cadVersion {
font-weight: bold;
}
#projectionInput {
width: 500px;
height: 70px;
}
</style>
</head>
<body>
<div id="infoPanel">
<div id="map"></div>
<div id="info">
<div>Конветрация XML-файлов Росреестра (КПТ) в формат GeoJSON<br>
Внимание! Некоторые XML-файлы имеют большой размер,<br>
такие файлы могут обрабатываться очень долго.</br>
Нажмите кнопку ниже для выбора XML-файла.</br>Подождите появления надписи 'Экспорт в GeoJSON'
</br></br>Есть вопросы, предложения? </br>Пишите, <a href="https://sites.google.com/site/filippov70/">Филиппов Владислав</a></div>
<input type="file" onChange="window.convertedData.selectFile(this);">
<div id="resCont">
<div id="fileProgress"></div>
<div id="kptInfo"></div>
<!-- <div id="projection" class="hidden">
Текущая проекция:<br>
<textarea id="projectionInput"></textarea><br>
<input type="checkbox" id="useThisProjection" /><label>использовать данную проекцию</label>
</div>-->
<div id="exportCont">
<input type="checkbox" id="convertMSK" class="hidden" />
<label class="hidden">Сохранить в МСК</label>
</div>
</div>
</div>
</div>
<script src="dist/app.js" type="text/javascript"></script>
<script type="text/javascript">
var map = L.map('map', {
// center: [10047010, 8478107],
// zoom: 4,
// crs: L.CRS.EPSG3857
});
window.convertedData.init(map);
</script>
<script type="text/javascript">
(function (d, w, c) {
(w[c] = w[c] || []).push(function () {
try {
w.yaCounter33430738 = new Ya.Metrika({
id: 33430738,
clickmap: true,
trackLinks: true,
accurateTrackBounce: true
});
} catch (e) {
}
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function () {
n.parentNode.insertBefore(s, n);
};
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/watch.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else {
f();
}
})(document, window, "yandex_metrika_callbacks");
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/33430738" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>