From f333557c8bf0a74eb7b88d6294dea2a420b1ec61 Mon Sep 17 00:00:00 2001 From: Aijana Schumann Date: Thu, 18 Feb 2021 10:55:11 +0100 Subject: Update NetworkMap and LinkCalculator Update NetworkMap and LinkCalculator to use the topology-server-v2 API, minior bugfixes for NetworkMap Issue-ID: CCSDK-3172 Signed-off-by: Aijana Schumann Change-Id: Ia5690c5039d7a9431443bc131fe398cc79d08287 --- sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts') diff --git a/sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts b/sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts index e11be1a68..d992c66db 100644 --- a/sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts +++ b/sdnr/wt/odlux/apps/networkMapApp/src/model/link.ts @@ -23,8 +23,8 @@ export type link = {id: string, type: string, siteA: string, siteB: string, - azimuthA: number, - azimuthB: number, - locationA: { lon: number, lat: number, amsl?:number, antennaHeight?: number }, - locationB: { lon: number, lat: number, amsl?:number, antennaHeight?: number }, + azimuthA: number | null, + azimuthB: number | null, + locationA: { lon: number, lat: number, amsl:number | null, antennaHeight: number | null }, + locationB: { lon: number, lat: number, amsl:number | null, antennaHeight: number | null }, }; \ No newline at end of file -- cgit 1.2.3-korg