blob: f3b74eb61d191cf6b9d5c347780112ac03c293e4 (
plain)
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
|
html,
body,
#map {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map {
position: absolute;
background: #fff;
}
#header {
padding: 0px;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
width: 100%;
height: 52px;
z-index: 1000;
}
#searchtext {
position: absolute;
width: auto;
height: auto;
margin: 0;
top: 8px;
left: 8px;
right: 52px;
bottom: 8px;
font-size: 16px;
}
#result {
display: none;
margin: 0;
padding: 0;
z-index: 9999;
position: absolute;
width: 50%;
max-width: 494px;
border-radius: 5px;
border: solid #ccc 2px;
}
#result ul li,
#result ul {
margin: 0;
padding: 0 3px;
background-color: #eee;
list-style: none;
cursor: pointer;
cursor: hand;
}
li.selected {
font-weight: bold;
}
.btn3m {
position: absolute;
top: 8px;
padding: 5px;
}
#btnsearch {
right: 52px;
}
#btnmarker {
right: 8px;
}
#search-icon {
width: 24px;
height: 24px;
background: url(images/search.png) no-repeat;
background-position: center;
background-size: auto 100%;
}
#marker-icon {
width: 24px;
height: 24px;
background: url(images/marker-icon-red.png) no-repeat;
background-position: center;
background-size: auto 100%;
}
.active #marker-icon {
background-image: url(images/marker-icon-grey.png);
}
#footer {
display: none;
position: absolute;
left: 0px;
right: 0px;
bottom: 0px;
height: 52px;
text-align: center;
background: rgba(255, 255, 255, 0.8);
}
#footer.visible {
display: block;
}
#url {
margin-top: 8px;
width: 100%;
max-width: 800px;
height: 34px;
font-size: 16px;
}
|