Extend line range to antipode (20k km), increase city limit to 100, and fix info panel layout

This commit is contained in:
(jenkins)
2026-03-16 20:50:35 +00:00
parent ad07a70125
commit f0767c798c
4 changed files with 224 additions and 48 deletions
+54 -10
View File
@@ -15,6 +15,7 @@ const APP = () => {
const [loading, setLoading] = useState(false);
const [mapStyle, setMapStyle] = useState('light'); // 'light' or 'dark'
const [tolerance, setTolerance] = useState(50);
const [selectedCity, setSelectedCity] = useState(null);
useEffect(() => {
// Initialize MapLibre map
@@ -158,6 +159,7 @@ const APP = () => {
const handleShowLineOfSight = async () => {
setLoading(true);
setSelectedCity(null);
try {
const response = await apiService.getLineOfSight(
selectedPoint.lat,
@@ -217,15 +219,16 @@ const APP = () => {
// Add city markers
data.conurbations.forEach((city, index) => {
const markerId = `city-${index}`;
const displayIndex = index + 1;
// Create marker element
const el = document.createElement('div');
el.className = 'city-marker';
el.innerHTML = `
<div class="marker-number">${displayIndex}</div>
<div class="marker-dot"></div>
<div class="marker-label">${city.name}</div>
<div class="marker-pop">${(city.population / 1000000).toFixed(1)}M</div>
<div class="marker-pop">${(city.population / 1000).toFixed(0)}k</div>
`;
// Add marker to map
@@ -249,7 +252,43 @@ const APP = () => {
return (
<div className="app-container">
<div className="map-container" ref={mapContainerRef}></div>
<div className="map-container" ref={mapContainerRef}>
{selectedCity && (
<div className="info-panel-modal">
<div className="info-panel-content">
<button className="close-btn" onClick={() => setSelectedCity(null)}>&times;</button>
<h2>{selectedCity.name}</h2>
<div className="info-grid">
<div className="info-item">
<label>Country:</label>
<span>{selectedCity.country}</span>
</div>
<div className="info-item">
<label>Population:</label>
<span>{selectedCity.population.toLocaleString()}</span>
</div>
<div className="info-item">
<label>Coordinates:</label>
<span>{selectedCity.lat.toFixed(4)}, {selectedCity.lon.toFixed(4)}</span>
</div>
<div className="info-item">
<label>Distance from Start:</label>
<span>{selectedCity.distance_km} km</span>
</div>
<div className="info-item">
<label>Deviation from Line:</label>
<span>{selectedCity.off_line_km} km</span>
</div>
</div>
<button className="action-btn-small" onClick={() => {
mapRef.current.flyTo({ center: [selectedCity.lon, selectedCity.lat], zoom: 8 });
}}>
📍 Go to City
</button>
</div>
</div>
)}
</div>
<div className="controls">
<div className="control-group">
@@ -302,28 +341,33 @@ const APP = () => {
{lineOfSightData && (
<div className="results-panel">
<h3>Conurbations Found ({lineOfSightData.conurbations.length})</h3>
<p className="hint">Click a city for details</p>
<table>
<thead>
<tr>
<th>#</th>
<th>City</th>
<th>Population</th>
<th>Distance</th>
<th>Dist.</th>
</tr>
</thead>
<tbody>
{lineOfSightData.conurbations.slice(0, 10).map((city, index) => (
<tr key={city.id}>
{lineOfSightData.conurbations.slice(0, 50).map((city, index) => (
<tr
key={city.id}
onClick={() => setSelectedCity(city)}
className={selectedCity?.id === city.id ? 'selected-row' : ''}
>
<td>{index + 1}</td>
<td>{city.name}</td>
<td>{(city.population / 1000000).toFixed(1)}M</td>
<td>{city.distance_km} km</td>
<td>{(city.population / 1000).toFixed(0)}k</td>
<td>{city.distance_km}km</td>
</tr>
))}
</tbody>
</table>
{lineOfSightData.conurbations.length > 10 && (
<p className="more-info">... and {lineOfSightData.conurbations.length - 10} more cities</p>
{lineOfSightData.conurbations.length > 50 && (
<p className="more-info">... and {lineOfSightData.conurbations.length - 50} more</p>
)}
</div>
)}
+134 -5
View File
@@ -3,6 +3,7 @@
height: 100vh;
width: 100vw;
overflow: hidden;
position: relative;
}
.map-container {
@@ -19,6 +20,7 @@
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
overflow-y: auto;
z-index: 2;
position: relative;
}
.control-group {
@@ -62,6 +64,7 @@
.setting-row span {
font-weight: bold;
color: #2c3e50;
min-width: 40px;
}
.setting-row button {
@@ -112,7 +115,14 @@
margin-top: 0;
color: #2c3e50;
font-size: 16px;
margin-bottom: 15px;
margin-bottom: 5px;
}
.results-panel .hint {
font-size: 11px;
color: #7f8c8d;
margin-bottom: 10px;
font-style: italic;
}
.results-panel table {
@@ -124,21 +134,114 @@
.results-panel th {
background: #34495e;
color: white;
padding: 10px;
padding: 8px 4px;
text-align: left;
}
.results-panel td {
padding: 8px;
padding: 8px 4px;
border-bottom: 1px solid #ddd;
cursor: pointer;
}
.results-panel tr:nth-child(even) {
background: #f8f9fa;
background: #fdfdfd;
}
.results-panel tr:hover {
background: #e9ecef;
background: #ecf0f1;
}
.results-panel tr.selected-row {
background: #d5e8d4 !important;
font-weight: bold;
}
.info-panel-modal {
position: absolute;
top: 20px;
left: 20px;
width: 280px;
background: white;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
z-index: 1000;
animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
from { opacity: 0; transform: translateX(-20px); }
to { opacity: 1; transform: translateX(0); }
}
.info-panel-content {
padding: 20px;
position: relative;
}
.info-panel-content h2 {
margin-top: 0;
margin-bottom: 15px;
font-size: 18px;
color: #2c3e50;
border-bottom: 2px solid #4CAF50;
padding-bottom: 8px;
}
.close-btn {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #95a5a6;
}
.close-btn:hover {
color: #34495e;
}
.info-grid {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
.info-item {
display: flex;
flex-direction: column;
}
.info-item label {
font-size: 11px;
color: #7f8c8d;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.info-item span {
font-size: 14px;
color: #2c3e50;
font-weight: 500;
}
.action-btn-small {
width: 100%;
padding: 8px;
background: #3498db;
color: white;
border: none;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
transition: background 0.2s;
}
.action-btn-small:hover {
background: #2980b9;
}
.more-info {
@@ -177,6 +280,23 @@
flex-direction: column;
align-items: center;
font-family: sans-serif;
z-index: 100;
}
.marker-number {
background: #2c3e50;
color: white;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: bold;
margin-bottom: -4px;
border: 1px solid white;
z-index: 2;
}
.marker-dot {
@@ -186,6 +306,7 @@
border: 2px solid white;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0,0,0,0.3);
z-index: 1;
}
.marker-label {
@@ -223,4 +344,12 @@
.map-container {
height: 60vh;
}
.info-panel-modal {
left: 10px;
right: 10px;
width: auto;
bottom: 20px;
top: auto;
}
}