Top

Maps


<!--leaflet Map start -->
<Map {options} />
To use map js you have to add the following script files
<!--leaflet Map js-->
<script>
import Map from '@anoram/leaflet-svelte';
 let options = {
  center: [13, 80],
  markers: [
    {
      lat: 13,
      lng: 80,
    },
  ],
  mapID: 'map',
}
</script>