Agon World Map
From Rise of Agon Wiki
<script> // Define markers to display on the map window.agonMapMarkers = [
{
name: 'Example: Goblin Camp',
coordinates: '8192, 8192',
description: 'Click on the map to get coordinates for your markers!',
icon: null
}
]; </script>
How to Use This Map
1. **Click anywhere on the map** to get coordinates 2. The coordinates will appear in a popup 3. Use these coordinates when creating location markers with the templates
Adding Your Own Markers
To add markers to this map, edit this page and add entries to the `window.agonMapMarkers` array:
window.agonMapMarkers = [
{
name: 'Location Name',
coordinates: 'Y, X', // Get from clicking the map
description: 'Description that appears in popup',
icon: null // Optional custom icon URL
}
];
Available Templates
Use these templates to create detailed location pages:
- Template:Spawn Point - Monster spawns
- Template:Key Chest - Treasure chests
- Template:Portal - Teleportation portals
- Template:Dungeon Entrance - Dungeon entrances
- Template:Clan Holding - Cities and hamlets
- Template:Wilderness Bank - Wilderness banks
For full documentation, see Help:Interactive_Map_Markers
