Get Map Markers

This endpoint runs in game thread.

Lists all Map Markers Configured.

Response Body

Name Type Description

ID

String

Unique ID of the Map Marker.

Name

String

Name of the Map Marker.

Category

String

Category Name (used for custom map markers).

MapMarkerType

String

Enum Value of ERepresentationType
- RT_Default: Default
- RT_Beacon: Beacon
- RT_Crate: Crate
- RT_Hub: Hub
- RT_Ping: Ping
- RT_Player: Player
- RT_RadarTower: Radar Tower
- RT_Resource: Resource
- RT_SpaceElevator: Space Elevator
- RT_StartingPod: Starting Pod
- RT_Train: Train
- RT_TrainStation: Train Station
- RT_Vehicle: Vehicle
- RT_VehicleDockingStation: Vehicle Docking Station
- RT_DronePort: DronePort
- RT_Drone: Drone
- RT_MapMarker: Map Marker
- RT_Stamp: Stamp
- RT_Portal: Portal
- RT_DeathCrate: Death Crate
- RT_DismantleCrate: Dismantle Crate

IconID

Integer

Icon ID used in Satisfactory

ColorSlot

String

Marker Color in Hex

Scale

Integer

Map Marker Scale.

CompassViewDistance

String

Enum Value of ECompassViewDistance
- CVD_Off: Off
- CVD_Near: Near
- CVD_Mid: Mid
- CVD_Far: Far
- CVD_Always: Always

location

Object

Location details of the Map Marker.

  x

Float

X Location in the World.

  y

Float

Y Location in the World.

  z

Float

Z Location in the World.

  rotation

Float

Rotation of the Actor (0 - 359, 0 = North, 90 = East, 180 = South, 270 = West).

Example Response

[
  {
    "ID": "005D3A16411EC0870F5E5DA981AE9A33",
    "Name": "Current Copper Project - 3600",
    "location": {
      "x": 153154,
      "y": 10067,
      "z": 15425
    },
    "Category": "",
    "MapMarkerType": "RT_MapMarker",
    "IconID": 350,
    "ColorSlot": "666667FF",
    "Scale": 1,
    "CompassViewDistance": "CVD_Off"
  }
]