Skip to content

Commit

Permalink
Frontend: Fix anchor location
Browse files Browse the repository at this point in the history
  • Loading branch information
bierik committed Sep 7, 2024
1 parent 6f4df49 commit 0c84bf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/pages/map/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ const router = useRouter();
const pinIcon = L.icon({
iconUrl: pinIconPath,
iconSize: [38, 38],
iconAnchor: [0, 38],
iconAnchor: [19, 19],
popupAnchor: [19, -38],
});
const meIcon = L.icon({
iconUrl: meIconPath,
iconSize: [38, 38],
iconAnchor: [0, 38],
iconAnchor: [19, 19],
popupAnchor: [19, -38],
});
Expand Down

0 comments on commit 0c84bf4

Please sign in to comment.