1. Map UI Basics - bell4631/PLA-Live-Map GitHub Wiki
The PLA game must be running on the Nintendo Switch prior to The PLA-Live-Map script being executed before anything will display!!
Use the default URL localhost:8080
and run it on your main computer browser.
- Alternatively, in the
main.py
file, located the lineapp.run(host="localhost", port=8080, debug=True)
and change the value of host to be your computer's IP address (your Nintendo Switch should also be on the same network). This will allow mobile devices to run PLA-Live-Map using[computer_ip_address]:8080
instead
Initializing Map
The UI will prompt the user to select one of the five regions to load the map:
Choose any of the regions to be redirected to http://localhost:8080/map/[target_destination]
. For now, we will reference the Obsidian Fieldlands as a visual guide:
Map Markers
Map markers are identified as similar to the main map and UI elements in PLA:
Base Camp Marker - Initial campsite when loaded into the game. Can be clicked on as a teleport target for the player.
Static Wild Pokemon Marker - Marker indicator of a wild Pokemon. Clicking on it allows the user to pull up information regarding the Pokemon and can be used to teleport to the location:
Static Alpha Pokemon Marker - Marker indicator of an alpha Pokemon. Clicking on it allows the user to pull up information regarding the Pokemon and can be used to teleport to the location:
Left Sidebar
The main map functionality is accessed via the left-hand sidebar on the left of the map:
PLA-Live-Map supports Zoom-In capacities with the + and - UI buttons or via command key and '+' or '-' key (zoom in/out gesture on mobile devices).
Map functions are divided as indicated with the four icons:
PLA-Live-Map
Filter
Mass Outbreak Information
This tab helps the user navigate all information regarding Mass Outbreaks in PLA. Read more on functionality in Mass Outbreak Information Page
Battle Information
This tab helps the user displays battle information when encountering a wild/opponent Pokemon in PLA. Read more on functionality in the Battle Information Page