From 45e204fa229d40178c7947c961515f22a05eeaf3 Mon Sep 17 00:00:00 2001 From: Kamil Monicz Date: Wed, 3 Jan 2024 15:50:02 +0100 Subject: [PATCH] Don't return country_names in country tiles --- api/v1/tile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/v1/tile.py b/api/v1/tile.py index 4887bb5..ac0a7be 100644 --- a/api/v1/tile.py +++ b/api/v1/tile.py @@ -103,7 +103,6 @@ async def _get_tile_country(z: int, bbox: BBox, country_state: CountryState, aed 'geometry': country.label.position.shapely, 'properties': { 'country_name': country.name, - 'country_names': country.names, 'country_code': country.code, 'point_count': country_count_map[country.name][0], 'point_count_abbreviated': country_count_map[country.name][1],