diff --git a/src/components/WorldMap.jsx b/src/components/WorldMap.jsx
index 4347b98..848e9d7 100644
--- a/src/components/WorldMap.jsx
+++ b/src/components/WorldMap.jsx
@@ -13,6 +13,7 @@ import {
import { filterDXPaths, getBandColor } from '../utils/callsign.js';
import { getAllLayers } from '../plugins/layerRegistry.js';
+import { IconSatellite, IconTag, IconSun, IconMoon } from './Icons.jsx';
import PluginLayer from './PluginLayer.jsx';
import { DXNewsTicker } from './DXNewsTicker.jsx';
@@ -299,24 +300,24 @@ export const WorldMap = ({
const sunPos = getSunPosition(new Date());
const sunIcon = L.divIcon({
className: 'custom-marker sun-marker',
- html: 'β',
+ html: 'βΌ',
iconSize: [24, 24],
iconAnchor: [12, 12]
});
sunMarkerRef.current = L.marker([sunPos.lat, sunPos.lon], { icon: sunIcon })
- .bindPopup(`
β Subsolar Point${sunPos.lat.toFixed(2)}Β°, ${sunPos.lon.toFixed(2)}Β°`)
+ .bindPopup(`
βΌ Subsolar Point${sunPos.lat.toFixed(2)}Β°, ${sunPos.lon.toFixed(2)}Β°`)
.addTo(map);
// Moon marker
const moonPos = getMoonPosition(new Date());
const moonIcon = L.divIcon({
className: 'custom-marker moon-marker',
- html: 'π',
+ html: 'β½',
iconSize: [24, 24],
iconAnchor: [12, 12]
});
moonMarkerRef.current = L.marker([moonPos.lat, moonPos.lon], { icon: moonIcon })
- .bindPopup(`
π Sublunar Point${moonPos.lat.toFixed(2)}Β°, ${moonPos.lon.toFixed(2)}Β°`)
+ .bindPopup(`
β½ Sublunar Point${moonPos.lat.toFixed(2)}Β°, ${moonPos.lon.toFixed(2)}Β°`)
.addTo(map);
}, [deLocation, dxLocation]);
@@ -480,14 +481,14 @@ export const WorldMap = ({
// Add satellite marker icon
const icon = L.divIcon({
className: '',
- html: `
π° ${sat.name}`,
+ html: `
β ${sat.name}`,
iconSize: null,
iconAnchor: [0, 0]
});
const marker = L.marker([sat.lat, sat.lon], { icon })
.bindPopup(`
-
π° ${sat.name}
+
β ${sat.name}
| Mode: | ${sat.mode || 'Unknown'} |
| Alt: | ${sat.alt} km |
@@ -777,6 +778,7 @@ export const WorldMap = ({
{onToggleSatellites && (
)}
@@ -800,6 +802,7 @@ export const WorldMap = ({
{onToggleDXLabels && showDXPaths && (
)}
@@ -865,8 +868,8 @@ export const WorldMap = ({
)}
- β Sun
- π Moon
+ βΌ Sun
+ β½ Moon