diff --git a/index.html b/index.html
index 964369e..3301234 100644
--- a/index.html
+++ b/index.html
@@ -33,9 +33,10 @@
-
-
+
+
+
diff --git a/js/index.js b/js/index.js
index d24a694..b7009d8 100644
--- a/js/index.js
+++ b/js/index.js
@@ -222,6 +222,7 @@ bindButtonToCategory(document.getElementById("explore-drinking-water"), "drinkin
bindButtonToCategory(document.getElementById("explore-on-schedule"), "on-schedule")
bindButtonToCategory(document.getElementById("explore-dodo"), "dodo")
bindButtonToCategory(document.getElementById("explore-bin"), "bin")
+bindButtonToCategory(document.getElementById("explore-toilets"), "toilets")
document.getElementById("logo").addEventListener("click", e => {
openFeature()
diff --git a/js/places.js b/js/places.js
index 4785a36..031406c 100644
--- a/js/places.js
+++ b/js/places.js
@@ -12,7 +12,8 @@ const CATEGORIES = {
"drinking-water": (feature) => feature.properties["eau potable"] || feature.properties["douches"] || feature.properties["toilettes"],
"bin": (feature) => feature.properties["poubelle"],
"dodo": (feature) => feature.properties["n couchage"] > 0 || feature.properties["camping"],
- "on-schedule": (feature) => feature.properties["pretalx-room-id"] || feature.properties["pretalx-room-id"] == 0
+ "on-schedule": (feature) => feature.properties["pretalx-room-id"] || feature.properties["pretalx-room-id"] == 0,
+ "toilets": (feature) => feature.properties["toilettes"] || feature.properties["douches"]
}
/**