{"id":3011,"date":"2025-12-05T09:51:14","date_gmt":"2025-12-05T14:51:14","guid":{"rendered":"https:\/\/partscityauto.ca\/trouver-un-magasin\/"},"modified":"2026-02-06T11:24:57","modified_gmt":"2026-02-06T16:24:57","slug":"trouver-un-magasin","status":"publish","type":"page","link":"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/","title":{"rendered":"Trouver un magasin"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"3011\" class=\"elementor elementor-3011 elementor-2643\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5ea3c0b e-flex e-con-boxed e-con e-parent\" data-id=\"5ea3c0b\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7310b08 e-con-full e-flex e-con e-child\" data-id=\"7310b08\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-247d301 elementor-widget elementor-widget-shortcode\" data-id=\"247d301\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    <div class=\"sfroy-hexia-search-container\">\n        <input id=\"sfroy-hexia-search-input\" type=\"text\" class=\"sfroy-hexia-search-input\" placeholder=\"Search...\" autocomplete=\"off\">\n        <button id=\"sfroy-hexia-geolocation-button\" type=\"button\" title=\"Use my location\" aria-label=\"Click to automatically detect your location\" class=\"btn-white pr-2 pl-2 h-10 rounded-l-none border-l\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-navigation inline-block w-5 h-5 text-blue mt-1\" viewBox=\"0 0 24 24\" role=\"img\" alt=\"An image of a navigation arrow\"><path d=\"M3 11l19-9-9 19-2-8-8-2z\"><\/path><\/svg><\/button>\n    <\/div>\n    <style>\n        .sfroy-hexia-search-container {\n            display: flex;\n            flex-direction: row;\n        }\n        .sfroy-hexia-search-container gmp-place-autocomplete {\n            flex-grow: 1;\n        }\n        #sfroy-hexia-geolocation-button {\n            color: var(--e-global-color-primary);\n            border-color: var(--e-global-color-primary);\n            display: flex;\n            align-items: center;\n        }\n        #sfroy-hexia-geolocation-button:hover, #sfroy-hexia-geolocation-button:focus {\n            color: var(--e-global-color-secondary);\n            background-color: var(--e-global-color-primary);\n        }\n    <\/style>\n    <script type=\"text\/javascript\">\n        const searchField = document.getElementById('sfroy-hexia-search-input');\n        const geolocateButton = document.getElementById('sfroy-hexia-geolocation-button');\n\n        window.addEventListener('googleMapsInited', async function () {\n            await google.maps.importLibrary(\"places\");\n            const placeAutocomplete = new google.maps.places.PlaceAutocompleteElement({\n                includedRegionCodes: ['ca'],\n            });\n            console.log(placeAutocomplete);\n            placeAutocomplete.placeholder = 'Enter City and State or Postal Code';\n            searchField.parentElement.replaceChild(placeAutocomplete, searchField);\n\n            if (navigator.geolocation) {\n                geolocateButton.addEventListener('click', function () {\n                    navigator.geolocation.getCurrentPosition(\n                        (position) => {\n                            sfroyHexiaMap.setCenter({lat: position.coords.latitude, lng:position.coords.longitude});\n                        },\n                        (error) => {\n                            console.error(\"Geolocation error:\", error);\n                            \/\/ Handle cases where location is denied or unavailable\n                        }\n                    );\n                })\n\n            } else {\n                console.log(\"Geolocation is not supported by this browser.\");\n            }\n\n            placeAutocomplete.addEventListener('gmp-select', async ({ placePrediction }) => {\n                const place = placePrediction.toPlace();\n                await place.fetchFields({ fields: ['displayName', 'formattedAddress', 'location'] });\n                console.log(place.toJSON());\n                if (place.viewport) {\n                    sfroyHexiaMap.fitBounds(place.viewport);\n                }\n                else {\n                    sfroyHexiaMap.setCenter(place.location);\n                    sfroyHexiaMap.setZoom(13);\n                }\n            });\n        });\n\n        window.addEventListener(\"sfroyHexiaFilters\", (e) => {\n            let filterInputs = document.querySelectorAll('.sfroy-hexia-map-filters input:checked');\n            let searchInput = document.getElementById('map-search');\n\n            if (filterInputs.length > 0 || searchInput.value.length > 0) {\n                sfroyHexiaLocations.forEach(mapLocation => {\n                    let hasMatch = false,\n                        hasFilter = false,\n                        hasLocationFilter = false,\n                        hasLocation = false,\n                        textMatch = false;\n\n                    filterInputs.forEach(filterInput => {\n                        const taxonomy = filterInput.dataset.taxonomy,\n                            term = filterInput.dataset.term;\n\n                        if (taxonomy === 'entreprise_mrc') {\n                            hasLocationFilter = true;\n\n                            if (mapLocation.marker.content.classList.contains(taxonomy + '-' + term)) {\n                                hasLocation = true;\n                            }\n                        } else {\n                            hasFilter = true;\n\n                            if (mapLocation.marker.content.classList.contains(taxonomy + '-' + term)) {\n                                hasMatch = true;\n                            }\n                        }\n                    })\n                    if (searchInput.value.length > 0) {\n                        hasFilter = true;\n                        textMatch = mapLocation.marker.info.content.toLowerCase().includes(searchInput.value.toLowerCase());\n                        if (filterInputs.length > 0) {\n                            hasMatch = hasMatch && textMatch;\n                        } else {\n                            hasMatch = textMatch;\n                        }\n                    }\n\n                    if ((!hasFilter || hasMatch) && (!hasLocationFilter || hasLocation)) {\n                        mapLocation.marker.map = sfroyHexiaMap;\n                    } else {\n                        mapLocation.marker.map = null;\n                    }\n                });\n            } else {\n                sfroyHexiaLocations.forEach(mapLocation => {\n                    mapLocation.marker.map = sfroyHexiaMap;\n                });\n            }\n\n        }, false);\n    <\/script>\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48fe8e3 elementor-widget elementor-widget-shortcode\" data-id=\"48fe8e3\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    <div id=\"sfroy-hexia-listing-container\">\n\n    <\/div>\n    <style>\n        @keyframes fade-in {\n            from { opacity: 0; }\n            to { opacity: 1; }\n        }\n        #sfroy-hexia-listing-container {\n            border: 1px solid var(--e-global-color-facbfae, #EFEFEF);\n            max-height: 85vh;\n            overflow-y: auto;\n        }\n        .sfroy-hexia-listing-item {\n            position: relative;\n            display: block;\n            pointer-events: all;\n            cursor: pointer;\n            width: 100%;\n            padding: 1rem;\n            border-bottom: 1px solid var(--e-global-color-facbfae, #EFEFEF);\n            animation: 750ms ease-out fade-in;\n        }\n        .sfroy-hexia-listing-item:hover,\n        .sfroy-hexia-listing-item.selected {\n            background: var(--e-global-color-facbfae, #EFEFEF);\n        }\n        .sfroy-hexia-listing-item .place-name {\n            font-size:1.1rem;\n            text-transform: capitalize;\n        }\n        .sfroy-hexia-listing-item address {\n            font-style: normal;\n            font-size: 1rem;\n        }\n        .sfroy-hexia-listing-item address a {\n            color: inherit;\n            text-decoration: none;\n        }\n        .sfroy-hexia-listing-item address a:hover {\n            text-decoration: underline;\n        }\n        .sfroy-hexia-listing-item .place-phone {\n            font-size: 1rem;\n            line-height:1.5;\n        }\n        .sfroy-hexia-listing-item .place-extras,\n        .sfroy-hexia-listing-item button {\n            display: none;\n        }\n        .sfroy-hexia-listing-item button {\n            border: none;\n            position: absolute;\n            top: 0;\n            right: 0;\n        }\n        .sfroy-hexia-listing-item button:hover,\n        .sfroy-hexia-listing-item button:focus {\n            background: grey;\n        }\n        .sfroy-hexia-listing-item.selected .place-extras,\n        .sfroy-hexia-listing-item.selected button {\n            display: block;\n        }\n        .sfroy-hexia-listing-item .place-more-btn {\n            display: inline-block;\n            outline: 1px solid var(--e-global-color-primary);\n            padding: 0.5rem;\n            margin: 1rem 0;\n        }\n        .sfroy-hexia-listing-item.selected .place-more-btn {\n            display: none;\n        }\n        .sfroy-hexia-listing-item table.place-hours td,\n        .sfroy-hexia-listing-item table.place-hours th {\n            border: none;\n            padding: 2px 0;\n        }\n        .sfroy-hexia-listing-item .place-services-title {\n            display: block;\n            font-weight: bold;\n        }\n        .sfroy-hexia-listing-item .place-services {\n            list-style: none;\n            padding-left:0;\n        }\n        .sfroy-hexia-listing-item .place-view-btn {\n            outline: 1px solid var(--e-global-color-primary);\n            padding: 0.5rem;\n            margin: 1rem 0;\n            display: inline-block;\n        }\n    <\/style>\n    <script type=\"text\/javascript\">\n        window.addEventListener('locationsUpdated', (e) => {\n            const container = document.getElementById('sfroy-hexia-listing-container');\n            \n            if (sfroyHexiaLocations.length < 1) {\n                return;\n            }\n            sfroyHexiaLocations.sort((a, b) => {\n                if (!a.visible) { return 9999; }\n                return a.distance - b.distance;\n            }).forEach((place) => {\n\n                if (place.element === undefined || place.element === null) {\n                    const divElement = document.createElement(\"div\");\n                    const divExtras = document.createElement(\"div\");\n                    const closeBtn = document.createElement(\"button\");\n                    divElement.className = \"sfroy-hexia-listing-item\";\n                    divElement.innerHTML = `<span class=\"place-name\"><a href=\"${place.url}\">${place.name}<\/a><\/span>\n                        <address><a href=\"${place.googleMapUrl || place.directionsUrl}\" target=\"_blank\" rel=\"noopener noreferrer\" onclick=\"event.stopPropagation();\">${place.address}<br>\n                        ${place.city}, ${place.province}, ${place.postalCode}<\/a><\/address>\n                        <span class=\"place-phone\"><a href=\"tel:${place.phone.replace(\/[^0-9+]\/g, '')}\">${place.phone}<\/a><\/span><br>\n                        <span class=\"place-distance\">${place.distance}<\/span>km\n                        <div><a class=\"place-more-btn\" href=\"#\">See details<\/a><\/div>`;\n\n                    divExtras.className = \"place-extras\";\n\n                    const hours = place.hours.map( (item) => `<tr>\n                            <td>${item.day}<\/td><td>${item.hours}<\/td>\n                        <\/tr>`).join(\"\")\n                    divExtras.innerHTML = divExtras.innerHTML + `<table class=\"place-hours\">\n                    <tr><th class=\"place-hours-title\" colspan=\"2\">Hours<\/th>\n                    <\/tr>\n                    ${hours}\n                    <\/table>`;\n\n                    if (place.services && place.services.length > 0) {\n                        const services = place.services.map((item) => `<li>${item}<\/li>`).join(\"\")\n                        divExtras.innerHTML = divExtras.innerHTML + `<span class=\"place-services-title\">Services<\/span>\n                            <ul class=\"place-services\">${services}<\/ul>`;\n                    }\n\n                    divExtras.innerHTML = divExtras.innerHTML + `<a class=\"place-view-btn\" href=\"${place.url}\">View more details<\/a>`;\n\n                    divElement.appendChild(divExtras);\n\n                    closeBtn.innerHTML = `&#10006;`;\n                    closeBtn.addEventListener(\"click\", (e) => {\n                        e.stopPropagation();\n                        e.preventDefault();\n                        const container = document.getElementById('sfroy-hexia-listing-container');\n                        const previouslySelected = container.getElementsByClassName('selected');\n                        if (previouslySelected.length > 0) {\n                            previouslySelected[0].classList.remove('selected');\n                        }\n                        window.dispatchEvent(new Event('sfroyHexiaMapUnselectPin'));\n                    })\n                    divElement.appendChild(closeBtn);\n\n                    \/\/ divElement.innerHTML = divElement.innerHTML + `Monday: ${place.hours.monday[0]?.start} to ${place.hours.monday[0]?.end}`;\n                    divElement.dataset.id = place.id;\n                    divElement.addEventListener('click', (e) => {\n                        if (divElement.classList.contains('selected')) {\n                            return true;\n                        }\n\n                        e.preventDefault();\n                        e.stopPropagation();\n                        google.maps.event.trigger(place.marker, 'click');\n                    })\n                    place.element = divElement;\n                }\n                else {\n                    place.element.getElementsByClassName('place-distance')[0].innerText = place.distance;\n                }\n\n                if (place.visible) {\n                    place.element.style.display = 'block';\n                }\n                else {\n                    place.element.style.display = 'none';\n                }\n\n                container.appendChild(place.element);\n            })\n        })\n\n\n        window.addEventListener(\"sfroyHexiaMapSelectedPin\", (e) => {\n            const selectedMarker = e.detail;\n            const container = document.getElementById('sfroy-hexia-listing-container');\n            const previouslySelected = container.getElementsByClassName('selected');\n\n            if (sfroyHexiaLocations.length < 1) {\n                return;\n            }\n\n            if (previouslySelected.length > 0) {\n                previouslySelected[0].classList.remove('selected');\n            }\n\n            const selectedLocation = sfroyHexiaLocations.find((location) => location.marker === selectedMarker);\n\n            if (selectedLocation) {\n                selectedLocation.element.classList.add('selected');\n                selectedLocation.element.scrollIntoView({container:\"nearest\"});\n            }\n        });\n\n    <\/script>\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a207359 elementor-widget elementor-widget-shortcode\" data-id=\"a207359\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">    <div style=\"width:100%;height:90vh\"\n         class=\"sfroy-hexia-map\" id=\"sfroy-hexia-map\"><\/div>\n    <script type=\"text\/javascript\">\n        let sfroyHexiaMap;\n        let sfroyHexiaMapSelectedPin;\n\n        const sfroyHexiaLocations = [\n                        {\n                id: 5334, \n                lat: 45.6307449, \n                lng: -73.86208119999999,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Boisbriand\", \n                address: \"3737 Boulevard de la Grande-All\u00e9e\", \n                city: \"Boisbriand\", \n                province: \"QC\", \n                postalCode: \"J7H 1M6\",\n                phone: \"450-434-6666\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/5334\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Boisbriand\/@45.6309055,-73.8623234,17.5z\/data=!4m6!3m5!1s0x4cc9262cdd4fa459:0x7f258dd09383bf7!8m2!3d45.6307449!4d-73.8620812!16s%2Fg%2F11dxbdwx2s?entry=ttu&amp;g_ep=EgoyMDI2MDIyNS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=3737+Boulevard+de+la+Grande-All%C3%A9e+%2C%0ABoisbriand%2C+QC%2C+J7H+1M6\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\" - \"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 5250, \n                lat: 44.7129085, \n                lng: -63.60485360000001,\n                name: \"Parts City Auto Parts in Dartmouth\", \n                address: \"28 Topple Dr\", \n                city: \"Dartmouth\", \n                province: \"NS\", \n                postalCode: \"B3B 1L6\",\n                phone: \"(902) 468-3600\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-in-dartmouth-2\/\",\n                googleMapUrl: \"\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=28+Topple+Dr+%2C%0ADartmouth%2C+NS%2C+B3B+1L6\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4566, \n                lat: 46.0769083, \n                lng: -71.9308107,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Victoriaville\", \n                address: \"10 Boulevard Arthabaska Est\", \n                city: \"Victoriaville\", \n                province: \"QC\", \n                postalCode: \"G6T 0S3\",\n                phone: \"819-752-6686\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-victoriaville\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Victoriaville\/@46.0769787,-71.9334342,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cb806a7aca675a9:0x6b8354882f8f64f!8m2!3d46.0769787!4d-71.9308593!16s%2Fg%2F1tmxf4pz?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=10+Boulevard+Arthabaska+Est+%2C%0AVictoriaville%2C+QC%2C+G6T+0S3\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4564, \n                lat: 45.6518939, \n                lng: -73.4149815,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Varennes\", \n                address: \"603, boul. Lionel-Boulet, local 8\", \n                city: \"Varennes\", \n                province: \"QC\", \n                postalCode: \"J3X 1P7\",\n                phone: \"450-652-2983\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-varennes\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+city+Varennes\/@45.6515726,-73.4177087,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc8e32bbff5073b:0x2cae5675e423cb27!8m2!3d45.6515726!4d-73.4151338!16s%2Fg%2F11f53nvzg5?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=603%2C+boul.+Lionel-Boulet%2C+local+8+%2C%0AVarennes%2C+QC%2C+J3X+1P7\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4562, \n                lat: 46.0392832, \n                lng: -74.2232884,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Val-David\", \n                address: \"1855, Route 117\", \n                city: \"Val-David\", \n                province: \"QC\", \n                postalCode: \"J0T 2N0\",\n                phone: \"819-322-6983\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-val-david\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Val-David\/@46.0391557,-74.2259085,17z\/data=!3m1!4b1!4m6!3m5!1s0x4ccf413314baef1f:0xc2606f7d9a2e635d!8m2!3d46.0391557!4d-74.2233336!16s%2Fg%2F11gh7z0v0n?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1855%2C+Route+117+%2C%0AVal-David%2C+QC%2C+J0T+2N0\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4560, \n                lat: 46.0930551, \n                lng: -71.33395449999999,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Thetford Mines\", \n                address: \"917 Boul. Frontenac Ouest\", \n                city: \"Thetford Mines\", \n                province: \"QC\", \n                postalCode: \"G6G 6K5\",\n                phone: \"418-755-1201\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-thetford-mines\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Pi%C3%A8ces+d\\'auto+Thetford+Inc.\/@46.093151,-71.3364035,17z\/data=!4m6!3m5!1s0x4cb831d4db0ca301:0x72c83d773f9336c1!8m2!3d46.0931524!4d-71.3338315!16s%2Fg%2F11fb22q6r3?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=917+Boul.+Frontenac+Ouest+%2C%0AThetford+Mines%2C+QC%2C+G6G+6K5\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4558, \n                lat: 45.532949, \n                lng: -73.276575,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 St-Basile\", \n                address: \"131C Blvd. Sir-Wilfrid-Laurier\", \n                city: \"St-Basile-le-Grand\", \n                province: \"QC\", \n                postalCode: \"J3N 1M2\",\n                phone: \"450-441-1982\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-st-basile\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+St-Basile\/@45.532949,-73.2791499,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc900c30be05bef:0x4dd0c9a004447abb!8m2!3d45.532949!4d-73.276575!16s%2Fg%2F1q5grv3rx?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=131C+Blvd.+Sir-Wilfrid-Laurier+%2C%0ASt-Basile-le-Grand%2C+QC%2C+J3N+1M2\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4556, \n                lat: 46.03040319999999, \n                lng: -73.0854998,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Sorel\", \n                address: \"479 boul. Fiset\", \n                city: \"Sorel-Tracy\", \n                province: \"QC\", \n                postalCode: \"J3P 6J9\",\n                phone: \"450-746-3983\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-sorel\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Sorel\/@46.0304032,-73.0880747,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc885f834adc539:0xc45a92de078054c!8m2!3d46.0304032!4d-73.0854998!16s%2Fg%2F1t_kg3tc?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=479+boul.+Fiset+%2C%0ASorel-Tracy%2C+QC%2C+J3P+6J9\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4554, \n                lat: 46.2248551, \n                lng: -71.7795809,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Plessisville\", \n                address: \"2100 Avenue St-Edouard\", \n                city: \"Plessisville\", \n                province: \"QC\", \n                postalCode: \"G6L 2L4\",\n                phone: \"819-362-6321\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-plessisville\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Plessisville\/@46.2247044,-71.7822439,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cb80dd2a71b1c07:0x8c64390dd227d09e!8m2!3d46.2247044!4d-71.779669!16s%2Fg%2F1th86qw6?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2100+Avenue+St-Edouard+%2C%0APlessisville%2C+QC%2C+G6L+2L4\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4552, \n                lat: 45.4590737, \n                lng: -73.6277149,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 NDG\", \n                address: \"6705C rue Saint-Jacques\", \n                city: \"Montr\u00e9al\", \n                province: \"QC\", \n                postalCode: \"H4B 1V3\",\n                phone: \"438-381-3800\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-ndg\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+NDG\/@45.4590737,-73.6302898,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc911b12f01ee91:0x3c0fdba8553fdee4!8m2!3d45.4590737!4d-73.6277149!16s%2Fg%2F11p5mhd_8x?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=6705C+rue+Saint-Jacques+%2C%0AMontr%C3%A9al%2C+QC%2C+H4B+1V3\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"}], \n                services: []            },\n                        {\n                id: 4548, \n                lat: 45.7146402, \n                lng: -73.6198888,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Mascouche\", \n                address: \"1155 rue L\u00e9vis\", \n                city: \"Terrebonne\", \n                province: \"QC\", \n                postalCode: \"J6W 5S6\",\n                phone: \"450-477-9293\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-mascouche\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Mascouche\/@45.7146402,-73.6224637,17z\/data=!3m2!4b1!5s0x4cc8de744dbc95b5:0xc667ced75a2102fe!4m6!3m5!1s0x4cc8dc04919c251f:0xbba19457a31b8d53!8m2!3d45.7146402!4d-73.6198888!16s%2Fg%2F1td4p9jf?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1155+rue+L%C3%A9vis+%2C%0ATerrebonne%2C+QC%2C+J6W+5S6\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4546, \n                lat: 45.512527, \n                lng: -73.498589,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Longueuil\", \n                address: \"1565 Boulevard Taschereau\", \n                city: \"Longueuil\", \n                province: \"QC\", \n                postalCode: \"J4K 2X8\",\n                phone: \"450-677-6391\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-longueuil\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Longueuil\/@45.512527,-73.5011639,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc91b2dcd55a8f1:0x54225f20022d72cf!8m2!3d45.512527!4d-73.498589!16s%2Fg%2F1hc3jvxxk?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1565+Boulevard+Taschereau+%2C%0ALongueuil%2C+QC%2C+J4K+2X8\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4544, \n                lat: 46.0288506, \n                lng: -73.43993189999999,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Joliette\", \n                address: \"261 Baby\", \n                city: \"Joliette\", \n                province: \"QC\", \n                postalCode: \"J6E 2V6\",\n                phone: \"450-753-7514\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-joliette\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Joliette\/@46.0290643,-73.4424056,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc8bdba521cbd35:0xd55e4ee2383947e2!8m2!3d46.0290643!4d-73.4398307!16s%2Fg%2F1vq74ggk?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=261+Baby+%2C%0AJoliette%2C+QC%2C+J6E+2V6\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4542, \n                lat: 45.3739116, \n                lng: -73.5357564,\n                name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Delson\", \n                address: \"3 Rue Industrielle\", \n                city: \"Delson\", \n                province: \"QC\", \n                postalCode: \"J5B 1V6\",\n                phone: \"450-444-3211\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-delson\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Delson\/@45.3739205,-73.5382934,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cc90db83c773e51:0x95c3df94781adef0!8m2!3d45.3739205!4d-73.5357185!16s%2Fg%2F11cs4jrk_7?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=3+Rue+Industrielle+%2C%0ADelson%2C+QC%2C+J5B+1V6\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4540, \n                lat: 47.6160819, \n                lng: -52.7260708,\n                name: \"Parts City Auto Parts \u00e0 St-John\\'s\", \n                address: \"25 Hebron Hay\", \n                city: \"St-John\\'s\", \n                province: \"NL\", \n                postalCode: \"A1A 0M1\",\n                phone: \"709-726-9397\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-st-johns\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+St.+John\\'s\/@47.6161957,-52.7962254,13z\/data=!4m7!3m6!1s0x4b0ca6a574bb60e1:0x4eb8c4fb279b309!8m2!3d47.6161957!4d-52.7261876!15sCiJQYXJ0cyBDaXR5IEF1dG8gUGFydHMgaW4gU3QtSm9obidzWiQiInBhcnRzIGNpdHkgYXV0byBwYXJ0cyBpbiBzdCBqb2huJ3OSARBhdXRvX3BhcnRzX3N0b3Jl4AEA!16s%2Fg%2F11c4m23k9y?entry=tts&amp;g_ep=EgoyMDI1MTIwOS4wIPu8ASoASAFQAw%3D%3D&amp;skid=99203d55-de76-4af3-9aed-b48ea1a130ed\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=25+Hebron+Hay+%2C%0ASt-John%27s%2C+NL%2C+A1A+0M1\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4538, \n                lat: 47.5255843, \n                lng: -52.8142892,\n                name: \"Parts City Auto Parts \u00e0 Mount Pearl\", \n                address: \"1075 Topsail Road\", \n                city: \"Mount Pearl\", \n                province: \"NL\", \n                postalCode: \"A1N 5G1\",\n                phone: \"709-364-9397\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-mount-pearl\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Mount+Pearl\/@47.5255533,-52.8168984,17z\/data=!3m1!4b1!4m6!3m5!1s0x4b0cbca6cbad0a71:0xbd29a13fe0439b1e!8m2!3d47.5255533!4d-52.8143235!16s%2Fg%2F1vlk14hv?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1075+Topsail+Road+%2C%0AMount+Pearl%2C+NL%2C+A1N+5G1\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4536, \n                lat: 47.7995889, \n                lng: -64.6425776,\n                name: \"Parts City Auto Parts \u00e0 Lameque\", \n                address: \"93 rue du P\u00eacheur Nord\", \n                city: \"Lameque\", \n                province: \"NB\", \n                postalCode: \"E8T 1K6\",\n                phone: \"506-344-7741\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-lameque\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Lameque\/@47.7995925,-64.6451525,17z\/data=!3m1!4b1!4m6!3m5!1s0x4c9f29cbb891e633:0xc74e7c231839d771!8m2!3d47.7995889!4d-64.6425776!16s%2Fg%2F11yb7x1j4s?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=93+rue+du+P%C3%AAcheur+Nord+%2C%0ALameque%2C+NB%2C+E8T+1K6\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4534, \n                lat: 46.4377788, \n                lng: -63.6369273,\n                name: \"Parts City Auto Parts \u00e0 Kensington\", \n                address: \"4 Commerical Drive\", \n                city: \"Kensington\", \n                province: \"PEI\", \n                postalCode: \"C0B 1M0\",\n                phone: \"902-836-5141\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-kensington\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Pi%C3%A8ces+d\\'Auto+%C3%A0+Kensington\/@46.4378767,-63.6394949,16z\/data=!3m1!4b1!4m6!3m5!1s0x4b5f90d76970e99b:0xa3d58c37de8ec6a3!8m2!3d46.437873!4d-63.63692!16s%2Fg%2F11b5wjv99_?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=4+Commerical+Drive+%2C%0AKensington%2C+PEI%2C+C0B+1M0\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4532, \n                lat: 45.91584760000001, \n                lng: -66.6197025,\n                name: \"Parts City Auto Parts \u00e0 Fredericton\", \n                address: \"50 Whiting Road\", \n                city: \"Fredericton\", \n                province: \"NB\", \n                postalCode: \"E3B 5V5\",\n                phone: \"506-453-1600\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-fredericton\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Auto+Parts+in+Fredericton+%2F+Auto+Machinery\/@45.9159238,-66.6224166,17z\/data=!3m2!4b1!5s0x4ca421a195dca09f:0xd8180aeb8cf73168!4m6!3m5!1s0x4ca421a21d7965c1:0x8133ca3a9e623cb1!8m2!3d45.9159238!4d-66.6198417!16s%2Fg%2F1q5grjcrp?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=50+Whiting+Road+%2C%0AFredericton%2C+NB%2C+E3B+5V5\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4530, \n                lat: 44.6013288, \n                lng: -75.7037587,\n                name: \"Parts City Auto Parts \u00e0 Brockville\", \n                address: \"329 Stewart blvd\", \n                city: \"Brockville\", \n                province: \"ON\", \n                postalCode: \"K6V 4W8\",\n                phone: \"613-865-8937\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-brockville\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Auto+Parts+in+Brockville\/@44.6013326,-75.7063336,17z\/data=!3m1!4b1!4m6!3m5!1s0x4ccd0fcbc83b8d6d:0x225af378ac74821c!8m2!3d44.6013288!4d-75.7037587!16s%2Fg%2F11ys29pwbs?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=329+Stewart+blvd+%2C%0ABrockville%2C+ON%2C+K6V+4W8\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"07:30 - 19:00\"},{\"day\":\"Mardi\",\"hours\":\"07:30 - 19:00\"},{\"day\":\"Mercredi\",\"hours\":\"07:30 - 19:00\"},{\"day\":\"Jeudi\",\"hours\":\"07:30 - 19:00\"},{\"day\":\"Vendredi\",\"hours\":\"07:30 - 19:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"}], \n                services: []            },\n                        {\n                id: 4528, \n                lat: 44.3712419, \n                lng: -64.54091369999999,\n                name: \"Parts City Auto Parts \u00e0 Bridgewater\", \n                address: \"2796 Highway 325\", \n                city: \"Wileville\", \n                province: \"NS\", \n                postalCode: \"B4V 5G2\",\n                phone: \"902-543-1726\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-auto-parts-a-bridgewater\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Auto+Parts+in+Bridgewater\/@44.3712048,-64.5434449,16z\/data=!3m1!4b1!4m6!3m5!1s0x4b5767d67fe05377:0x819ccb905b6b4a31!8m2!3d44.371201!4d-64.54087!16s%2Fg%2F1s04fdb7g?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2796+Highway+325+%2C%0AWileville%2C+NS%2C+B4V+5G2\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                        {\n                id: 4526, \n                lat: 47.57549030000001, \n                lng: -53.2853662,\n                name: \"Parts City Auto Parts \u00e0 Bay Roberts\", \n                address: \"2 Sawdust Road\", \n                city: \"Bay Roberts\", \n                province: \"NL\", \n                postalCode: \"A0A 1G0\",\n                phone: \"709-786-2148\", \n                url: \"https:\/\/partscityauto.ca\/fr\/location\/4526\/\",\n                googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Parts+City+Auto+Parts+in+Bay+Roberts\/@47.5753351,-53.2866062,17.68z\/data=!4m6!3m5!1s0x4b734b00069e4031:0x8c79ada4d36b4fcf!8m2!3d47.5754715!4d-53.2853059!16s%2Fg%2F11w8pt43cx?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2+Sawdust+Road+%2C%0ABay+Roberts%2C+NL%2C+A0A+1G0\",\n                hours: [{\"day\":\"Lundi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\" - \"}], \n                services: []            },\n                    ];\n\n        \/\/ D\u00e9finir la fonction globalement AVANT le chargement du script\n        window.siteInitMap = async function() {\n            const {PinElement} = await google.maps.importLibrary(\"marker\");\n\n            sfroyHexiaMap = new google.maps.Map(document.getElementById(\"sfroy-hexia-map\"), {\n                mapId: 'd91b1f624d5cfb0630c0548e',\n                zoom: 11,\n                center: {lat: 45.53528926383944, lng: -73.58843289633663},\n            });\n\n            sfroyHexiaLocations.map((location, i) => {\n\n                const pin = new google.maps.marker.PinElement({\n                    background: '#CD2030',\n                    glyphColor: '#eeeeee',\n                    borderColor: '#CD2030',\n                });\n                const selectedPin = new google.maps.marker.PinElement({\n                    background: '#000000',\n                    glyphColor: '#eeeeee',\n                    borderColor: '#000000',\n                })\n\n                const marker = new google.maps.marker.AdvancedMarkerElement({\n                    map: sfroyHexiaMap,\n                    position: location,\n                    content: pin.element,\n                    gmpClickable: true\n                });\n\n                \/\/ select business\n                google.maps.event.addListener(marker, 'click', function () {\n                    if (sfroyHexiaMapSelectedPin) {\n                        if (sfroyHexiaMapSelectedPin === marker) {\n                            return;\n                        }\n                        \/\/ reset pin\n                        sfroyHexiaMapSelectedPin.content = pin.element;\n                    }\n                    sfroyHexiaMapSelectedPin = marker;\n                    marker.content = selectedPin.element;\n                    window.dispatchEvent(new CustomEvent('sfroyHexiaMapSelectedPin', {\n                        detail: marker\n                    }));\n                });\n\n                sfroyHexiaLocations[i].marker = marker;\n                return marker;\n            });\n\n            window.dispatchEvent(new Event('googleMapsInited'));\n\n            sfroyHexiaMap.addListener('idle', function() {\n                const mapCenter = sfroyHexiaMap.getCenter();\n                const mapBounds = sfroyHexiaMap.getBounds();\n\n                sfroyHexiaLocations.forEach(mapLocation => {\n                    if (mapBounds.contains({lat:mapLocation.lat, lng:mapLocation.lng})) {\n                        mapLocation.visible = true;\n                        mapLocation.distance = getDistance(mapCenter, {lat:mapLocation.lat, lng:mapLocation.lng});\n                    }\n                    else {\n                        mapLocation.visible = false;\n                        mapLocation.distance = 9999;\n                    }\n                })\n\n                window.dispatchEvent(new Event('locationsUpdated'));\n\n                function getDistance(p1, p2) {\n                    return (google.maps.geometry.spherical.computeDistanceBetween(p1, p2) \/ 1000).toFixed(2)\n                }\n            });\n\n            window.addEventListener('sfroyHexiaMapUnselectPin', function() {\n                const pin = new google.maps.marker.PinElement({\n                    background: '#CD2030',\n                    glyphColor: '#eeeeee',\n                    borderColor: '#CD2030',\n                });\n                sfroyHexiaMapSelectedPin.content = pin.element;\n                sfroyHexiaMapSelectedPin = null;\n            })\n        };\n\n        \/\/ Variable pour \u00e9viter les chargements multiples\n        let googleMapsLoadingStarted = false;\n\n        \/\/ Fonction pour charger Google Maps\n        function loadGoogleMaps() {\n            if (window.google && window.google.maps) {\n                \/\/ Google Maps d\u00e9j\u00e0 charg\u00e9, initialiser directement\n                window.siteInitMap();\n                return;\n            }\n            \n            if (googleMapsLoadingStarted) {\n                \/\/ D\u00e9j\u00e0 en cours de chargement\n                return;\n            }\n            \n            googleMapsLoadingStarted = true;\n            \n            const script = document.createElement('script');\n            script.src = 'https:\/\/maps.google.ca\/maps\/api\/js?loading=async&key=AIzaSyDwt327MfUT7nMHV0bomiY1dSwmzntqVF0&callback=siteInitMap&libraries=marker,geometry&v=weekly&language=fr&region=CA';\n            script.async = true;\n            script.defer = true;\n            document.head.appendChild(script);\n        }\n\n        \/\/ Fonction pour v\u00e9rifier le statut actuel du consentement\n        function checkConsentStatus() {\n            if (typeof cmplz_categories !== 'undefined' && cmplz_categories.includes('marketing')) {\n                loadGoogleMaps();\n                return true;\n            }\n            return false;\n        }\n\n        \/\/ \u00c9couter l'\u00e9v\u00e9nement de consentement Complianz (quand l'utilisateur accepte)\n        document.addEventListener('cmplz_enable_category', function(consentData) {\n            if (consentData.detail.category === 'marketing') {\n                loadGoogleMaps();\n            }\n        });\n\n        \/\/ V\u00e9rifier imm\u00e9diatement si le consentement est d\u00e9j\u00e0 donn\u00e9\n        if (!checkConsentStatus()) {\n            \/\/ Si pas encore de consentement, v\u00e9rifier p\u00e9riodiquement (fallback)\n            const consentCheckInterval = setInterval(function() {\n                if (checkConsentStatus()) {\n                    clearInterval(consentCheckInterval);\n                }\n            }, 500);\n            \n            \/\/ Arr\u00eater de v\u00e9rifier apr\u00e8s 30 secondes\n            setTimeout(function() {\n                clearInterval(consentCheckInterval);\n            }, 30000);\n        }\n\n        \/\/ Fallback : Si Complianz n'est pas d\u00e9tect\u00e9 apr\u00e8s 2 secondes, charger directement\n        setTimeout(function() {\n            if (typeof cmplz_categories === 'undefined' && !googleMapsLoadingStarted) {\n                console.log('Complianz non d\u00e9tect\u00e9, chargement direct de Google Maps');\n                loadGoogleMaps();\n            }\n        }, 2000);\n    <\/script>\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-3011","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Trouver un magasin | Parts City Pi\u00e8ces d&#039;Auto<\/title>\n<meta name=\"description\" content=\"Trouvez Parts City Pi\u00e8ces d&#039;Auto pr\u00e8s de chez vous. Adresses, heures, t\u00e9l\u00e9phone et itin\u00e9raire. Pi\u00e8ces de qualit\u00e9 localement\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Trouver un magasin\" \/>\n<meta property=\"og:description\" content=\"Trouvez Parts City Pi\u00e8ces d&#039;Auto pr\u00e8s de chez vous. Adresses, heures, t\u00e9l\u00e9phone et itin\u00e9raire. Pi\u00e8ces de qualit\u00e9 localement\" \/>\n<meta property=\"og:url\" content=\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/\" \/>\n<meta property=\"og:site_name\" content=\"Parts City Pi\u00e8ces d&#039;Auto\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-06T16:24:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/partscityauto.ca\/wp-content\/uploads\/2025\/12\/Parts-City-Canada.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimation du temps de lecture\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/\",\"url\":\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/\",\"name\":\"Trouver un magasin | Parts City Pi\u00e8ces d&#039;Auto\",\"isPartOf\":{\"@id\":\"https:\/\/partscityauto.ca\/fr\/#website\"},\"datePublished\":\"2025-12-05T14:51:14+00:00\",\"dateModified\":\"2026-02-06T16:24:57+00:00\",\"description\":\"Trouvez Parts City Pi\u00e8ces d'Auto pr\u00e8s de chez vous. Adresses, heures, t\u00e9l\u00e9phone et itin\u00e9raire. Pi\u00e8ces de qualit\u00e9 localement\",\"breadcrumb\":{\"@id\":\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/partscityauto.ca\/fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Trouver un magasin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/partscityauto.ca\/fr\/#website\",\"url\":\"https:\/\/partscityauto.ca\/fr\/\",\"name\":\"Parts City Pi\u00e8ces d&#039;Auto\",\"description\":\"Meilleures pi\u00e8ces\u2026 meilleurs prix, tous les jours !\",\"publisher\":{\"@id\":\"https:\/\/partscityauto.ca\/fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/partscityauto.ca\/fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/partscityauto.ca\/fr\/#organization\",\"name\":\"Parts City Pi\u00e8ces d&#039;Auto\",\"url\":\"https:\/\/partscityauto.ca\/fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\/\/partscityauto.ca\/fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/partscityauto.ca\/wp-content\/uploads\/2025\/02\/cropped-GDV-Logo_PartsCity_renverse_RGB.png\",\"contentUrl\":\"https:\/\/partscityauto.ca\/wp-content\/uploads\/2025\/02\/cropped-GDV-Logo_PartsCity_renverse_RGB.png\",\"width\":864,\"height\":247,\"caption\":\"Parts City Pi\u00e8ces d&#039;Auto\"},\"image\":{\"@id\":\"https:\/\/partscityauto.ca\/fr\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Trouver un magasin | Parts City Pi\u00e8ces d&#039;Auto","description":"Trouvez Parts City Pi\u00e8ces d'Auto pr\u00e8s de chez vous. Adresses, heures, t\u00e9l\u00e9phone et itin\u00e9raire. Pi\u00e8ces de qualit\u00e9 localement","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:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/","og_locale":"fr_CA","og_type":"article","og_title":"Trouver un magasin","og_description":"Trouvez Parts City Pi\u00e8ces d'Auto pr\u00e8s de chez vous. Adresses, heures, t\u00e9l\u00e9phone et itin\u00e9raire. Pi\u00e8ces de qualit\u00e9 localement","og_url":"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/","og_site_name":"Parts City Pi\u00e8ces d&#039;Auto","article_modified_time":"2026-02-06T16:24:57+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/partscityauto.ca\/wp-content\/uploads\/2025\/12\/Parts-City-Canada.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimation du temps de lecture":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/","url":"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/","name":"Trouver un magasin | Parts City Pi\u00e8ces d&#039;Auto","isPartOf":{"@id":"https:\/\/partscityauto.ca\/fr\/#website"},"datePublished":"2025-12-05T14:51:14+00:00","dateModified":"2026-02-06T16:24:57+00:00","description":"Trouvez Parts City Pi\u00e8ces d'Auto pr\u00e8s de chez vous. Adresses, heures, t\u00e9l\u00e9phone et itin\u00e9raire. Pi\u00e8ces de qualit\u00e9 localement","breadcrumb":{"@id":"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/partscityauto.ca\/fr\/trouver-un-magasin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/partscityauto.ca\/fr\/"},{"@type":"ListItem","position":2,"name":"Trouver un magasin"}]},{"@type":"WebSite","@id":"https:\/\/partscityauto.ca\/fr\/#website","url":"https:\/\/partscityauto.ca\/fr\/","name":"Parts City Pi\u00e8ces d&#039;Auto","description":"Meilleures pi\u00e8ces\u2026 meilleurs prix, tous les jours !","publisher":{"@id":"https:\/\/partscityauto.ca\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/partscityauto.ca\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/partscityauto.ca\/fr\/#organization","name":"Parts City Pi\u00e8ces d&#039;Auto","url":"https:\/\/partscityauto.ca\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/partscityauto.ca\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/partscityauto.ca\/wp-content\/uploads\/2025\/02\/cropped-GDV-Logo_PartsCity_renverse_RGB.png","contentUrl":"https:\/\/partscityauto.ca\/wp-content\/uploads\/2025\/02\/cropped-GDV-Logo_PartsCity_renverse_RGB.png","width":864,"height":247,"caption":"Parts City Pi\u00e8ces d&#039;Auto"},"image":{"@id":"https:\/\/partscityauto.ca\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/pages\/3011","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/comments?post=3011"}],"version-history":[{"count":1,"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/pages\/3011\/revisions"}],"predecessor-version":[{"id":3012,"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/pages\/3011\/revisions\/3012"}],"wp:attachment":[{"href":"https:\/\/partscityauto.ca\/fr\/wp-json\/wp\/v2\/media?parent=3011"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}