Vue Leaflet map tiles in wrong order
问题 I just trying Vue Leaflet and trying to use this example. But when I try it in my local server, the map has wrong order. Here's my code <template> <div class="home"> <l-map :zoom="zoom" :center="center"> <l-tile-layer :url="url" :attribution="attribution"></l-tile-layer> <l-polygon v-for="s in shapes" :key="s.id" :color="s.color" :lat-lngs="s.geometry.coordinates" @l-mouseover=change_color(s) > </l-polygon> </l-map> </div> </template> <script> import { LMap, LPolygon, LTileLayer } from 'vue2