{"id":23124,"date":"2022-05-19T10:51:00","date_gmt":"2022-05-19T08:51:00","guid":{"rendered":"https:\/\/pavillon-adc.ch\/?page_id=23124"},"modified":"2025-10-02T16:21:08","modified_gmt":"2025-10-02T14:21:08","slug":"contacts-et-infos-pratiques-2","status":"publish","type":"page","link":"https:\/\/archives.adc-geneve.ch\/2126\/contacts-et-infos-pratiques-2\/","title":{"rendered":"INFOS PRATIQUES"},"content":{"rendered":"\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">ACC\u00c8S \u2014 CONTACTS<\/h2>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n<div data-block_f717b33c4ea99cc7bbd5e8a545fa63c8 class=\"map align c-block c-block-map relative  \">\n    <div id=\"map\">Plan de situation<\/div>\n<\/div>\n\n<script src='https:\/\/api.mapbox.com\/mapbox-gl-js\/v1.11.0\/mapbox-gl.js'><\/script>\n<link href='https:\/\/api.mapbox.com\/mapbox-gl-js\/v1.11.0\/mapbox-gl.css' rel='stylesheet' \/>\n<style>\n    #map {\n        width: 100vw;\n        height: 300px;\n        margin: 0px auto;\n        max-width: 100%;\n        min-width: 300px;\n        max-height: 100%;\n        position: relative;\n        outline: none;\n    }\n\n<\/style>\n\n<script>\n    \/\/var myCoordinates = ['6.08282','46.2146'];\n    \/\/var adc_coor = ['6.160720','46.204470'];\n    \/\/var pav_coor = ['6.154313','46.199185'];\n    var pav_coor = ['6.154590812580302', '46.198959932907655']; \/\/ 46.198959932907655, 6.154590812580302\n\n    \/\/ mapbox\n    \/\/var mapboxgl = require('mapbox-gl\/dist\/mapbox-gl.js');\n    mapboxgl.accessToken =\n        'pk.eyJ1Ijoid29uZGVyd2ViIiwiYSI6ImNpbGtxa3lrYTAwODNubmtxYzl0c2FwcG4ifQ.Y6TMX5qitNu5YDaUHY5rHw';\n\n    \/\/ dom ready\n    document.addEventListener('DOMContentLoaded', function() {\n        \/\/ create map\n        const map = new mapboxgl.Map({\n            container: 'map',\n            style: 'mapbox:\/\/styles\/mapbox\/light-v10',\n            \/\/center: [12.550343, 55.665957],\n            center: pav_coor,\n            zoom: 15\n        });\n\n\n\n        map.addControl(new mapboxgl.NavigationControl({\n            showCompass: false,\n        }));\n        map.scrollZoom.disable();\n\n\n        map.on('load', function() {\n            map.addImage('pulsing-dot', pulsingDot, {\n                pixelRatio: 2,\n            });\n\n            map.addSource('points', {\n                'type': 'geojson',\n                'data': {\n                    'type': 'FeatureCollection',\n                    'features': [{\n                        'type': 'Feature',\n                        'geometry': {\n                            'type': 'Point',\n                            'coordinates': pav_coor\n                        },\n                        properties: {\n                            title: 'Pavillon de la danse',\n                            description: '1 place Sturm \u2014 1206 Gen\u00e8ve'\n                        }\n                    }]\n                }\n            });\n            map.addLayer({\n                'id': 'points',\n                'type': 'symbol',\n                'source': 'points',\n                'layout': {\n                    'icon-image': 'pulsing-dot'\n                }\n            });\n\n\n\n        });\n        var size = 150;\n\n        \/\/ implementation of CustomLayerInterface to draw a pulsing dot icon on the map\n        \/\/ see https:\/\/docs.mapbox.com\/mapbox-gl-js\/api\/#customlayerinterface for more info\n        var pulsingDot = {\n            width: size,\n            height: size,\n            data: new Uint8Array(size * size * 4),\n\n            \/\/ get rendering context for the map canvas when layer is added to the map\n            onAdd: function() {\n                var canvas = document.createElement('canvas');\n                canvas.width = this.width;\n                canvas.height = this.height;\n                this.context = canvas.getContext('2d');\n            },\n\n            \/\/ called once before every frame where the icon will be used\n            render: function() {\n                var duration = 1000;\n                var t = (performance.now() % duration) \/ duration;\n\n                var radius = (size \/ 2) * 0.3;\n                var outerRadius = (size \/ 2) * 0.7 * t + radius;\n                var context = this.context;\n\n                \/\/ draw outer circle\n                context.clearRect(0, 0, this.width, this.height);\n                context.beginPath();\n                context.arc(\n                    this.width \/ 2,\n                    this.height \/ 2,\n                    outerRadius,\n                    0,\n                    Math.PI * 2\n                );\n                context.fillStyle = 'rgba(0, 0, 0,' + (1 - t) + ')';\n                context.fill();\n\n                \/\/ draw inner circle\n                context.beginPath();\n                context.arc(\n                    this.width \/ 2,\n                    this.height \/ 2,\n                    radius,\n                    0,\n                    Math.PI * 2\n                );\n                context.fillStyle = 'rgba(0, 0, 0, 1)';\n                context.strokeStyle = 'rgba(0, 0, 0, 1)';\n                context.lineWidth = 2 + 4 * (1 - t);\n                context.fill();\n                context.stroke();\n\n                \/\/ update this image's data with data from the canvas\n                this.data = context.getImageData(\n                    0,\n                    0,\n                    this.width,\n                    this.height\n                ).data;\n\n                \/\/ continuously repaint the map, resulting in the smooth animation of the dot\n                map.triggerRepaint();\n\n                \/\/ return `true` to let the map know that the image was updated\n                return true;\n            },\n        }\n\n    });\n<\/script>\n\n\n\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/pavillon-adc.ch\/wp-content\/uploads\/2022\/05\/IMG_0942-1024x683.jpg\" alt=\"\" class=\"wp-image-23517\" srcset=\"https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/05\/IMG_0942-1024x683.jpg 1024w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/05\/IMG_0942-300x200.jpg 300w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/05\/IMG_0942-768x512.jpg 768w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/05\/IMG_0942-1536x1024.jpg 1536w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/05\/IMG_0942-2048x1365.jpg 2048w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/05\/IMG_0942-1320x880.jpg 1320w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">ACC\u00c8S<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>salle de spectacles \u2014 administration<\/strong> <strong>\u2014<\/strong><br><strong>centre de documentation<\/strong><br>Pavillon ADC<br>association pour la danse contemporaine<br>place Beatriz-CONSUELO (anciennement place Sturm 1) \u2014 1206 Gen\u00e8ve<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>accessibilit\u00e9 du lieu<\/strong><br>le Pavillon est accessible pour les personnes \u00e0 mobilit\u00e9 r\u00e9duite. Retrouvez toutes les informations sur nos <a href=\"https:\/\/pavillon-adc.ch\/accessibilite-25-26\/\">conditions d\u2019accessibilit\u00e9<\/a>.<br><br><strong>comment venir au Pavillon ?<\/strong><br>\u2014 <strong>\u00e0 pied<\/strong><br>10 minutes du Rond-point de Rive<br>25 minutes de la gare Cornavin<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>\u2014 <a href=\"https:\/\/www.tpg.ch\/\" target=\"_blank\" rel=\"noreferrer noopener\">en transports publics<\/a><\/strong><br>arr\u00eat Terrassi\u00e8re \u2014 tram n\u00b012 et n\u00b017<br>arr\u00eat Rive \u2014 bus n\u00b02, n\u00b06, \u2026<br>arr\u00eat Tranch\u00e9es \u2014 bus n\u00b01 et n\u00b08<br>arr\u00eat Mus\u00e9e d\u2019art et d\u2019histoire \u2014 bus n\u00b03 et n\u00b07<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u2014 <strong>en voiture<\/strong><br><a href=\"https:\/\/www.geneve-parking.ch\/fr\/parkings\/saint-antoine\" target=\"_blank\" rel=\"noreferrer noopener\">parking Saint-Antoine<\/a><br>entr\u00e9e v\u00e9hicule par le Boul. Jaques-Dalcroze 10<br>sortie pi\u00e9ton Rue Ferdinand-Hodler, vieille ville<br><a href=\"https:\/\/www.geneve-parking.ch\/fr\/parkings\/villereuse\" target=\"_blank\" rel=\"noreferrer noopener\">parking Villereuse<\/a><br>entr\u00e9e v\u00e9hicule par le Carrefour de Villereuse 2<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">CONTACTS<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>administration<\/strong> \u2014 <a href=\"mailto:info@adc-geneve.ch\">info@adc-geneve.ch<\/a> <br>+41 (0)22 329 44 00<br><strong>billetterie<\/strong> \u2014 <a href=\"mailto:resa@adc-geneve.ch\">resa@adc-geneve.ch<\/a> <br>+41 (0)22 320 06 06<br><strong>studios<\/strong> \u2014 <a href=\"mailto:studios@adc-geneve.ch\">studios@adc-geneve.ch<\/a><br>+41 (0)22 320 06 06<br><strong>technique<\/strong> \u2014 <a href=\"mailto:technique@adc-geneve.ch\">technique@adc-geneve.ch<\/a><br><strong>centre de documentation<\/strong> \u2014 <a href=\"mailto:cdd@adc-geneve.ch\">cdd@adc-geneve.ch<\/a><br><a data-type=\"URL\" data-id=\"https:\/\/web.facebook.com\/pavillon.adc\" href=\"https:\/\/web.facebook.com\/pavillon.adc\">facebook<\/a> \/ <a data-type=\"URL\" data-id=\"https:\/\/www.instagram.com\/pavillon.adc\/\" href=\"https:\/\/www.instagram.com\/pavillon.adc\/\">instagram<\/a><br><br><a href=\"https:\/\/pavillon-adc.ch\/lequipe\/\">L&rsquo;\u00e9quipe du Pavillon ADC<\/a><\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">BUVETTE<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">un bar avec petite restauration est ouvert 1h avant et 1h apr\u00e8s la repr\u00e9sentation. Vous y trouverez des boissons, des tartes sal\u00e9s et g\u00e2teaux sucr\u00e9s pr\u00e9par\u00e9s par Asta et Ninon, nos bar-women.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https:\/\/pavillon-adc.ch\/wp-content\/uploads\/2022\/04\/20220427_182945-1024x768.jpg\" alt=\"Bar\" class=\"wp-image-22901\" srcset=\"https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/04\/20220427_182945-1024x768.jpg 1024w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/04\/20220427_182945-300x225.jpg 300w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/04\/20220427_182945-768x576.jpg 768w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/04\/20220427_182945-1536x1152.jpg 1536w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/04\/20220427_182945-2048x1536.jpg 2048w, https:\/\/archives.adc-geneve.ch\/2126\/wp-content\/uploads\/2022\/04\/20220427_182945-1320x990.jpg 1320w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><br><\/p>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>ACC\u00c8S \u2014 CONTACTS ACC\u00c8S salle de spectacles \u2014 administration \u2014centre de documentationPavillon ADCassociation pour la danse contemporaineplace Beatriz-CONSUELO (anciennement place Sturm 1) \u2014 1206 Gen\u00e8ve accessibilit\u00e9 du lieule Pavillon est accessible pour les personnes \u00e0 mobilit\u00e9 r\u00e9duite. Retrouvez toutes les informations sur nos conditions d\u2019accessibilit\u00e9. comment venir au Pavillon ?\u2014 \u00e0 pied10 minutes du Rond-point &hellip; <a href=\"https:\/\/archives.adc-geneve.ch\/2126\/contacts-et-infos-pratiques-2\/\">Continued<\/a><\/p>\n","protected":false},"author":3,"featured_media":23517,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-23124","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/pages\/23124","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/comments?post=23124"}],"version-history":[{"count":3,"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/pages\/23124\/revisions"}],"predecessor-version":[{"id":39119,"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/pages\/23124\/revisions\/39119"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/media\/23517"}],"wp:attachment":[{"href":"https:\/\/archives.adc-geneve.ch\/2126\/wp-json\/wp\/v2\/media?parent=23124"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}