Agon World Map

From Rise of Agon Wiki
Revision as of 08:51, 25 January 2026 by Admin (talk | contribs) (Create Agon World Map page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<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:

For full documentation, see Help:Interactive_Map_Markers