Add geographic coordinates to IP data and enhance map visualization
Publish telemt-api gateway Docker image / test (push) Successful in 24s
Publish telemt-api gateway Docker image / build-and-push (push) Successful in 1m55s

- Introduced latitude and longitude fields in the IP data structure to support geographic information.
- Updated the API documentation to reflect the inclusion of geographic coordinates in the unique IPs endpoint.
- Enhanced the UI to display a map of connections using Leaflet, providing a visual representation of IP locations based on the new geographic data.
- Improved the handling of GeoIP data to ensure accurate mapping and user experience when GeoIP is enabled.
This commit is contained in:
Denozordec
2026-03-30 15:26:14 +07:00
parent b69f2dd0e4
commit 452ee4f6f1
12 changed files with 197 additions and 5 deletions
+4
View File
@@ -310,6 +310,10 @@ export interface components {
country_code?: string | null;
country_name?: string | null;
city_name?: string | null;
/** Format: float */
latitude?: number | null;
/** Format: float */
longitude?: number | null;
/** Format: int64 */
asn?: number | null;
as_organization?: string | null;