NAME
WWW::MetaForge::ArcRaiders::Result::MapMarker - Map marker result object for ARC Raiders
VERSION
version 0.002
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.
INHERITED ATTRIBUTES
See WWW::MetaForge::GameMapData::Result::MapMarker for base attributes (id, lat, lng, zlayers, mapID, updated_at, added_by, last_edited_by).
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).
type
Returns "category/subcategory" string.
name
Alias for instanceName.
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://github.com/Getty/p5-www-metaforge/issues.
IRC
You can reach Getty on irc.perl.org for questions and support.
CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
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.