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

From Puucraft Wiki
Revision as of 07:07, 28 July 2022 by Mixarium (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Original file(2,700 × 2,603 pixels, file size: 8.39 MB, MIME type: image/png)

Summary[edit | edit source]

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.

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()

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current08:15, 25 July 2022Thumbnail for version as of 08:15, 25 July 20222,700 × 2,603 (8.39 MB)Mixarium (talk | contribs)

The following 2 pages use this file:

Metadata