{"id":795,"date":"2017-08-28T12:32:38","date_gmt":"2017-08-28T10:32:38","guid":{"rendered":"https:\/\/pavillon-adc.ch\/wp\/?page_id=795"},"modified":"2021-03-18T10:40:33","modified_gmt":"2021-03-18T09:40:33","slug":"contacts-et-infos-pratiques","status":"publish","type":"page","link":"https:\/\/archives.adc-geneve.ch\/2021\/contacts-et-infos-pratiques\/","title":{"rendered":"Acc\u00e8s et contacts"},"content":{"rendered":"\n<div class=\"wp-container-69de834c32135 wp-block-columns\">\n<div class=\"wp-block-column\">\n<h1>Infos pratiques<\/h1>\n\n\n\n<h4><strong>Acc\u00e8s<\/strong><\/h4>\n\n\n\n<p><strong>Pavillon ADC<\/strong><br>place Sturm 1 \u2014 1206 Gen\u00e8ve<br><br><strong>acc\u00e8s<\/strong><br>arr\u00eat Terrassi\u00e8re \u2014 tram n\u00b012 et n\u00b017<br>arr\u00eat Rive \u2014 bus n\u00b02, n\u00b06, &#8230;<br>arr\u00eat Tranch\u00e9es \u2014 bus n\u00b01 et n\u00b08<br>arr\u00eat Mus\u00e9e d&#8217;art et d&#8217;histoire \u2014 bus n\u00b03 et n\u00b07<\/p>\n\n\n\n<h4><strong>Bar et petite restauration<\/strong><\/h4>\n\n\n\n<p>En raison du contexte actuel, le bar est ferm\u00e9.<\/p>\n\n\n\n<h4><strong>Contacts<\/strong><\/h4>\n\n\n\n<p><strong>Administration<\/strong><br>T\u00e9l : +41 (0)22 329 44 00<br><a href=\"mailto:info@adc-geneve.ch\">info@adc-geneve.ch<\/a><\/p>\n\n\n\n<p><strong>Billetterie<\/strong><br><a href=\"mailto:resa@adc-geneve.ch\">resa@adc-geneve.ch<\/a><\/p>\n\n\n\n<p><strong>Studios <\/strong><br><a href=\"mailto:studios@adc-geneve.ch\">studios@adc-geneve.ch<\/a><\/p>\n\n\n\n<p><strong>Presse <\/strong><br><a href=\"mailto:presse@adc-geneve.ch\">presse@adc-geneve.ch<\/a><\/p>\n\n\n\n<p><strong>Centre de documentation <\/strong><br><a href=\"mailto:cdd@adc-geneve.ch\">cdd@adc-geneve.ch<\/a><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div data-block_5eecb4ca2dd1c class=\"map align c-block c-block-map  \">\n  <div id=\"map\" styles=\"width:200px; height:200px;\">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.mapboxgl-canvas-container  {\n  height: 500px;\n}\n<\/style>\n<script>\nvar myCoordinates = ['6.08282','46.2146'];\nvar adc_coor = ['6.160720','46.204470'];\nvar pav_coor = ['6.154313','46.199185'];\n    \/\/ mapbox\n    \/\/var mapboxgl = require('mapbox-gl\/dist\/mapbox-gl.js');\n    mapboxgl.accessToken = 'pk.eyJ1Ijoid29uZGVyd2ViIiwiYSI6ImNpbGtxa3lrYTAwODNubmtxYzl0c2FwcG4ifQ.Y6TMX5qitNu5YDaUHY5rHw';\n\n    var map = new mapboxgl.Map({\n      container: 'map',\n      style: 'mapbox:\/\/styles\/mapbox\/light-v10',\n      \/\/eslint-disable-next-line\n      center: adc_coor,\n      zoom: 13,\n      maxZoom: 18,\n    });\n\n    map.addControl(new mapboxgl.NavigationControl({\n      showCompass: false,\n    }));\n    map.scrollZoom.disable();\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            {\n                'type': 'Feature',\n                'geometry': {\n                    'type': 'Point',\n                    'coordinates': pav_coor\n                },\n                properties: {\n                  title: 'Pavillon de la danse (mars \u00e0 juin 2021)',\n                  description: '82-84 rue des Eaux-Vives \u2014 1207 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\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(255, 255, 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(255, 255, 0, 1)';\n        context.strokeStyle = 'rgba(255, 255, 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<\/script>\n\n\n\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Infos pratiques Acc\u00e8s Pavillon ADCplace Sturm 1 \u2014 1206 Gen\u00e8ve acc\u00e8sarr\u00eat Terrassi\u00e8re \u2014 tram n\u00b012 et n\u00b017arr\u00eat Rive \u2014 bus n\u00b02, n\u00b06, &#8230;arr\u00eat Tranch\u00e9es \u2014 bus n\u00b01 et n\u00b08arr\u00eat Mus\u00e9e d&#8217;art et d&#8217;histoire \u2014 bus n\u00b03 et n\u00b07 Bar et petite restauration En raison du contexte actuel, le bar est ferm\u00e9. Contacts AdministrationT\u00e9l : +41 &hellip; <a href=\"https:\/\/archives.adc-geneve.ch\/2021\/contacts-et-infos-pratiques\/\">Continued<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/pages\/795"}],"collection":[{"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/comments?post=795"}],"version-history":[{"count":5,"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/pages\/795\/revisions"}],"predecessor-version":[{"id":17121,"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/pages\/795\/revisions\/17121"}],"wp:attachment":[{"href":"https:\/\/archives.adc-geneve.ch\/2021\/wp-json\/wp\/v2\/media?parent=795"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}