mirror of
https://gitlab.com/mobicoop/v3/service/territory.git
synced 2026-03-28 05:05:50 +00:00
find territories for a point
This commit is contained in:
9
src/modules/territories/domain/entities/point.ts
Normal file
9
src/modules/territories/domain/entities/point.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class Point {
|
||||
lon: number;
|
||||
lat: number;
|
||||
|
||||
constructor(lon: number, lat: number) {
|
||||
this.lon = lon;
|
||||
this.lat = lat;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user