Merge branch 'development' of github.com:seanmorley15/AdventureLog into development
This commit is contained in:
@@ -840,14 +840,17 @@
|
|||||||
>
|
>
|
||||||
{#each adventures as adventure}
|
{#each adventures as adventure}
|
||||||
{#if adventure.longitude && adventure.latitude}
|
{#if adventure.longitude && adventure.latitude}
|
||||||
<DefaultMarker lngLat={{ lng: adventure.longitude, lat: adventure.latitude }}>
|
<Marker lngLat={{ lng: adventure.longitude, lat: adventure.latitude }}>
|
||||||
|
<span class="text-xl">
|
||||||
|
{adventure.category?.icon}
|
||||||
|
</span>
|
||||||
<Popup openOn="click" offset={[0, -10]}>
|
<Popup openOn="click" offset={[0, -10]}>
|
||||||
<div class="text-lg text-black font-bold">{adventure.name}</div>
|
<div class="text-lg text-black font-bold">{adventure.name}</div>
|
||||||
<p class="font-semibold text-black text-md">
|
<p class="font-semibold text-black text-md">
|
||||||
{adventure.category?.display_name + ' ' + adventure.category?.icon}
|
{adventure.category?.display_name + ' ' + adventure.category?.icon}
|
||||||
</p>
|
</p>
|
||||||
</Popup>
|
</Popup>
|
||||||
</DefaultMarker>
|
</Marker>
|
||||||
{/if}
|
{/if}
|
||||||
{/each}
|
{/each}
|
||||||
{#each transportations as transportation}
|
{#each transportations as transportation}
|
||||||
|
|||||||
Reference in New Issue
Block a user