You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is part of the feature "Groups":
To visualize teams, or as we call it at AOE "circles", it should be possible to define groups. To accommodate for different use cases, there are two different variants for grouping. This feature is part of "Map groups (area)":
Draw an area in a specific location (map), which is assign a name (and maybe other properties).
Use cases: team areas, event spaces, children area, ...
This contains CRUD for groups
Endpoints
GET/api/groups/ - Get all groups
POST/api/groups/ - Create a new group
GET/api/groups/:id - Get group data by ID
PUT/api/groups/:id - Update a group
DELETE/api/groups/:id - Delete a group
Entity Group
id: string (UUID)
name: string
description: string
coordinates: Coordinate[]
ValueObject Coordinate ?
lat: number
lng: number
The text was updated successfully, but these errors were encountered:
This is part of the feature "Groups":
To visualize teams, or as we call it at AOE "circles", it should be possible to define groups. To accommodate for different use cases, there are two different variants for grouping. This feature is part of "Map groups (area)":
Draw an area in a specific location (map), which is assign a name (and maybe other properties).
Use cases: team areas, event spaces, children area, ...
This contains CRUD for groups
GET
/api/groups/
- Get all groupsPOST
/api/groups/
- Create a new groupGET
/api/groups/:id
- Get group data by IDPUT
/api/groups/:id
- Update a groupDELETE
/api/groups/:id
- Delete a groupGroup
id
: string (UUID)name
: stringdescription
: stringcoordinates
: Coordinate[]Coordinate
?lat
: numberlng
: numberThe text was updated successfully, but these errors were encountered: