diff --git a/client/app/controllers/ships/get.ts b/client/app/controllers/ships/get.ts
index 558f666..151c53b 100644
--- a/client/app/controllers/ships/get.ts
+++ b/client/app/controllers/ships/get.ts
@@ -5,13 +5,21 @@ import { service } from '@ember/service';
import Ship from 'sokown-client/models/ship';
import type CurrentUserService from 'sokown-client/services/current-user';
+import type LocationsService from 'sokown-client/services/locations';
+import type Location from 'sokown-client/models/location';
export default class ShipsGetController extends Controller {
@service declare currentUser: CurrentUserService;
+ @service declare locations: LocationsService;
+
declare model: Ship;
@tracked newDestinationPositionX = '';
@tracked newDestinationPositionY = '';
+ get starMapLocations(): Location[] {
+ return this.locations.getAll();
+ }
+
@action
async setDestination(event: Event) {
event.preventDefault();
diff --git a/client/app/templates/ships/get.hbs b/client/app/templates/ships/get.hbs
index 6fae0d8..2cf88f4 100644
--- a/client/app/templates/ships/get.hbs
+++ b/client/app/templates/ships/get.hbs
@@ -49,6 +49,8 @@
+