NAME

WWW::MetaForge::ArcRaiders::Result::MapMarker - Map marker result object for ARC Raiders

VERSION

version 0.001

SYNOPSIS

my $markers = $api->map_data(map => 'dam');
for my $marker (@$markers) {
    say $marker->category . '/' . $marker->subcategory;
    say "  (" . $marker->lng . ", " . $marker->lat . ")";
    say "  Behind locked door" if $marker->behindLockedDoor;
}

DESCRIPTION

Represents a map marker from the ARC Raiders game maps.

Extends WWW::MetaForge::GameMapData::Result::MapMarker with ARC Raiders specific attributes.

ATTRIBUTES

category

Marker category (e.g., "arc", "containers", "locations", "events").

subcategory

Marker subcategory (e.g., "tick", "pop", "base_container", "player_spawn").

instanceName

Optional instance name for the marker.

behindLockedDoor

Boolean indicating if marker is behind a locked door.

eventConditionMask

Event condition bitmask.

lootAreas

Loot area data (can be null, string, or array).

METHODS

type

Returns "category/subcategory" string.

name

Alias for instanceName.

INHERITED ATTRIBUTES

See WWW::MetaForge::GameMapData::Result::MapMarker for base attributes (id, lat, lng, zlayers, mapID, updated_at, added_by, last_edited_by).

SUPPORT

Source Code

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

https://github.com/Getty/p5-www-metaforge

git clone https://github.com/Getty/p5-www-metaforge.git

AUTHOR

Torsten Raudssus <torsten@raudssus.de>

COPYRIGHT AND LICENSE

This software is copyright (c) 2026 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.