{"id":508,"date":"2026-08-10T13:03:20","date_gmt":"2026-08-10T13:03:20","guid":{"rendered":"https:\/\/croquetclub-steinhausen.ch\/crocquet-clubs\/"},"modified":"2026-08-10T13:40:40","modified_gmt":"2026-08-10T13:40:40","slug":"croquet-clubs","status":"publish","type":"page","link":"https:\/\/croquetclub-steinhausen.ch\/en\/croquet-clubs\/","title":{"rendered":"Croquet Clubs"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong>Croquet Clubs in Switzerland:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/croquettreff.ch\/\" target=\"_blank\" rel=\"noopener nofollow\">Croquet Treff Einsiedeln<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/croquet-club-zurich.ch\/\" target=\"_blank\" rel=\"noopener nofollow\">Croquet Club Z\u00fcrich (CCZ)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/croquet.web.cern.ch\/\" target=\"_blank\" rel=\"noopener nofollow\">Croquet CERN (Genf)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/croquetvs.ch\/\" target=\"_blank\" rel=\"noopener nofollow\">Croquet Club VS (Sion)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.facebook.com\/groups\/272956612850146\/\" target=\"_blank\" rel=\"noopener nofollow\">Croquet Club Rheinfelden<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/bellevue-gstaad.ch\/facilities\/bellevue-croquet-club\/\" target=\"_blank\" rel=\"noopener\">Croquet Club \/ Le Grand Bellevue \/ Gstaad<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/croquetclub-steinhausen.ch\/\">Croquet Club Steinhausen (Zug)<\/a><\/li>\n<\/ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-df256b8f wp-block-group-is-layout-flex\">\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\" \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\/>\n  <title>Swiss Croquet Clubs Map<\/title>\n  \n  <!-- Leaflet CSS -->\n  <link \n    rel=\"stylesheet\" \n    href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\" \n  \/>\n\n  <style>\n    #croquet-map {\n      width: 100%;\n      height: 500px;\n      border-radius: 8px;\n      box-shadow: 0 4px 12px rgba(0,0,0,0.15);\n      font-family: Arial, sans-serif;\n    }\n    .croquet-popup h3 {\n      margin: 0 0 6px 0;\n      color: #1b4332;\n      font-size: 16px;\n    }\n    .croquet-popup p {\n      margin: 0 0 8px 0;\n      font-size: 13px;\n      color: #333;\n    }\n    .croquet-popup a {\n      color: #2d6a4f;\n      font-weight: bold;\n      text-decoration: none;\n    }\n    .croquet-popup a:hover {\n      text-decoration: underline;\n    }\n  <\/style>\n<\/head>\n<body>\n\n  <!-- Map Container -->\n  <div id=\"croquet-map\"><\/div>\n\n  <!-- Leaflet JS -->\n  <script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\n\n  <script>\n    \/\/ Initialize the map centered on Switzerland\n    const map = L.map('croquet-map').setView([46.8182, 8.2275], 8);\n\n    \/\/ Add OpenStreetMap base tile layer\n    L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n      maxZoom: 18,\n      attribution: '\u00a9 OpenStreetMap contributors'\n    }).addTo(map);\n\n    \/\/ List of Croquet Clubs with geographic coordinates\n    const clubs = [\n      {\n        name: \"Croquet CERN\",\n        location: \"Meyrin \/ Geneva\",\n        lat: 46.2330,\n        lng: 6.0557,\n        description: \"Formed in 1982 at CERN facilities; plays AC, GC, and Gateball.\"\n      },\n      {\n        name: \"Croquet Club VS\",\n        location: \"Sion, Valais\",\n        lat: 46.2331,\n        lng: 7.3606,\n        description: \"Active Golf Croquet club playing on lawns in the Valais region.\"\n      },\n      {\n        name: \"Croquet Club \/ Le Grand Bellevue\",\n        location: \"Gstaad, Bern\",\n        lat: 46.4712,\n        lng: 7.2861,\n        description: \"Set on the grounds of Le Grand Bellevue hotel in the Swiss Alps.\"\n      },\n      {\n        name: \"Croquet Club Rheinfelden\",\n        location: \"Rheinfelden, Aargau\",\n        lat: 47.5546,\n        lng: 7.7942,\n        description: \"Located along the High Rhine river on the German border.\"\n      },\n      {\n        name: \"Croquet Club Steinhausen\",\n        location: \"Steinhausen, Zug\",\n        lat: 47.1953,\n        lng: 8.4852,\n        description: \"Serves players in the Canton of Zug and Central Switzerland.\"\n      },\n      {\n        name: \"Croquet Club Zurich (CCZ)\",\n        location: \"Z\u00fcrich\",\n        lat: 47.3769,\n        lng: 8.5417,\n        description: \"Official club formed in 2016 for recreational and tournament play.\"\n      },\n      {\n        name: \"Croquet Treff Einsiedeln\",\n        location: \"Einsiedeln, Schwyz\",\n        lat: 47.1278,\n        lng: 8.7469,\n        description: \"Sport Croquet Gesellschaft hosting sessions near Lake Sihl.\"\n      }\n    ];\n\n    \/\/ Add markers to map\n    clubs.forEach(club => {\n      const popupContent = `\n        <div class=\"croquet-popup\">\n          <h3>${club.name}<\/h3>\n          <p><strong>Region:<\/strong> ${club.location}<\/p>\n          <p>${club.description}<\/p>\n          <a href=\"https:\/\/www.google.com\/maps\/search\/?api=1&#038;query=${club.lat},${club.lng}\" target=\"_blank\">\n            Open in Google Maps &rarr;\n          <\/a>\n        <\/div>\n      `;\n\n      L.marker([club.lat, club.lng])\n        .addTo(map)\n        .bindPopup(popupContent);\n    });\n  <\/script>\n\n<\/body>\n<\/html>\n<\/div>\n\n\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\"><a href=\"https:\/\/croquetclub-steinhausen.ch\/croquet-clubs-map-en.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Croquet Clubs Map<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false,"_vp_format_video_url":"","_vp_image_focal_point":[],"_latwm_translated_slug":"","footnotes":""},"class_list":["post-508","page","type-page","status-publish","hentry"],"pbg_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"vp_sm":false,"vp_md":false,"vp_lg":false,"vp_xl":false,"vp_sm_popup":false,"vp_md_popup":false,"vp_xl_popup":false},"pbg_author_info":{"display_name":"admin","author_link":"https:\/\/croquetclub-steinhausen.ch\/en\/author\/admin\/","author_img":"<img alt='admin' src='https:\/\/secure.gravatar.com\/avatar\/c04c41523a9b55bf17f328930b682ef1c2696d94eaaaf5d14c6ef7e73a6aa544?s=128&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/c04c41523a9b55bf17f328930b682ef1c2696d94eaaaf5d14c6ef7e73a6aa544?s=256&#038;d=mm&#038;r=g 2x' class='avatar avatar-128 photo' height='128' width='128' loading='lazy' decoding='async'\/>"},"pbg_comment_info":" No Comments","pbg_excerpt":null,"_links":{"self":[{"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/pages\/508","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/comments?post=508"}],"version-history":[{"count":0,"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/pages\/508\/revisions"}],"wp:attachment":[{"href":"https:\/\/croquetclub-steinhausen.ch\/en\/wp-json\/wp\/v2\/media?parent=508"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}