getmap:如何创建简单的、揭穿真相的地图?

getmap:如何创建简单的、揭穿真相的地图?

我读https://tex.stackexchange.com/a/183138/46023
我问自己,是否有可能得到像这样的“揭穿真相”的地图

在此处输入图片描述

但也许可以使用国家名称,通过使用 getmap-package:

在此处输入图片描述

也许可以通过颜色反转或者别的什么方式?

笔记: 在 Google gm 或 gsv 模式下,它对我来说毫无作用,没有(手动)示例。手册中有一些关于请求限制的内容,也许与此有关。
但 osm 模式有效。

% arara: pdflatex: { shell : yes }
\documentclass[varwidth, margin=2pt]{standalone}
\usepackage{graphicx, xcolor}
\usepackage[overwrite=true]{getmap}
\begin{document}
\getmap[
file=theworld,
%mode=osm, % Default
%type=map, % Default
%xsize=900, % ?
%ysize=400, % ?
%scale=2, % ?
zoom=3, % ?
]{World}
\includegraphics[width=9cm]{theworld}
\end{document}

相关内容