-
Notifications
You must be signed in to change notification settings - Fork 1
/
addressCheck.html
42 lines (40 loc) · 1.85 KB
/
addressCheck.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://api-maps.yandex.ru/1.1/index.xml?key=ADSyKU8BAAAAD-VBCwIA5ak5VGynqt5xp2tzedBMfAmF8-kAAAAAAAAAAAD_nM6wtAPq97uJHRvkF_aJL3gRVQ==&modules=pmap" type="text/javascript"></script>
<script type="text/javascript" src="addressCheckMap.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#get_coordinates").click(AddressCheckMap.showCoordinates);
$(document).ready(function() {
$(window).keydown(function(event){
if(event.keyCode == 13) {
event.preventDefault();
return false;
}
});
});
});
</script>
</head>
<body onload="AddressCheckMap.init();">
<h3>Карта</h3>
<div>
<input type="text" id="map_address" value="" size="75" />
<button id="get_coordinates" >Получить координаты</button>
</div>
<div>
X: <input type="text" name="x_coord" id="x_coord" value="" />
Y: <input type="text" name="y_coord" id="y_coord" value="" />
</div>
<div>
Искать по:
<input type="radio" name="type" id="all" value="all" checked="checked" /><label for="all">всё</label>
<input type="radio" name="type" id="house" value="house" /><label for="house">дом</label>
<input type="radio" name="type" id="street" value="street" /><label for="street">улица</label>
<input type="radio" name="type" id="locality" value="locality" /><label for="locality">населённый пункт</label>
</div>
<div id="map" style="height:600px; width: 100%; margin-top: 20px;"></div>
</body>
</html>