Search notes:

R package: ggswissmaps

ggswissmaps has a few Swiss maps.

maps2

library(ggswissmaps)

for (n in c(
    'g1l15'     ,  # l = Land - Borders of Switzerland
    'g1b15'     ,  # b = Bezirke
    'g1k15'     ,  # k = Kantone
    'g1g15'     ,  # g = Gemeinden                      | g one g one five
    'g1r15'     ,  # r = Regionen?
    'g1s15'     ,  # s = Seen - The lakes of Switzerland
    'g1g15_encl',  # the two enclaves into Switzerland
    'g1g15_li'     # Liechtenstein
   )
) {


   png(paste0(Sys.getenv('github_top_root'), 'about/r/packages/ggswissmaps/img/', n, '.png'),
       width = 400,
       height= 400
   );

   print(maps2[[n]]);   # g one be one five
   dev.off();

}
Github repository about-R, path: /packages/ggswissmaps/maps2.R

g1l15

g1b15

g1k15

Cantons of Switzerland:

g1g15

Villages/towns (Gemeinden) of Switzerland:

g1r15

The regions (?) of Switzerland:

g1s15

The lakes of Switzerland:

g1g15_encl

Enclaves into Switzerland. On this map, these are really only two tiny spots:

g1g15_li

Liechtenstein

See also

The R package maps.
The City of Zürich provides a Shape file for their »Stadtkreise«.
Data visualization: map

Index