-
Notifications
You must be signed in to change notification settings - Fork 41
Description
When viewing FleetOps, map markers (e.g., places, orders, or other entities) frequently appear as broken image icons.
This appears to be caused by missing marker image assets referenced in the code.
Specifically, multiple components reference the following files under assets/images/:
- marker-icon.png
- marker-icon-2x.png
- marker-shadow.png
However, these files are not present in the repository. The assets/images/ directory currently contains:
- map-marker.png
- building-marker.png
- drawing-controls-spritesheet-inverted.png
Because the expected marker assets are missing, the browser returns 404s for these image requests, resulting in broken image icons on the map.
This pattern appears in multiple parts of the codebase (e.g., Leaflet map configuration and related components), suggesting a systemic asset mismatch rather than a localized issue.
There may be additional missing or misreferenced assets beyond the examples above.
