-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>2GIS Floors Widget Constructor</title>
<style>
iframe {
border: 1px solid #000;
}
</style>
</head>
<body>
<h1>2GIS Floors Widget Constructor</h1>
Регион: <select id="region"></select><br><br>
Торговый центр: <select id="mall"></select><br><br>
<h4>Размеры виджета задаются числом или процентами:</h4>
Ширина: <input type="text" id="width" value="960"><br><br>
Высота: <input type="text" id="height" value="600"><br><br>
<h4>Дополнительные параметры:</h4>
Язык виджета: <select id="locale">
<option value="ru_RU">Русский</option>
<option value="en_US">Английский</option>
<option value="es_CL">Испанский</option>
</select><br><br>
Начальный поисковой запрос (необязательно): <input type="text" id="query" value=""><br><br>
<input type="button" id="create" value="Применить"><br><br>
<h4>Код для вставки на страницу вашего сайта:</h4>
<textarea id="code" rows="8" cols="140" readonly=""></textarea><br><br>
<h4>Получившийся виджет:</h4>
<script src="./main.js"></script>
</body>
</html>