Skip to content

Shared User Map Markers format

SharedUserMapMarkers.json is used to track user defined map markers that are shared with other players.

JSON format

  • : Root object.
    • UserMarkers: Contains all player made map markers that are shared with other players.
      • : A custom map marker.
        • Id: The id of this marker. Has the format of user_shared_<uuid>.
        • X: The X position of this map marker.
        • Z: The Z position of this map marker.
        • Name: The name of this map marker.
        • Icon: The icon file name for this map marker.
        • ColorTint: The hex tint color to apply to the marker icon.
        • CreatedByUuid: The UUID of the player who created this map marker stored in binary form encoded in base64.
          • $binary: The base64 encoded binary UUID value.
          • $type: The BSON binary type. Always 04 for UUID.
        • CreatedByName: The name of the player who created this map marker.

History

Early Access

2026.02.17-255364b8e The shared user map markers format is introduced.
Used to track user defined map markers that are shared with other players.