79560772

Date: 2025-04-07 21:04:47
Score: 3.5
Natty:
Report link

I ended up switching to the static map and removing all labels through the styling rules in that map's API. Not sure why I got downvoted for this, but hope this helps out any others looking to do the same thing.

style_params = [
        "feature:all|element:labels|visibility:off",
        "feature:poi|visibility:off",
        "feature:transit|visibility:off",
        "feature:road|element:labels|visibility:off"
    ]

base_url = "https://maps.googleapis.com/maps/api/staticmap"
    url = (
        f"{base_url}?center={lat},{lon}"
        f"&zoom={zoom}"
        f"&size={size}"
        f"&maptype={maptype}"
        f"&{style_params}"
        f"&key={api_key}"
    )

Resulting image

enter image description here

Cheers,

Dillon

Reasons:
  • Blacklisted phrase (1): Cheers
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (2): downvote
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dillon Tryhorn