Codebase list gnome-maps / d201591
osmUtils: Add missing tags in updatePlaceFromOSMObject Update the 'toilets', 'internetAccess', and 'religion' properties on the Place instance from the corresponding OSM tags on the object having been edited. Marcus Lundblad 3 years ago
1 changed file(s) with 3 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
6161 place.wiki = object.get_tag('wikipedia');
6262 place.openingHours = object.get_tag('opening_hours');
6363 place.wheelchair = object.get_tag('wheelchair');
64 place.toilets = object.get_tag('toilets');
65 place.internetAccess = object.get_tag('internet_access');
66 place.religion = object.get_tag('religion');
6467
6568 let altitude = object.get_tag('ele');
6669