File:Map 11 dynmap as of 24 07 2022 marked.png: Difference between revisions

m
no edit summary
(Map 11 2D Dynmap as of July 24th, 2022. Towns marked.)
 
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1:
== Summary ==
Map 11 2D Dynmap as of July 24th, 2022. Towns marked. Generated using Python script, Selenium package involved. In order to take the screenshot of the page, the Firefox browser window, which was used in this instance, was loaded on a resolution higher than the one supported by the monitor ([[Mixarium]]'s monitor as he generated the image). The code below used to work, until a few days later when the default zoom level of the Puucraft dynmap changed, which will now screenshot a small part of the dynmap instead.
Map 11 2D Dynmap as of July 24th, 2022. Towns marked.
 
<syntaxhighlight lang="python" line="1">
from selenium import webdriver
from selenium.webdriver.common.by import By
import time
 
 
def screenshot_dynmap(): # main function defined
options = webdriver.FirefoxOptions()
options.headless = True
options.add_argument("-disable-gpu")
options.add_argument("-no-sandbox")
options.add_argument("--width=2700")
options.add_argument("--height=2700") # width and height of 2700x2700
 
with webdriver.Firefox(options=options) as driver:
action = webdriver.ActionChains(driver)
driver.get('https://betadynmap.puucraft.net/#') # enter the dynmap website
 
time.sleep(2)
sidebar = driver.find_element(By.CSS_SELECTOR, ".hitbar")
action.move_to_element(sidebar).perform() # opening the sidebar
 
switch_to_2d = driver.find_element(By.CLASS_NAME, "maptype")
switch_to_2d.click() # page defaults to 3D Dynmap, so I had to switch to the 2D Dynmap
 
action.move_by_offset(-1000, -1000).perform()
time.sleep(20) # wait for dynmap to load the chunks
 
driver.save_screenshot("map_11_dynmap.png") # save a screenshot of the dynmap page
 
 
screenshot_dynmap()
</syntaxhighlight>