From 5e1267977b2e8e81a78b115719dcbe9599d94eb0 Mon Sep 17 00:00:00 2001 From: Marcelino Date: Mon, 11 Dec 2023 14:25:24 +0000 Subject: [PATCH] Fix duplicated methods on Circle --- src/Providers/Maps/Leaflet/Shape/Circle.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/Providers/Maps/Leaflet/Shape/Circle.ts b/src/Providers/Maps/Leaflet/Shape/Circle.ts index c0d486fd..4e68b843 100644 --- a/src/Providers/Maps/Leaflet/Shape/Circle.ts +++ b/src/Providers/Maps/Leaflet/Shape/Circle.ts @@ -113,19 +113,6 @@ namespace Provider.Maps.Leaflet.Shape { }; } - protected getShapeCoordinates(): OSFramework.Maps.OSStructures.OSMap.CircleCoordinates { - return { - coordinates: { - Lat: this.providerCenter.lat, - Lng: this.providerCenter.lng - }, - location: { - location: `${this.providerCenter.lat.toString()},${this.providerCenter.lng.toString()}`, - radius: this.providerRadius - } - }; - } - public build(): void { super.build(); // First build center coordinates based on the location