Skip to content

Commit

Permalink
Fix duplicated methods on Circle
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarcelino-fe committed Dec 11, 2023
1 parent 98ae6a8 commit 5e12679
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/Providers/Maps/Leaflet/Shape/Circle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5e12679

Please sign in to comment.