{"id":2624,"date":"2019-08-13T17:53:30","date_gmt":"2019-08-13T21:53:30","guid":{"rendered":"https:\/\/www.groupesomavrac.com\/interactive-map\/"},"modified":"2019-08-14T10:57:55","modified_gmt":"2019-08-14T14:57:55","slug":"services-and-companies-interactive-map","status":"publish","type":"page","link":"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/","title":{"rendered":"Interactive Map"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"2624\" class=\"elementor elementor-2624 elementor-2175\" data-elementor-post-type=\"page\">\n\t\t\t\t    <script>\n    var markers = [];\n    var markersObjects = [];\n    var map;\n    var initBounds;\n\n    function initMap() {\n      map = new google.maps.Map(document.getElementById('map'), {\n        center: {lat: 47.7781262, lng: -71.4144785},\n        zoom: 7,\n        styles: [\n          {\n            \"featureType\": \"road\",\n            \"stylers\": [\n              { \"hue\": \"#ff1a00\" },\n              { \"saturation\": -100 }\n            ]\n          },{\n            \"featureType\": \"poi\",\n            \"stylers\": [\n              { \"hue\": \"#ff7700\" },\n              { \"saturation\": -100 }\n            ]\n          },{\n            \"featureType\": \"landscape\",\n            \"stylers\": [\n              { \"hue\": \"#0066ff\" },\n              { \"saturation\": -50 }\n            ]\n          },{\n            \"featureType\": \"water\",\n            \"stylers\": [\n              { \"hue\": \"#0077ff\" },\n              { \"saturation\": -66 }\n            ]\n          },{\n            \"stylers\": [\n              { \"visibility\": \"simplified\" }\n            ]\n          },{\n            \"elementType\": \"labels.icon\",\n            \"stylers\": [\n              { \"visibility\": \"off\" }\n            ]\n          },{\n          }\n        ]\n      });\n      var infoWindow = new google.maps.InfoWindow;\n\n      map.setZoom(13);\n\n  \/\/ Change this depending on the name of your PHP or XML file\n      downloadUrl('https:\/\/www.groupesomavrac.com\/wp-content\/themes\/jupiterx-child\/inc\/map.php?lang=en&id=', function(data) {\n        var xml = data.responseXML;\n        var filiale = '';\n        markers = xml.documentElement.getElementsByTagName('marker');\n        Array.prototype.forEach.call(markers, function(markerElem) {\n          var id = markerElem.getAttribute('id');\n          var name = markerElem.getAttribute('name');\n\n          var city = markerElem.getAttribute('city');\n          var phone = markerElem.getAttribute('phone');\n          var phone_toll_free = markerElem.getAttribute('phone_toll_free');\n          var services = markerElem.getAttribute('services');\n          var services_slug = markerElem.getAttribute('services_slug');\n          var images = markerElem.getAttribute('images');\n          var address = markerElem.getAttribute('address');\n          var link = markerElem.getAttribute('link');\n          var type = markerElem.getAttribute('type');\n          var classes = markerElem.getAttribute('classes');\n          var point = new google.maps.LatLng(\n            parseFloat(markerElem.getAttribute('lat')),\n            parseFloat(markerElem.getAttribute('lng')));\n\n\n          var infowincontent = document.createElement('div');\n          infowincontent.className = \"infowindow-somavrac \"+classes;\n          var imgs = document.createElement('p');\n          imgs.innerHTML = images;\n          infowincontent.appendChild(imgs);\n\n          var h3 = document.createElement('h3');\n          h3.textContent = name;\n          infowincontent.appendChild(h3);\n\n          var serv = document.createElement('p');\n          serv.innerHTML = services;\n          infowincontent.appendChild(serv);\n\n          var ct = document.createElement('strong');\n          ct.innerHTML = city;\n          infowincontent.appendChild(ct);\n          infowincontent.appendChild(document.createElement('br'));\n\n          var text = document.createElement('p');\n          text.textContent = address;\n          infowincontent.appendChild(text);\n\n          if(phone != '') {\n            var tel1 = document.createElement('div');\n            tel1.textContent = phone;\n            infowincontent.appendChild(tel1);\n          }\n          if(phone_toll_free != '') {\n            var tel2 = document.createElement('div');\n            tel2.textContent = phone_toll_free;\n            infowincontent.appendChild(tel2);\n          }\n          infowincontent.appendChild(document.createElement('br'));\n\n          var markerLink = document.createElement('a');\n          markerLink.href = link;\n          markerLink.textContent = 'Learn more';\n          infowincontent.appendChild(markerLink);\n\n          var icon = {};\n          var marker = new google.maps.Marker({\n            map: map,\n            icon: 'https:\/\/www.groupesomavrac.com\/wp-content\/themes\/jupiterx-child\/assets\/img\/pointer.png',\n            position: point,\n            label: icon.label,\n            name: name,\n            services: services_slug,\n            services_names: services,\n            city: city,\n            phone: phone,\n            phone_toll_free: phone_toll_free,\n            address: address,\n          });\n\n          initBounds = new google.maps.LatLngBounds();\n\n\n          markersObjects.push(marker);\n\n          for (i=0; i < markersObjects.length; i++) {\n            if(filiale != '') {\n              if(markersObjects[i].name != filiale) {\n                markersObjects[i].setMap(null);\n              }\n              else {\n                initBounds.extend(markersObjects[i].getPosition());\n              }\n            }else {\n              initBounds.extend(markersObjects[i].getPosition());\n            }\n          }\n\n          marker.addListener('click', function() {\n            infoWindow.setContent(infowincontent);\n            infoWindow.open(map, marker);\n          });\n        });\n\n\n        for (i=0; i < markersObjects.length; i++) {\n            if(filiale != '') {\n              if(markersObjects[i].name != filiale) {\n                markersObjects[i].setMap(null);\n              }\n              else {\n                showBox(markersObjects[i], i);\n              }\n            }else {\n              showBox(markersObjects[i], i);\n            }\n        }\n\n        map.fitBounds(initBounds);\n        if(map.getZoom()> 13){\n          map.setZoom(13);\n        }\n\n      });\n    }\n\n    function showMarker(id){\n      google.maps.event.trigger(markersObjects[id], 'click');\n    }\n\n  \/\/ Sets the map on all markers in the array.\n    function showSelectedMarker(markersToShow) {\n      var bounds = new google.maps.LatLngBounds();\n      $('#overlay_map').children('.items').children('.item').remove();\n\n      if (markersObjects) {\n        for (i=0; i < markersObjects.length; i++) {\n          if(markersToShow == 'All') {\n            markersObjects[i].setMap(map);\n            showBox(markersObjects[i], i);\n            bounds.extend(markersObjects[i].getPosition());\n          }\n          else {\n            if(markersToShow.includes(markersObjects[i].get('name'))){\n              markersObjects[i].setMap(map);\n              showBox(markersObjects[i], i);\n              bounds.extend(markersObjects[i].getPosition());\n            }\n            else {\n              markersObjects[i].setMap(null);\n            }\n          }\n        }\n\n        if(bounds.isEmpty()) {\n          map.fitBounds(initBounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n        else {\n          map.fitBounds(bounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n      }\n    }\n\n\n  \/\/ Sets the map on all markers in the array.\n    function showSelectedMarkerServices(markersToShow) {\n      var bounds = new google.maps.LatLngBounds();\n      var toShow = false;\n      var services = '';\n\n      $('#overlay_map').children('.items').children('.item').remove();\n\n      if (markersObjects) {\n        for (i=0; i < markersObjects.length; i++) {\n          services = '';\n          toShow = false;\n          services = markersObjects[i].get('services').split(',');\n\n          for(j=0; j < services.length; j++) {\n            if(markersToShow.includes(services[j])) {\n              toShow = true;\n            }\n          }\n\n          if(toShow) {\n            markersObjects[i].setMap(map);\n\n            showBox(markersObjects[i], i);\n\n            bounds.extend(markersObjects[i].getPosition());\n          }\n          else {\n            markersObjects[i].setMap(null);\n          }\n        }\n        if(bounds.isEmpty()) {\n          map.fitBounds(initBounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n        else {\n          map.fitBounds(bounds);\n          if(map.getZoom()> 13){\n            map.setZoom(13);\n          }\n        }\n\n      }\n    }\n\n\n    function showBox(marker, id) {\n      var markerBox = '';\n      markerBox += '<button type=\"button\" class=\"item\" onClick=\"showMarker('+id+')\">';\n      markerBox += '<h3>'+marker.name+'<\/h3>';\n      markerBox += marker.services_names;\n      markerBox += '<strong>'+marker.city+'<\/strong>';\n      markerBox += marker.address;\n      markerBox += '<div>'+marker.phone+'<\/div>';\n      markerBox += '<div>'+marker.phone_toll_free+'<\/div>';\n      markerBox += '<\/button>';\n\n      $('#overlay_map').children('.items').append(markerBox);\n    }\n\n\n    function downloadUrl(url, callback) {\n      var request = window.ActiveXObject ?\n      new ActiveXObject('Microsoft.XMLHTTP') :\n      new XMLHttpRequest;\n\n      request.onreadystatechange = function() {\n        if (request.readyState == 4) {\n          request.onreadystatechange = doNothing;\n          callback(request, request.status);\n        }\n      };\n\n      request.open('GET', url, true);\n      request.send(null);\n    }\n\n    function doNothing() {}\n    <\/script>\n    <script async defer\n    src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyDLC8AmLYRGMWnWaivCjY8KOcQq59KDssk&callback=initMap\">\n    <\/script>\n    \t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2ecf734 triggers elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"2ecf734\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-a6081c6 trigger\" data-id=\"a6081c6\" data-element_type=\"column\" data-e-type=\"column\" id=\"trigger-filiales\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5fc5b97 elementor-widget elementor-widget-html\" data-id=\"5fc5b97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\tSelect at least one <span>Subsidiary<span class=\"sub-arrow\"><\/span><\/span>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-08646f0 trigger\" data-id=\"08646f0\" data-element_type=\"column\" data-e-type=\"column\" id=\"trigger-services\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0d9486a elementor-widget elementor-widget-html\" data-id=\"0d9486a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\tSelect at least one <span>Service<span class=\"sub-arrow\"><\/span><\/span>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-fc9c3ff elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"fc9c3ff\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-61558fc\" data-id=\"61558fc\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1e49d9d elementor-widget elementor-widget-html\" data-id=\"1e49d9d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"filiales\" class=\"\">\r\n<div class=\"width-wrap\"><div class=\"btn-close i-btnx\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"467px\" height=\"467px\" viewBox=\"0 0 467 467\" enable-background=\"new 0 0 467 467\" xml:space=\"preserve\"><rect x=\"224.145\" y=\"-77.433\" transform=\"matrix(0.707 0.7072 -0.7072 0.707 233.718 -97.1819)\" width=\"19.999\" height=\"621.818\"><\/rect><rect x=\"224.146\" y=\"-77.432\" transform=\"matrix(0.7072 -0.707 0.707 0.7072 -96.5137 233.9039)\" width=\"19.999\" height=\"621.819\"><\/rect><\/svg><\/div><\/div>\r\n<ul class=\"list-filiales\">\r\n  <li><span id=\"All\" class=\"filtre filtre-filiales\">Show all subsidiaries<\/span><\/li>\r\n  <li><span id=\"Fonbrai\" class=\"filtre filtre-filiales\">Fonbrai<\/span><\/li>\r\n  <li><span id=\"Chloretec\" class=\"filtre filtre-filiales\">Chloretec<\/span><\/li>\r\n  <li><span id=\"Somavrac C.C.\" class=\"filtre filtre-filiales\">Somavrac C.C.<\/span><\/li>\r\n  <li><span id=\"Kencro Chemicals\" class=\"filtre filtre-filiales\">Kencro Chemicals<\/span><\/li>\r\n  <li><span id=\"Servitank\" class=\"filtre filtre-filiales\">Servitank<\/span><\/li>\r\n  <li><span id=\"Transport Somavrac\" class=\"filtre filtre-filiales\">Transport Somavrac<\/span><\/li>\r\n  <li><span id=\"UBA\" class=\"filtre filtre-filiales\">UBA<\/span><\/li>\r\n  <li><span id=\"Groupe Somavrac\" class=\"filtre filtre-filiales\">Groupe Somavrac<\/span><\/li>\r\n  <li><span id=\"Servichem\" class=\"filtre filtre-filiales\">Servichem<\/span><\/li>\r\n  <li><span id=\"Transport Servitank\" class=\"filtre filtre-filiales\">Transport Servitank<\/span><\/li>\r\n  <li><span id=\"Porlier Express\" class=\"filtre filtre-filiales\">Porlier Express<\/span><\/li>\r\n  <li><span id=\"Somavrac\" class=\"filtre filtre-filiales\">Somavrac<\/span><\/li>\r\n<\/ul>\r\n<button type=\"button\" class=\"trigger-map scroll\" data-search-param=\"filliales\">Show<br>on map<span class=\"sub-arrow\"><\/span><\/button>\r\n<\/div>\r\n<div id=\"services\" class=\"\">\r\n    <div class=\"width-wrap\"><div class=\"btn-close i-btnx\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"467px\" height=\"467px\" viewBox=\"0 0 467 467\" enable-background=\"new 0 0 467 467\" xml:space=\"preserve\"><rect x=\"224.145\" y=\"-77.433\" transform=\"matrix(0.707 0.7072 -0.7072 0.707 233.718 -97.1819)\" width=\"19.999\" height=\"621.818\"><\/rect><rect x=\"224.146\" y=\"-77.432\" transform=\"matrix(0.7072 -0.707 0.707 0.7072 -96.5137 233.9039)\" width=\"19.999\" height=\"621.819\"><\/rect><\/svg><\/div><\/div>\r\n                          <ul class=\"list-services\">\r\n                                        <li>\r\n                            <div id=\"handling-and-transformation\" class=\"filtre filtre-services\">\r\n                                <span class=\" i-mm_manutention\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"63px\" height=\"63px\" viewBox=\"0 0 63 63\" enable-background=\"new 0 0 63 63\" xml:space=\"preserve\"><path fill=\"#566670\" d=\"M31.41,62.82C14.09,62.82,0,48.729,0,31.41C0,14.09,14.09,0,31.41,0c17.319,0,31.41,14.09,31.41,31.41 C62.82,48.729,48.729,62.82,31.41,62.82z M31.41,2C15.193,2,2,15.193,2,31.41C2,47.627,15.193,60.82,31.41,60.82 c16.217,0,29.41-13.193,29.41-29.411C60.82,15.193,47.627,2,31.41,2z\"><\/path><rect x=\"8.89\" y=\"42.539\" fill=\"#566670\" width=\"45.04\" height=\"1\"><\/rect><path fill=\"#566670\" d=\"M52.396,43.418H41.442V25.85l-20.418,5.093v4.1h-1v-8.53l3.451,1.43v-2.457l3.872,1.617v-2.579l3.958,1.786 v-2.99l4.564,1.935v-3.13l16.526,6.025V43.418z M42.442,42.418h8.953V28.851l-8.953-3.265V42.418z M21.024,28.01v1.902l2.866-0.715 L21.024,28.01z M24.475,26.987v2.064l3.095-0.772L24.475,26.987z M28.347,26.073v2.013l2.873-0.716L28.347,26.073z M32.305,24.831 v2.268l3.368-0.84L32.305,24.831z M36.869,23.554v2.406l3.918-0.977L36.869,23.554z\"><\/path><path fill=\"#566670\" d=\"M42.442,43.418H10.521v-7.176l22.811-3.631l9.11-0.006V43.418z M11.521,42.418h29.921v-8.813H33.41 l-21.889,3.49V42.418z\"><\/path><polygon fill=\"#566670\" points=\"13.187,36.775 12.19,36.699 13.7,17.022 16.809,17.022 18.275,35.971 17.278,36.047 15.883,18.022  14.625,18.022 \"><\/polygon><polygon fill=\"#566670\" points=\"25.997,42.498 24.997,42.498 24.997,38.43 20.055,38.932 20.055,42.498 19.055,42.498  19.055,38.027 25.997,37.322 \"><\/polygon><rect x=\"32.91\" y=\"33.219\" fill=\"#566670\" width=\"1\" height=\"9.699\"><\/rect><rect x=\"30.627\" y=\"19.296\" transform=\"matrix(0.2421 0.9703 -0.9703 0.2421 53.0043 -7.2266)\" fill=\"#566670\" width=\"1\" height=\"22.034\"><\/rect><\/svg><\/span>                                <span class=\"txt\">Handling and transformation<\/span>\r\n                            <\/div>\r\n      <\/li>\r\n                                                          <li>\r\n                            <div id=\"warehousing\" class=\"filtre filtre-services\">\r\n                                <span class=\" i-mm_entreposage\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"63px\" height=\"63px\" viewBox=\"0 0 63 63\" enable-background=\"new 0 0 63 63\" xml:space=\"preserve\"><g> <path fill=\"#546670\" d=\"M31.41,63C14.09,63,0,48.909,0,31.59S14.09,0.18,31.41,0.18c17.319,0,31.41,14.09,31.41,31.41  S48.729,63,31.41,63z M31.41,2.18C15.193,2.18,2,15.374,2,31.59C2,47.807,15.193,61,31.41,61c16.217,0,29.41-13.193,29.41-29.41  C60.82,15.374,47.627,2.18,31.41,2.18z\"><\/path> <rect x=\"15.226\" y=\"26.008\" fill=\"#546670\" width=\"1\" height=\"16.588\"><\/rect> <rect x=\"20.009\" y=\"26.008\" fill=\"#546670\" width=\"1\" height=\"16.588\"><\/rect> <rect x=\"15.726\" y=\"28.902\" fill=\"#546670\" width=\"4.784\" height=\"1\"><\/rect> <rect x=\"15.726\" y=\"32.092\" fill=\"#546670\" width=\"4.784\" height=\"1\"><\/rect> <rect x=\"15.726\" y=\"35.283\" fill=\"#546670\" width=\"4.784\" height=\"1\"><\/rect> <path fill=\"#546670\" d=\"M39.991,43.094H11.717V25.507h28.274V43.094z M12.717,42.094h26.274V26.507H12.717V42.094z\"><\/path> <rect x=\"8.92\" y=\"42.096\" fill=\"#546670\" width=\"46.042\" height=\"1\"><\/rect> <polygon fill=\"#546670\" points=\"50.118,42.596 49.118,42.596 49.118,35.281 46.529,35.281 46.529,42.596 45.529,42.596   45.529,34.281 50.118,34.281  \"><\/polygon> <rect x=\"47.324\" y=\"32.547\" fill=\"#546670\" width=\"1\" height=\"2.232\"><\/rect> <rect x=\"44.674\" y=\"32.047\" fill=\"#546670\" width=\"6.22\" height=\"1\"><\/rect> <path fill=\"#546670\" d=\"M39.889,24.036H11.713l1.247-0.905c0.171-0.125,4.297-3.046,12.894-3.046c8.6,0,12.648,2.925,12.817,3.049  L39.889,24.036z M15.25,23.036h21.143c-1.883-0.836-5.364-1.951-10.539-1.951C20.658,21.084,17.15,22.199,15.25,23.036z\"><\/path> <polygon fill=\"#546670\" points=\"46.029,37.354 41.781,37.354 41.781,17.783 26.354,17.783 26.354,20.585 25.354,20.585   25.354,16.783 42.781,16.783 42.781,36.354 46.029,36.354  \"><\/polygon> <rect x=\"49.618\" y=\"36.354\" fill=\"#546670\" width=\"5.343\" height=\"1\"><\/rect> <rect x=\"15.726\" y=\"38.701\" fill=\"#546670\" width=\"4.784\" height=\"1\"><\/rect><\/g><\/svg><\/span>                                <span class=\"txt\">Warehousing<\/span>\r\n                            <\/div>\r\n      <\/li>\r\n                                                          <li>\r\n                            <div id=\"stevedoring\" class=\"filtre filtre-services\">\r\n                                <span class=\" i-mm_arrimage\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"63.32px\" height=\"63.32px\" viewBox=\"0 0 63.32 63.32\" enable-background=\"new 0 0 63.32 63.32\" xml:space=\"preserve\"><g> <path fill=\"#546670\" d=\"M43.516,43.97H8.028l-0.114-5.603l-2.451-2.874v-3.621h9.222l0.177,0.155  c0.053,0.047,1.218,1.098,1.398,3.459h24.956c0.487-0.568,1.873-2.316,2.44-4.428l0.124-0.463h14.16l-0.086,0.7  C57.839,31.425,56.152,43.97,43.516,43.97z M9.253,42.72h34.265c9.984,0,12.457-8.346,12.977-10.873H44.726  c-0.855,2.651-2.695,4.608-2.777,4.695l-0.185,0.194H15.033v-0.625c0-1.708-0.581-2.641-0.859-2.989H6.713v1.91l2.441,2.864  L9.253,42.72z\"><\/path> <polygon fill=\"#546670\" points=\"24.603,36.113 23.353,36.113 23.353,27.514 9.69,27.514 9.69,32.499 8.44,32.499 8.44,26.264   24.603,26.264  \"><\/polygon> <path fill=\"#546670\" d=\"M20.615,27.514h-9.703v-8.161h9.703V27.514z M12.162,26.264h7.203v-5.661h-7.203V26.264z\"><\/path> <path fill=\"#566670\" d=\"M31.66,63.07c-17.32,0-31.41-14.092-31.41-31.41c0-17.32,14.09-31.41,31.41-31.41  c17.318,0,31.41,14.09,31.41,31.41C63.07,48.978,48.978,63.07,31.66,63.07z M31.66,2.25c-16.217,0-29.41,13.193-29.41,29.41  c0,16.217,13.193,29.41,29.41,29.41c16.216,0,29.41-13.193,29.41-29.411C61.07,15.443,47.877,2.25,31.66,2.25z\"><\/path><\/g><\/svg><\/span>                                <span class=\"txt\">Stevedoring<\/span>\r\n                            <\/div>\r\n      <\/li>\r\n                                                          <li>\r\n                            <div id=\"transportation\" class=\"filtre filtre-services\">\r\n                                <span class=\" i-mm_transport\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"63.32px\" height=\"63.32px\" viewBox=\"0 0 63.32 63.32\" enable-background=\"new 0 0 63.32 63.32\" xml:space=\"preserve\"><g> <path fill=\"#546670\" d=\"M36.177,37.717c-1.18,0-2.14-0.96-2.14-2.14c0-1.181,0.96-2.141,2.14-2.141c1.183,0,2.143,0.96,2.143,2.141  C38.317,36.757,37.357,37.717,36.177,37.717z M36.177,34.687c-0.488,0-0.89,0.397-0.89,0.891c0,0.49,0.399,0.89,0.89,0.89  c0.491,0,0.893-0.397,0.893-0.89C37.067,35.086,36.668,34.687,36.177,34.687z\"><\/path> <path fill=\"#546670\" d=\"M53.446,37.717c-1.18,0-2.14-0.96-2.14-2.14c0-1.181,0.96-2.141,2.14-2.141s2.14,0.96,2.14,2.141  C55.586,36.757,54.626,37.717,53.446,37.717z M53.446,34.687c-0.49,0-0.89,0.397-0.89,0.891c0,0.49,0.397,0.89,0.89,0.89  s0.89-0.397,0.89-0.89S53.936,34.687,53.446,34.687z\"><\/path> <path fill=\"#546670\" d=\"M31.073,37.717c-1.18,0-2.14-0.96-2.14-2.14c0-1.181,0.96-2.141,2.14-2.141s2.14,0.96,2.14,2.141  C33.213,36.757,32.253,37.717,31.073,37.717z M31.073,34.687c-0.491,0-0.89,0.397-0.89,0.891c0,0.49,0.397,0.89,0.89,0.89  s0.89-0.397,0.89-0.89S31.564,34.687,31.073,34.687z\"><\/path> <rect x=\"32.589\" y=\"34.952\" fill=\"#546670\" width=\"2.073\" height=\"1.25\"><\/rect> <rect x=\"26.149\" y=\"33.715\" fill=\"#546670\" width=\"1.25\" height=\"3.377\"><\/rect> <path fill=\"#546670\" d=\"M15.402,37.717c-1.18,0-2.14-0.96-2.14-2.14c0-1.181,0.96-2.141,2.14-2.141s2.14,0.96,2.14,2.141  C17.542,36.757,16.582,37.717,15.402,37.717z M15.402,34.687c-0.491,0-0.89,0.397-0.89,0.891c0,0.49,0.397,0.89,0.89,0.89  s0.89-0.397,0.89-0.89S15.893,34.687,15.402,34.687z\"><\/path> <path fill=\"#546670\" d=\"M10.299,37.717c-1.18,0-2.14-0.96-2.14-2.14c0-1.181,0.96-2.141,2.14-2.141c1.182,0,2.143,0.96,2.143,2.141  C12.439,36.757,11.479,37.717,10.299,37.717z M10.299,34.687c-0.489,0-0.89,0.397-0.89,0.891c0,0.49,0.399,0.89,0.89,0.89  c0.491,0,0.893-0.397,0.893-0.89C11.189,35.086,10.79,34.687,10.299,34.687z\"><\/path> <rect x=\"11.814\" y=\"34.952\" fill=\"#546670\" width=\"2.073\" height=\"1.25\"><\/rect> <path fill=\"#546670\" d=\"M35.345,34.34H8.521c-2.17,0-3.938-1.766-3.938-3.936V29.53c0-2.169,1.768-3.935,3.938-3.935h26.824  c2.17,0,3.936,1.765,3.936,3.935v0.874C39.281,32.574,37.515,34.34,35.345,34.34z M8.521,26.845c-1.481,0-2.688,1.202-2.688,2.685  v0.875c0,1.479,1.205,2.686,2.688,2.686h26.824c1.479,0,2.686-1.205,2.686-2.687V29.53c0-1.48-1.205-2.685-2.686-2.685H8.521z\"><\/path> <path fill=\"#546670\" d=\"M33.899,26.845h-5.678l-0.177-1.083c-0.146-0.373-0.097-0.786,0.138-1.122  c0.251-0.363,0.677-0.579,1.139-0.579h3.505c0.486,0,0.924,0.233,1.17,0.627c0.227,0.357,0.248,0.78,0.07,1.151L33.899,26.845z   M29.296,25.677h3.533l0.09-0.3c0.021-0.031,0.021-0.064-0.001-0.098c-0.021-0.033-0.052-0.049-0.092-0.049h-3.505  c-0.039,0-0.069,0.015-0.09,0.045c-0.021,0.03-0.023,0.062-0.008,0.094L29.296,25.677z\"><\/path> <path fill=\"#546670\" d=\"M16.031,26.845h-5.676l-0.176-1.083c-0.146-0.373-0.1-0.786,0.136-1.123  c0.251-0.363,0.677-0.579,1.139-0.579h3.505c0.486,0,0.924,0.233,1.17,0.626c0.227,0.356,0.249,0.779,0.071,1.152L16.031,26.845z   M11.428,25.677h3.531l0.09-0.3c0.021-0.031,0.021-0.065-0.001-0.099c-0.02-0.033-0.051-0.049-0.092-0.049h-3.505  c-0.039,0-0.069,0.015-0.09,0.045c-0.021,0.03-0.023,0.062-0.008,0.094L11.428,25.677z\"><\/path> <path fill=\"#546670\" d=\"M24.36,36.613h-5.028c-0.524,0-1.008-0.276-1.325-0.76c-0.396-0.604-0.46-1.437-0.164-2.115l0.343-0.647  l7.401-0.001l0.313,0.771c0.249,0.713,0.146,1.488-0.254,2.054C25.328,36.358,24.86,36.613,24.36,36.613z M18.946,34.339  c-0.098,0.291-0.024,0.629,0.107,0.829c0.047,0.072,0.146,0.194,0.277,0.194h5.028c0.117,0,0.209-0.095,0.265-0.174  c0.133-0.188,0.217-0.52,0.117-0.852L18.946,34.339L18.946,34.339z\"><\/path> <path fill=\"#546670\" d=\"M52.532,37.251H38.948v-3.643h1.914v-8.935h5.716v1.557h3.365c1.135,0,2.058,0.923,2.058,2.058v1.053h2.688  c1.938,0,2.401,1.506,2.419,2.083v2.191c0.539,0.243,1.117,0.72,1.117,1.495c0,0.948-0.882,1.44-1.698,1.5l-1.563,0.002v-1.25  h1.521c0.101-0.011,0.492-0.107,0.492-0.252c0-0.203-0.419-0.393-0.635-0.441l-0.479-0.113l-0.004-3.113  c-0.011-0.182-0.13-0.852-1.169-0.852h-3.938v-2.303c0-0.445-0.36-0.808-0.808-0.808H45.33v-1.557h-3.216v8.935H40.2v1.143h12.334  L52.532,37.251L52.532,37.251z\"><\/path> <path fill=\"#546670\" d=\"M49.488,31.116h-3.555v-2.394h3.555V31.116z M46.774,30.37h1.873v-0.901h-1.873V30.37z\"><\/path> <path fill=\"#546670\" d=\"M49.988,36.888h-5.422v-2.775h5.422V36.888z M45.566,35.888h3.422v-0.775h-3.422V35.888z\"><\/path> <path fill=\"#566670\" d=\"M31.66,63.07c-17.32,0-31.41-14.092-31.41-31.41c0-17.32,14.09-31.41,31.41-31.41  c17.318,0,31.41,14.09,31.41,31.41C63.07,48.978,48.978,63.07,31.66,63.07z M31.66,2.25c-16.217,0-29.41,13.193-29.41,29.41  c0,16.217,13.193,29.41,29.41,29.41c16.217,0,29.41-13.193,29.41-29.411C61.07,15.443,47.877,2.25,31.66,2.25z\"><\/path><\/g><\/svg><\/span>                                <span class=\"txt\">Transportation<\/span>\r\n                            <\/div>\r\n      <\/li>\r\n                                                          <li>\r\n                            <div id=\"chemical-distribution\" class=\"filtre filtre-services\">\r\n                                <span class=\" i-mm_dist_prod_chim\" style=\"background-image: none;\"><!--?xml version=\"1.0\" encoding=\"utf-8\"?--><svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" width=\"63.32px\" height=\"63.32px\" viewBox=\"0 0 63.32 63.32\" enable-background=\"new 0 0 63.32 63.32\" xml:space=\"preserve\"><g> <path fill=\"#546670\" d=\"M35.831,48.611H14.444c-1.297,0-2.171-0.387-2.601-1.149c-0.765-1.361,0.344-3.257,0.473-3.469  l8.257-13.409v-8.449h-2.225v-3.756H30.38v3.756h-1.995v8.367c0.822,1.322,6.744,10.854,8.37,13.661  c0.758,1.31,0.951,2.402,0.577,3.25c-0.415,0.938-1.332,1.16-1.436,1.184L35.831,48.611z M19.598,20.885h2.225v10.054  l-8.441,13.708c-0.225,0.372-0.796,1.586-0.446,2.204c0.237,0.422,0.953,0.511,1.51,0.511h21.229  c0.115-0.041,0.394-0.166,0.52-0.464c0.189-0.45,0.006-1.198-0.521-2.106c-1.729-2.986-8.377-13.671-8.443-13.778l-0.095-0.151  v-9.976h1.995V19.63h-9.53L19.598,20.885L19.598,20.885z\"><\/path> <path fill=\"#546670\" d=\"M27.238,36.881l4.537,7.069H17.561l4.063-7.069H27.238z M27.921,35.631h-7.018L15.401,45.2h18.661  L27.921,35.631z\"><\/path> <path fill=\"#546670\" d=\"M45.354,48.611h-9.59v-1.25h9.164c0.917-0.757,5.573-4.916,5.573-11.331c0-6.955-8.742-10.064-8.83-10.095  l-0.421-0.146v-8.726h2.395V15.96h-10.49v1.104h2.488v9.064h-0.625c-4.047,0-6.682,4.802-6.707,4.85l-1.102-0.594  c0.116-0.215,2.771-5.048,7.183-5.476v-6.596h-2.488V14.71h12.99v3.604H42.5v6.599c1.883,0.748,9.251,4.122,9.251,11.118  c0,7.721-5.978,12.268-6.23,12.457L45.354,48.611z\"><\/path> <path fill=\"#546670\" d=\"M34.29,35.231c3.194,0.069,9.16,0.191,13.41,0.212c0.471,4.951-2.396,7.969-3.353,8.827h-4.833  L34.29,35.231 M32.095,33.93l6.696,11.59h6.009c0,0,5.315-3.986,3.986-11.324C42.834,34.196,32.095,33.93,32.095,33.93\"><\/path><\/g><path fill=\"#566670\" d=\"M31.66,63.133c-17.32,0-31.41-14.092-31.41-31.41c0-17.32,14.09-31.41,31.41-31.41 c17.318,0,31.41,14.09,31.41,31.41C63.07,49.041,48.978,63.133,31.66,63.133z M31.66,2.312c-16.217,0-29.41,13.193-29.41,29.41 c0,16.217,13.193,29.41,29.41,29.41c16.217,0,29.41-13.193,29.41-29.411C61.07,15.505,47.877,2.312,31.66,2.312z\"><\/path><\/svg><\/span>                                <span class=\"txt\">Chemical Distribution<\/span>\r\n                            <\/div>\r\n      <\/li>\r\n                              <\/ul>\r\n              <button type=\"button\" class=\"trigger-map scroll\" data-search-param=\"services\">Show<br>on map<span class=\"sub-arrow\"><\/span><\/button>\r\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2927ed9 elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"2927ed9\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c41f58b\" data-id=\"c41f58b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ee293e8 elementor-widget elementor-widget-spacer\" data-id=\"ee293e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d2e86e7 elementor-widget elementor-widget-html\" data-id=\"d2e86e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"map\">\r\n    <div id=\"map\"><\/div>\r\n    <div id=\"overlay_map\" class=\"opened\">\r\n        <button type=\"button\" id=\"overlay_show_all\">Show all subsidiaries<\/button>\r\n        <div class=\"items\"><\/div>\r\n        <button id=\"open_overlay\"><span><span>Hide results<\/span><\/span><\/button>\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-89ff82e elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"89ff82e\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2c512ce\" data-id=\"2c512ce\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a476156 elementor-widget elementor-widget-html\" data-id=\"a476156\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Select at least one Subsidiary Select at least one Service Show all subsidiaries Fonbrai Chloretec Somavrac C.C. Kencro Chemicals Servitank Transport Somavrac UBA Groupe Somavrac Servichem Transport Servitank Porlier Express Somavrac Showon map Handling and transformation Warehousing Stevedoring Transportation Chemical Distribution Showon map Show all subsidiaries Hide results<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-2624","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Strategic Partner of Your Supply Chain - Groupe Somavrac<\/title>\n<meta name=\"description\" content=\"Browse through our interactive map and discover the Groupe Somavrac subsidiaries and their respective logistics services.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Strategic Partner of Your Supply Chain - Groupe Somavrac\" \/>\n<meta property=\"og:description\" content=\"Browse through our interactive map and discover the Groupe Somavrac subsidiaries and their respective logistics services.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/\" \/>\n<meta property=\"og:site_name\" content=\"Groupe Somavrac\" \/>\n<meta property=\"article:modified_time\" content=\"2019-08-14T14:57:55+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/\",\"url\":\"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/\",\"name\":\"Strategic Partner of Your Supply Chain - Groupe Somavrac\",\"isPartOf\":{\"@id\":\"https:\/\/www.groupesomavrac.com\/en\/#website\"},\"datePublished\":\"2019-08-13T21:53:30+00:00\",\"dateModified\":\"2019-08-14T14:57:55+00:00\",\"description\":\"Browse through our interactive map and discover the Groupe Somavrac subsidiaries and their respective logistics services.\",\"inLanguage\":\"en-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.groupesomavrac.com\/en\/#website\",\"url\":\"https:\/\/www.groupesomavrac.com\/en\/\",\"name\":\"Groupe Somavrac\",\"description\":\"Partenaire de votre cha\u00eene logistique\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.groupesomavrac.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CA\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Strategic Partner of Your Supply Chain - Groupe Somavrac","description":"Browse through our interactive map and discover the Groupe Somavrac subsidiaries and their respective logistics services.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/","og_locale":"en_US","og_type":"article","og_title":"Strategic Partner of Your Supply Chain - Groupe Somavrac","og_description":"Browse through our interactive map and discover the Groupe Somavrac subsidiaries and their respective logistics services.","og_url":"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/","og_site_name":"Groupe Somavrac","article_modified_time":"2019-08-14T14:57:55+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/","url":"https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/","name":"Strategic Partner of Your Supply Chain - Groupe Somavrac","isPartOf":{"@id":"https:\/\/www.groupesomavrac.com\/en\/#website"},"datePublished":"2019-08-13T21:53:30+00:00","dateModified":"2019-08-14T14:57:55+00:00","description":"Browse through our interactive map and discover the Groupe Somavrac subsidiaries and their respective logistics services.","inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.groupesomavrac.com\/en\/services-and-companies-interactive-map\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.groupesomavrac.com\/en\/#website","url":"https:\/\/www.groupesomavrac.com\/en\/","name":"Groupe Somavrac","description":"Partenaire de votre cha\u00eene logistique","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.groupesomavrac.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CA"}]}},"_links":{"self":[{"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/pages\/2624","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/comments?post=2624"}],"version-history":[{"count":5,"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/pages\/2624\/revisions"}],"predecessor-version":[{"id":2743,"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/pages\/2624\/revisions\/2743"}],"wp:attachment":[{"href":"https:\/\/www.groupesomavrac.com\/en\/wp-json\/wp\/v2\/media?parent=2624"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}