Fix searchbox css

pull/13/head
Anthony Catel 2022-03-30 12:08:14 +02:00
rodzic 018168af8d
commit 1b8e97ed82
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
<template> <template>
<div class="w-full h-full"> <div class="w-full h-full">
<input ref="pacinput" class="controls" :class="[mapLoaded ? '' : 'hidden']" type="text" placeholder="Search Box"> <input ref="pacinput" id="pac-input" class="controls" :class="[mapLoaded ? '' : 'hidden']" type="text" placeholder="Search Box">
<div class="w-full h-full" ref="mapel"></div> <div class="w-full h-full" ref="mapel"></div>
</div> </div>
</template> </template>
@ -111,7 +111,6 @@
["insert_at", "remove_at", "set_at"].forEach(ev => google.maps.event.addListener(poly.getPath(), ev, surfaceUpdated)); ["insert_at", "remove_at", "set_at"].forEach(ev => google.maps.event.addListener(poly.getPath(), ev, surfaceUpdated));
updatePolygonColor(); updatePolygonColor();
mapLoaded.value = true; mapLoaded.value = true;
}); });
}) })