I am trying to render an OpenStreet map by vue-leaflet. But I facing an incomplete rendering problem. The map not showing with full view, rather it's loading partially and not sequentially.
Here is my code
<template>
<l-map
v-show="loadingMap"
:zoom="zoom"
:center="center"
:options="{ zoomControl: false }"
>
<l-tile-layer :url="url"></l-tile-layer>
</l-map>
</template>
I found in some StackOverflow answers, it's suggested to import leaflet.css and I added leaflet.css in the main.js file. (for the sandbox example it's in index.html), but still, it's not working
How can I see the map fully & with an actual map view (not partially loaded like now)?
Codesandbox link: https://codesandbox.io/s/silent-glade-1yqe8?file=/src/App.vue:31-212