duheng
2025-03-28 e411302bca8857e102443a5250c82b9580ef07a3
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
.info-box {
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    font-size: 12px;
    right: 10px;
    top: 20px;
    border-radius: 3px;
    border: 1px solid #ccc;
    line-height: 30px;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    width: auto;
    min-width: 10rem;
    box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
}
 
.search-box {
    position: absolute;
    top: 20px;
    left: 10px;
    background: white;
    height: 30px;
    border-radius: 30px;
    border: solid;
    border-color: lightgray;
    border-width: 1px;
    padding: 10px;
}
 
.search-button {
    color: black;
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/search.png);
    background-repeat: no-repeat;
    background-position: center;
}
 
.search-text {
    border: none;
    background: white;
    outline: none;
    float: left;
    padding: 0 6px;
    color: black;
    font-size: 16px;
    transition: 0.4s;
    line-height: 30px;
    width: 300px;
    display: none;
}
 
.location-box {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    background-image: url(../img/locate.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 100%;
    cursor: pointer;
    background-color: rgb(0, 0, 0,0);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    display: none;
}
 
    .location-box:hover {
        transform: translateX(-50%) scale(1.1)
    }
 
.draw-button-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
}
 
 
    .draw-button:hover {
        color: blue;
    }
 
    .draw-button-group .draw-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 15px;
        margin: 10px;
        text-align: center;
        display: block;
    }
 
.draw-button-group input[type="button"]:disabled {
    cursor: not-allowed;
    background-color: gray;
    color: white;
    border-color: gray;
}
 
#draw_marker_box {
    height: 130px;
}
 
#edit_draw_box {
    height: 130px;
}
 
#draw_polygon_box {
    height: 250px;
}
 
.input-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
    width: 22rem;
    border-width: 0;
    border-radius: 0.4rem;
    box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0.75rem 1.25rem;
}
 
.input-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 1.3rem;
}
 
    .input-item:last-child {
        margin-bottom: 0;
    }
 
.view-box {
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    font-size: 12px;
    right: 10px;
    bottom: 20px;
    border-radius: 3px;
    border: 1px solid #ccc;
    line-height: 30px;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    width: auto;
    min-width: 10rem;
    box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
}
 
.view-box-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 2rem;
}