diff --git a/maps.h b/maps.h index a6bb68b..8bfb36b 100644 --- a/maps.h +++ b/maps.h @@ -48,6 +48,10 @@ const std::map maps = { { "Lubuskie", Map(761, 1024, 51.33, 53.18, 14.4, 16.6, "Lubuskie.png") }, { "Lodzkie", Map(1073, 1024, 50.78, 52.45, 17.95, 20.75, "Lodzkie.png") }, + { "Warszawa", Map(1065, 1063, 52.0933, 52.3732, 20.8283, 21.2846, "Warszawa.png") }, + { "Krakow", Map(1280, 820, 49.95, 50.15, 19.76, 20.26, "Krakow.png") }, + { "Trojmiasto", Map(1145, 1024, 54.2722, 54.5872, 18.3544, 18.9569, "Trojmiasto.png") }, + { "Benelux", Map(960, 1304, 49.2, 53.7, 2.2, 7.5, "Benelux.png") }, { "France", Map(1041, 997, 41, 51.6, -5.3, 10.2, "France.png") }, { "Germany", Map(1073, 1272, 47.2, 55.1, 5.5, 15.5, "Germany.png") }, diff --git a/maps/Krakow.png b/maps/Krakow.png new file mode 100644 index 0000000..9fa3b87 Binary files /dev/null and b/maps/Krakow.png differ diff --git a/maps/Trojmiasto.png b/maps/Trojmiasto.png new file mode 100644 index 0000000..15fe20c Binary files /dev/null and b/maps/Trojmiasto.png differ diff --git a/maps/Warszawa.png b/maps/Warszawa.png new file mode 100644 index 0000000..273ad7a Binary files /dev/null and b/maps/Warszawa.png differ diff --git a/maps/meson.build b/maps/meson.build index e6d1cc7..36aff6c 100644 --- a/maps/meson.build +++ b/maps/meson.build @@ -20,6 +20,10 @@ configure_file(input: 'Slaskie.png', output: '@PLAINNAME@', copy: true, install: configure_file(input: 'Swietokrzyskie.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') configure_file(input: 'Zachodniopomorskie.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') +configure_file(input: 'Warszawa.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') +configure_file(input: 'Krakow.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') +configure_file(input: 'Trojmiasto.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') + configure_file(input: 'Benelux.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') configure_file(input: 'France.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps') configure_file(input: 'Germany.png', output: '@PLAINNAME@', copy: true, install: true, install_dir: 'maps')