book search 25km

This commit is contained in:
Benjamin Takats
2023-01-14 18:49:28 +01:00
parent f21bd3e15f
commit 8120b13bff
4 changed files with 26 additions and 4 deletions

View File

@@ -14,6 +14,26 @@
<p class="px-0 mb-6 text-lg text-gray-600 md:text-xl">
{{ __('Search out a public bookcase') }}
</p>
<div class="w-1/2">
<div class="rounded" wire:ignore>
@if($markers[0] ?? false)
<style>
.gnw-map-service {
z-index: 0 !important;
}
</style>
<div>
@map([
'lat' => $markers[0]['lat'],
'lng' => $markers[0]['lng'],
'zoom' => 12,
'markers' => $markers
])
</div>
@endif
</div>
</div>
</div>
<livewire:tables.book-case-table :country="$country->code"/>