- Introduced MapErrorBoundary component to handle map loading errors gracefully. - Enhanced MapView with a reconnection status indicator for live updates. - Added tile freshness animation to indicate updated tiles visually. - Preloaded marker icon images to improve rendering performance. - Updated various pages to utilize the new MapErrorBoundary for better user experience.
11 lines
173 B
Vue
11 lines
173 B
Vue
<template>
|
|
<MapPageWrapper>
|
|
<MapErrorBoundary>
|
|
<MapView />
|
|
</MapErrorBoundary>
|
|
</MapPageWrapper>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|