component Map { props { @event ready = function @event move = function @event zoom = function @event markerClick = function size = "default" color = "primary" title = "Map" description = "" items = [] variant = "default" class = "" } view {
{#if title}{title}{/if} {#if description}

{description}

{/if} {#if items}
{#each items as item}{item.label}{/each}
{/if}
} }