{"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\" data-e-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\" data-e-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-e-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\">\r\n    <div class=\"sfroy-hexia-search-container\">\r\n        <input\r\n            id=\"sfroy-hexia-search-input\"\r\n            type=\"text\"\r\n            class=\"sfroy-hexia-search-input\"\r\n            placeholder=\"Enter City or Postal Code\"\r\n            autocomplete=\"off\"\r\n        >\r\n\r\n        <button\r\n            id=\"sfroy-hexia-geolocation-button\"\r\n            type=\"button\"\r\n            title=\"Use my location\"\r\n            aria-label=\"Click to automatically detect your location\"\r\n            class=\"btn-white pr-2 pl-2 h-10 rounded-l-none border-l\"\r\n        >\r\n            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\"\r\n                 fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\r\n                 stroke-linecap=\"round\" stroke-linejoin=\"round\"\r\n                 class=\"feather feather-navigation inline-block w-5 h-5 text-blue mt-1\"\r\n                 viewBox=\"0 0 24 24\" role=\"img\">\r\n                <path d=\"M3 11l19-9-9 19-2-8-8-2z\"><\/path>\r\n            <\/svg>\r\n        <\/button>\r\n    <\/div>\r\n\r\n    <style>\r\n        .sfroy-hexia-search-container {\r\n            display: flex;\r\n            flex-direction: row;\r\n        }\r\n\r\n        #sfroy-hexia-search-input {\r\n            flex-grow: 1;\r\n        }\r\n\r\n        #sfroy-hexia-geolocation-button {\r\n            color: var(--e-global-color-primary);\r\n            border-color: var(--e-global-color-primary);\r\n            display: flex;\r\n            align-items: center;\r\n        }\r\n\r\n        #sfroy-hexia-geolocation-button:hover,\r\n        #sfroy-hexia-geolocation-button:focus {\r\n            color: var(--e-global-color-secondary);\r\n            background-color: var(--e-global-color-primary);\r\n        }\r\n    <\/style>\r\n\r\n    <script type=\"text\/javascript\">\r\n        window.addEventListener('googleMapsInited', function () {\r\n            const searchField = document.getElementById('sfroy-hexia-search-input');\r\n            const geolocateButton = document.getElementById('sfroy-hexia-geolocation-button');\r\n\r\n            if (!searchField) {\r\n                console.warn('Input #sfroy-hexia-search-input introuvable');\r\n                return;\r\n            }\r\n\r\n            if (!window.google || !google.maps || !google.maps.places) {\r\n                console.error('Google Places API non disponible');\r\n                return;\r\n            }\r\n\r\n            const autocomplete = new google.maps.places.Autocomplete(searchField, {\r\n                componentRestrictions: { country: 'ca' },\r\n                fields: ['geometry', 'name', 'formatted_address']\r\n            });\r\n\r\n            autocomplete.addListener('place_changed', function () {\r\n                const place = autocomplete.getPlace();\r\n\r\n                if (!place || !place.geometry) {\r\n                    console.warn('Aucun lieu valide s\u00e9lectionn\u00e9');\r\n                    return;\r\n                }\r\n\r\n                if (place.geometry.viewport) {\r\n                    sfroyHexiaMap.fitBounds(place.geometry.viewport);\r\n                } else {\r\n                    sfroyHexiaMap.setCenter(place.geometry.location);\r\n                    sfroyHexiaMap.setZoom(13);\r\n                }\r\n            });\r\n\r\n            searchField.addEventListener('keydown', function (e) {\r\n                if (e.key !== 'Enter') {\r\n                    return;\r\n                }\r\n\r\n                e.preventDefault();\r\n\r\n                const geocoder = new google.maps.Geocoder();\r\n\r\n                geocoder.geocode({\r\n                    address: searchField.value,\r\n                    componentRestrictions: { country: 'CA' }\r\n                }, function (results, status) {\r\n                    if (status === 'OK' && results[0]) {\r\n                        const result = results[0];\r\n\r\n                        if (result.geometry.viewport) {\r\n                            sfroyHexiaMap.fitBounds(result.geometry.viewport);\r\n                        } else {\r\n                            sfroyHexiaMap.setCenter(result.geometry.location);\r\n                            sfroyHexiaMap.setZoom(13);\r\n                        }\r\n                    } else {\r\n                        console.warn('Geocode failed:', status);\r\n                    }\r\n                });\r\n            });\r\n\r\n            if (navigator.geolocation && geolocateButton) {\r\n                geolocateButton.addEventListener('click', function () {\r\n                    navigator.geolocation.getCurrentPosition(\r\n                        function (position) {\r\n                            sfroyHexiaMap.setCenter({\r\n                                lat: position.coords.latitude,\r\n                                lng: position.coords.longitude\r\n                            });\r\n\r\n                            sfroyHexiaMap.setZoom(13);\r\n                        },\r\n                        function (error) {\r\n                            console.error('Geolocation error:', error);\r\n                        }\r\n                    );\r\n                });\r\n            } else {\r\n                console.log('Geolocation is not supported by this browser.');\r\n            }\r\n        }, { once: true });\r\n\r\n        window.addEventListener('sfroyHexiaFilters', function () {\r\n            let filterInputs = document.querySelectorAll('.sfroy-hexia-map-filters input:checked');\r\n            let searchInput = document.getElementById('map-search');\r\n\r\n            if (!window.sfroyHexiaLocations || !window.sfroyHexiaMap) {\r\n                return;\r\n            }\r\n\r\n            const hasSearch = searchInput && searchInput.value.length > 0;\r\n\r\n            if (filterInputs.length > 0 || hasSearch) {\r\n                sfroyHexiaLocations.forEach(function (mapLocation) {\r\n                    let hasMatch = false;\r\n                    let hasFilter = false;\r\n                    let hasLocationFilter = false;\r\n                    let hasLocation = false;\r\n                    let textMatch = false;\r\n\r\n                    filterInputs.forEach(function (filterInput) {\r\n                        const taxonomy = filterInput.dataset.taxonomy;\r\n                        const term = filterInput.dataset.term;\r\n\r\n                        if (taxonomy === 'entreprise_mrc') {\r\n                            hasLocationFilter = true;\r\n\r\n                            if (mapLocation.marker.content && mapLocation.marker.content.classList.contains(taxonomy + '-' + term)) {\r\n                                hasLocation = true;\r\n                            }\r\n                        } else {\r\n                            hasFilter = true;\r\n\r\n                            if (mapLocation.marker.content && mapLocation.marker.content.classList.contains(taxonomy + '-' + term)) {\r\n                                hasMatch = true;\r\n                            }\r\n                        }\r\n                    });\r\n\r\n                    if (hasSearch) {\r\n                        hasFilter = true;\r\n\r\n                        textMatch = mapLocation.marker.info &&\r\n                            mapLocation.marker.info.content &&\r\n                            mapLocation.marker.info.content.toLowerCase().includes(searchInput.value.toLowerCase());\r\n\r\n                        if (filterInputs.length > 0) {\r\n                            hasMatch = hasMatch && textMatch;\r\n                        } else {\r\n                            hasMatch = textMatch;\r\n                        }\r\n                    }\r\n\r\n                    if ((!hasFilter || hasMatch) && (!hasLocationFilter || hasLocation)) {\r\n                        mapLocation.marker.map = sfroyHexiaMap;\r\n                    } else {\r\n                        mapLocation.marker.map = null;\r\n                    }\r\n                });\r\n            } else {\r\n                sfroyHexiaLocations.forEach(function (mapLocation) {\r\n                    mapLocation.marker.map = sfroyHexiaMap;\r\n                });\r\n            }\r\n        }, false);\r\n    <\/script>\r\n\r\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-e-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=\"#\">Voir d\u00e9tails<\/a><\/div>`;\n\n                    divExtras.className = \"place-extras\";\n\n                    const hours = place.hours.map((item) => {\n                        const displayHours = item.hours && item.hours.trim() === \"-\" \n                        ? \"Ferm\u00e9\" \n                        : item.hours;\n                    \n                        return `<tr>\n                            <td>${item.day}<\/td><td>${displayHours}<\/td>\n                        <\/tr>`;\n                    }).join(\"\");\n                    divExtras.innerHTML = divExtras.innerHTML + `<table class=\"place-hours\">\n                    <tr><th class=\"place-hours-title\" colspan=\"2\">Heures<\/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}\">Voir plus de d\u00e9tails<\/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-e-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\n    <script type=\"text\/javascript\">\n        let sfroyHexiaMap;\n        let sfroyHexiaMapSelectedPin;\n\n        const sfroyHexiaLocations = [\n                            {\n                    id: 7002,\n                    lat: 45.5780035,\n                    lng: -75.4068535,\n                    name: \"Pi\u00e8ces d\\'auto Marc Lefebvre - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"800, rue Dollar\",\n                    city: \"Buckingham\",\n                    province: \"QC\",\n                    postalCode: \"J8L 3H3\",\n                    phone: \"819-243-6181\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-marc-lefebvre-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Pi%C3%A8ces+d\\'auto+Marc+Lefebvre+-+Parts+City+Buckingham\/@45.5780035,-75.4068535,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cce3f27706ef027:0xdcb2e7ecb6ba7533!8m2!3d45.5780035!4d-75.4068535!16s%2Fg%2F11yq9ms3gt?hl=en&amp;entry=ttu&amp;g_ep=EgoyMDI2MDYwMS4wIKXMDSoASAFQAw%3D%3D\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=800%2C+rue+Dollar+%2C%0ABuckingham%2C+QC%2C+J8L+3H3\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 6425,\n                    lat: 45.8274576,\n                    lng: -74.0542894,\n                    name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Pr\u00e9vost\",\n                    address: \"2542, boulevard Cur\u00e9-Labelle\",\n                    city: \"Pr\u00e9vost\",\n                    province: \"QC\",\n                    postalCode: \"J0R 1T0\",\n                    phone: \"450-565-8777\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/parts-city-pieces-dauto-a-prevost\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/L%E2%80%99entrep%C3%B4t+pi%C3%A8ces+d%E2%80%99autos+Pr%C3%A9vost\/@45.8274576,-74.0568643,17z\/data=!3m1!4b1!4m6!3m5!1s0x4ccf2dd1a055b3d5:0x3cf78a0d12dea220!8m2!3d45.8274576!4d-74.0542894!16s%2Fg%2F1tjdqz87?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2542%2C+boulevard+Cur%C3%A9-Labelle+%2C%0APr%C3%A9vost%2C+QC%2C+J0R+1T0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5821,\n                    lat: 45.5696307,\n                    lng: -73.4515996,\n                    name: \"PA Super - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"992 Jean Neveu\",\n                    city: \"Longueuil\",\n                    province: \"QC\",\n                    postalCode: \"J4G 2M1\",\n                    phone: \"\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pa-super-parts-city-pieces-dauto-4\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=16000015961516391151&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=992+Jean+Neveu+%2C%0ALongueuil%2C+QC%2C+J4G+2M1\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5813,\n                    lat: 46.8718917,\n                    lng: -71.1957894,\n                    name: \"Distribution BAMM Beauport - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"600 rue Cambronne\",\n                    city: \"Qu\u00e9bec\",\n                    province: \"QC\",\n                    postalCode: \"G1E 6X1\",\n                    phone: \"418-667-4111\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/distribution-bamm-beauport-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Pi%C3%A8ces+d\\'Auto+%C3%89conomiques+Inc\/@46.8719167,-71.1971205,19.5z\/data=!4m6!3m5!1s0x4cb8bc494153785f:0x489e67e9996fb0c4!8m2!3d46.8718917!4d-71.1957894!16s%2Fg%2F1tfvgts5?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=600+rue+Cambronne+%2C%0AQu%C3%A9bec%2C+QC%2C+G1E+6X1\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5808,\n                    lat: 46.3668342,\n                    lng: -72.5327332,\n                    name: \"Pi\u00e8ces d\\'autos Jean Leblanc Lt\u00e9e - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"315 Rue Vachon\",\n                    city: \"Cap-de-la-Madeleine\",\n                    province: \"QC\",\n                    postalCode: \"G8T 8P6\",\n                    phone: \"819-374-2448\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dautos-jean-leblanc-ltee-parts-city-pieces-dauto-3\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Pi%C3%A8ces+d\\'autos+Jean+Leblanc\/@46.3734213,-72.5544245,16z\/data=!3m1!4b1!4m6!3m5!1s0x4cc7c85874130215:0x8339357cd813584a!8m2!3d46.3734213!4d-72.5518496!16s%2Fg%2F12j4_pwy3?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=315+Rue+Vachon+%2C%0ACap-de-la-Madeleine%2C+QC%2C+G8T+8P6\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5791,\n                    lat: 45.8955037,\n                    lng: -72.5200289,\n                    name: \"Gestion MBAD inc. F.A.S. Distribution BAMM - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"101-1025, Boul. Rene-Levesque\",\n                    city: \"Drummondville\",\n                    province: \"QC\",\n                    postalCode: \"J2V 7V4\",\n                    phone: \"418-930-3707\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/gestion-mbad-inc-f-a-s-distribution-bamm-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"#\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=101-1025%2C+Boul.+Rene-Levesque+%2C%0ADrummondville%2C+QC%2C+J2V+7V4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"00:00 - 00:00\"},{\"day\":\"Samedi\",\"hours\":\"00:00 - 00:00\"},{\"day\":\"Dimanche\",\"hours\":\"00:00 - 00:00\"},{\"day\":\"Lundi\",\"hours\":\"00:00 - 00:00\"},{\"day\":\"Mardi\",\"hours\":\"00:00 - 00:00\"},{\"day\":\"Mercredi\",\"hours\":\"00:00 - 00:00\"},{\"day\":\"Jeudi\",\"hours\":\"00:00 - 00:00\"}],\n                    services: []                },\n                                {\n                    id: 5785,\n                    lat: 46.1298583,\n                    lng: -70.6901719,\n                    name: \"Distribution BAMM St-Georges - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"9402 boul. Lacroix\",\n                    city: \"St-Georges\",\n                    province: \"QC\",\n                    postalCode: \"G5Y 5P4\",\n                    phone: \"581-825-3100\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/distribution-bamm-st-georges-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=5935186682400690495&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=9402+boul.+Lacroix+%2C%0ASt-Georges%2C+QC%2C+G5Y+5P4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5783,\n                    lat: 46.8005763,\n                    lng: -71.2553597,\n                    name: \"Distribution BAMM Inc - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"1240 Boul. Charest Ouest\",\n                    city: \"Qu\u00e9bec\",\n                    province: \"QC\",\n                    postalCode: \"G1N 2E3\",\n                    phone: \"418-767-2333\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/distribution-bamm-inc-parts-city-pieces-dauto-3\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/BAMM+distribution\/@46.8005763,-71.2579346,17z\/data=!3m1!4b1!4m6!3m5!1s0x4cb896f4f2ffffff:0xd8c8945feda88e6a!8m2!3d46.8005763!4d-71.2553597!16s%2Fg%2F11vwl7ghf3?entry=ttu&amp;g_ep=EgoyMDI1MTIwOS4wIKXMDSoASAFQAw%3D%3D\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1240+Boul.+Charest+Ouest+%2C%0AQu%C3%A9bec%2C+QC%2C+G1N+2E3\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5700,\n                    lat: 43.1326886,\n                    lng: -80.7370756,\n                    name: \"Wismer\\'s Auto Parts - Parts City Auto Parts\",\n                    address: \"888 Dundas Street\",\n                    city: \"Woodstock\",\n                    province: \"On\",\n                    postalCode: \"N4S 1G7\",\n                    phone: \"519-421-1422\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/wismers-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=1404957640673499044&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=888+Dundas+Street+%2C%0AWoodstock%2C+On%2C+N4S+1G7\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 16:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: [\"Test d\\u2019alternateur et de d\\u00e9marreur\",\"Test de batterie\"]                },\n                                {\n                    id: 5698,\n                    lat: 44.1749838,\n                    lng: -80.8183576,\n                    name: \"West Grey Auto Parts LTD - Parts City Auto Parts\",\n                    address: \"168, Garrafaxa Street S, Flr 1519 P.O. BOX 443\",\n                    city: \"Durham\",\n                    province: \"ON\",\n                    postalCode: \"N0G 1R0\",\n                    phone: \"519-369-3330\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/west-grey-auto-parts-ltd-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=3447852795474966052&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=168%2C+Garrafaxa+Street+S%2C+Flr+1519+P.O.+BOX+443+%2C%0ADurham%2C+ON%2C+N0G+1R0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:30\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5696,\n                    lat: 43.71219,\n                    lng: -79.68039,\n                    name: \"Robins Auto Parts - Parts City Auto Parts\",\n                    address: \"28 Melanie Drive, UNIT 9\",\n                    city: \"Brampton\",\n                    province: \"ON\",\n                    postalCode: \"L6T 4H4\",\n                    phone: \"905-792-8822\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/robins-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=1067242879642627884&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=28+Melanie+Drive%2C+UNIT+9+%2C%0ABrampton%2C+ON%2C+L6T+4H4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 16:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"09:00 - 18:00\"}],\n                    services: []                },\n                                {\n                    id: 5694,\n                    lat: 44.9593326,\n                    lng: -63.5168798,\n                    name: \"Quality Auto Parts Elmsdale - Parts City Auto Parts\",\n                    address: \"4-589 NS Trunk 2\",\n                    city: \"Elmsdale\",\n                    province: \"NS\",\n                    postalCode: \"B2S 1A4\",\n                    phone: \"902-883-7859\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/quality-auto-parts-elmsdale-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=10021102213498140483&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=4-589+NS+Trunk+2+%2C%0AElmsdale%2C+NS%2C+B2S+1A4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5692,\n                    lat: 45.7228834,\n                    lng: -73.4835713,\n                    name: \"Pi\u00e8ces d\\'auto S.M. inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"237, rue Notre-Dame\",\n                    city: \"Charlemagne\",\n                    province: \"QC\",\n                    postalCode: \"J5Z 1H7\",\n                    phone: \"450-581-2178\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-s-m-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=9939389814673053450&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=237%2C+rue+Notre-Dame+%2C%0ACharlemagne%2C+QC%2C+J5Z+1H7\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5690,\n                    lat: 46.32867359999999,\n                    lng: -72.5592889,\n                    name: \"Pi\u00e8ces d\\'autos Jean Leblanc Lt\u00e9e - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"3780, boul. Gene-H.- Kruger\",\n                    city: \"Trois-Rivi\u00e8res\",\n                    province: \"QC\",\n                    postalCode: \"G9A 4M3\",\n                    phone: \"819-370-1212\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dautos-jean-leblanc-ltee-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=16578095422963166613&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=3780%2C+boul.+Gene-H.-+Kruger+%2C%0ATrois-Rivi%C3%A8res%2C+QC%2C+G9A+4M3\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5688,\n                    lat: 48.463644,\n                    lng: -68.505533,\n                    name: \"Pi\u00e8ces d\\'autos \u00c9conomiques - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"192 Mont\u00e9e industrielle et commerciale\",\n                    city: \"Rimouski\",\n                    province: \"QC\",\n                    postalCode: \"G5M 1A7\",\n                    phone: \"418-930-3707\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dautos-economiques-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=4196892537675542004&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=192+Mont%C3%A9e+industrielle+et+commerciale+%2C%0ARimouski%2C+QC%2C+G5M+1A7\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5686,\n                    lat: 45.3799331,\n                    lng: -73.5502118,\n                    name: \"Pi\u00e8ces d\\'auto Rive-Sud - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"59, boul. Georges-Gagn\u00e9\",\n                    city: \"Delson\",\n                    province: \"QC\",\n                    postalCode: \"J5B 2E5\",\n                    phone: \"450-638-9838\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-rive-sud-parts-city-pieces-dauto-3\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=17477913473142067188&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=59%2C+boul.+Georges-Gagn%C3%A9+%2C%0ADelson%2C+QC%2C+J5B+2E5\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5684,\n                    lat: 45.44554,\n                    lng: -73.4702116,\n                    name: \"Pi\u00e8ces d\\'auto Rive-Sud - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"8275, Taschereau\",\n                    city: \"Brossard\",\n                    province: \"QC\",\n                    postalCode: \"J4Y 1A4\",\n                    phone: \"450-676-2715\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-rive-sud-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=4196892537675542004&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=8275%2C+Taschereau+%2C%0ABrossard%2C+QC%2C+J4Y+1A4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5682,\n                    lat: 48.3970864,\n                    lng: -64.48688469999999,\n                    name: \"Pi\u00e8ces d\\'auto No\u00ebl Beaudry - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"189, Grande All\u00e9e Est\",\n                    city: \"Grande-Rivi\u00e8re\",\n                    province: \"QC\",\n                    postalCode: \"G0C 1V0\",\n                    phone: \"418-385-2264\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-noel-beaudry-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=4101612892523490646&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=189%2C+Grande+All%C3%A9e+Est+%2C%0AGrande-Rivi%C3%A8re%2C+QC%2C+G0C+1V0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5680,\n                    lat: 45.49754799999999,\n                    lng: -75.70349089999999,\n                    name: \"Pi\u00e8ces d\\'auto Marc Lefebvre - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"775 Boul. Gr\u00e9ber\",\n                    city: \"Gatineau\",\n                    province: \"QC\",\n                    postalCode: \"J8V 3P8\",\n                    phone: \"819-243-6181\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-marc-lefebvre-parts-city-pieces-dauto-2-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=16138804963606881123&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=775+Boul.+Gr%C3%A9ber+%2C%0AGatineau%2C+QC%2C+J8V+3P8\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5678,\n                    lat: 45.572266,\n                    lng: -73.53614999999999,\n                    name: \"Pi\u00e8ces d\\'auto Landry inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"5912, Hochelaga\",\n                    city: \"Montr\u00e9al\",\n                    province: \"QC\",\n                    postalCode: \"H1N 1X1\",\n                    phone: \"514-259-2565\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-landry-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=7087338422364473114&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=5912%2C+Hochelaga+%2C%0AMontr%C3%A9al%2C+QC%2C+H1N+1X1\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5676,\n                    lat: 45.46829229999999,\n                    lng: -73.58130009999999,\n                    name: \"Pi\u00e8ces d\\'auto Lacbus - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"2228 rue Pitt local 2222\",\n                    city: \"Montr\u00e9al\",\n                    province: \"QC\",\n                    postalCode: \"H4E 4H1\",\n                    phone: \"514-767-8399\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-lacbus-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2228+rue+Pitt+local+2222+%2C%0AMontr%C3%A9al%2C+QC%2C+H4E+4H1\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5673,\n                    lat: 45.2706606,\n                    lng: -74.0965866,\n                    name: \"Pi\u00e8ces d\\'auto J.L. Lt\u00e9e - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"2225, boul. H\u00e9bert\",\n                    city: \"Valleyfield\",\n                    province: \"QC\",\n                    postalCode: \"J6S 2R1\",\n                    phone: \"450-373-1375\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-j-l-ltee-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=10521050417783144570&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2225%2C+boul.+H%C3%A9bert+%2C%0AValleyfield%2C+QC%2C+J6S+2R1\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:15 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"07:15 - 17:30\"},{\"day\":\"Mardi\",\"hours\":\"07:15 - 17:30\"},{\"day\":\"Mercredi\",\"hours\":\"07:15 - 17:30\"},{\"day\":\"Jeudi\",\"hours\":\"07:15 - 17:30\"}],\n                    services: []                },\n                                {\n                    id: 5671,\n                    lat: 45.3870795,\n                    lng: -71.9170187,\n                    name: \"Pi\u00e8ces d\u2019auto D.R. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"1715, Galt Ouest\",\n                    city: \"Sherbrooke\",\n                    province: \"QC\",\n                    postalCode: \"J1K 1J2\",\n                    phone: \"819-565-8868\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-d-r-parts-city-pieces-dauto-3\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=6599743219633326326&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1715%2C+Galt+Ouest+%2C%0ASherbrooke%2C+QC%2C+J1K+1J2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5669,\n                    lat: 45.2874697,\n                    lng: -72.1168404,\n                    name: \"Pi\u00e8ces d\u2019auto D.R. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"2509, rue Sherbrooke\",\n                    city: \"Magog\",\n                    province: \"QC\",\n                    postalCode: \"J1X 4E7\",\n                    phone: \"819-843-0550\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-d-r-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=7362199454834924294&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2509%2C+rue+Sherbrooke+%2C%0AMagog%2C+QC%2C+J1X+4E7\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5667,\n                    lat: 45.6489267,\n                    lng: -74.3303274,\n                    name: \"Pi\u00e8ces d\\'auto Argenteuil Inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"300, rue B\u00e9thanie\",\n                    city: \"Lachute\",\n                    province: \"QC\",\n                    postalCode: \"J8H 2N2\",\n                    phone: \"450-562-2485\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-argenteuil-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=16933880800384784233&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=300%2C+rue+B%C3%A9thanie+%2C%0ALachute%2C+QC%2C+J8H+2N2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5665,\n                    lat: 46.9772871,\n                    lng: -70.5766052,\n                    name: \"Pi\u00e8ces Auto A.M.I - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"151 boul. Tach\u00e9 Ouest\",\n                    city: \"Montmagny\",\n                    province: \"QC\",\n                    postalCode: \"G5V 3A6\",\n                    phone: \"418-248-7112\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-auto-a-m-i-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=8126947091869382093&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=151+boul.+Tach%C3%A9+Ouest+%2C%0AMontmagny%2C+QC%2C+G5V+3A6\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5663,\n                    lat: 45.58256009999999,\n                    lng: -73.7555769,\n                    name: \"Perry auto Laval - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"2110, Rue Monterey\",\n                    city: \"Laval\",\n                    province: \"QC\",\n                    postalCode: \"H7L 3S3\",\n                    phone: \"450-662-6927\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/perry-auto-laval-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=5312000900439337853&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2110%2C+Rue+Monterey+%2C%0ALaval%2C+QC%2C+H7L+3S3\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"09:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"09:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"09:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"09:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"09:00 - 12:00<br>13:00 - 17:00\"}],\n                    services: []                },\n                                {\n                    id: 5661,\n                    lat: 43.7261709,\n                    lng: -79.2841146,\n                    name: \"Penn Auto Parts Ltd. - Parts City Auto Parts\",\n                    address: \"128, Manville Road, # 4A\",\n                    city: \"Toronto\",\n                    province: \"ON\",\n                    postalCode: \"M1L 4J5\",\n                    phone: \"416-751-2727\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/penn-auto-parts-ltd-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=8574824962379966792&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=128%2C+Manville+Road%2C+%23+4A+%2C%0AToronto%2C+ON%2C+M1L+4J5\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 14:00\"},{\"day\":\"Dimanche\",\"hours\":\"09:00 - 14:00\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5659,\n                    lat: 44.494106,\n                    lng: -77.47053780000002,\n                    name: \"Patterson Auto Parts - Parts City Auto Parts\",\n                    address: \"13649, Hwy 62 - RR5\",\n                    city: \"Madoc\",\n                    province: \"ON\",\n                    postalCode: \"K0K 2K0\",\n                    phone: \"613-473-4000\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/patterson-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=10337297362125783456&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=13649%2C+Hwy+62+-+RR5+%2C%0AMadoc%2C+ON%2C+K0K+2K0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:30 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5657,\n                    lat: 45.3503091,\n                    lng: -73.6890457,\n                    name: \"PA Super - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"225 Boul. Industriel\",\n                    city: \"Ch\u00e2teauguay\",\n                    province: \"QC\",\n                    postalCode: \"J6J 4Z2\",\n                    phone: \"450-676-1850\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pa-super-parts-city-pieces-dauto-4-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=11488848833569099007&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=225+Boul.+Industriel+%2C%0ACh%C3%A2teauguay%2C+QC%2C+J6J+4Z2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5655,\n                    lat: 45.3303782,\n                    lng: -73.29490609999999,\n                    name: \"PA Super - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"849 rue Pierre Caisse\",\n                    city: \"St-Jean sur Richelieu\",\n                    province: \"QC\",\n                    postalCode: \"J3B 8C6\",\n                    phone: \"450-676-1850\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pa-super-parts-city-pieces-dauto-3\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=13361721532204707320&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=849+rue+Pierre+Caisse+%2C%0ASt-Jean+sur+Richelieu%2C+QC%2C+J3B+8C6\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5653,\n                    lat: 45.4875151,\n                    lng: -73.3844761,\n                    name: \"PA Super - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"7803 chemin Chambly\",\n                    city: \"St-Hubert\",\n                    province: \"QC\",\n                    postalCode: \"J3Y 5K2\",\n                    phone: \"450-676-1850\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pa-super-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=12242843561479122797&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=7803+chemin+Chambly+%2C%0ASt-Hubert%2C+QC%2C+J3Y+5K2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5651,\n                    lat: 43.6962211,\n                    lng: -79.7405133,\n                    name: \"National Exhaust Systems Inc. - Parts City Auto Parts\",\n                    address: \"38 HANSEN ROAD S.\",\n                    city: \"Brampton\",\n                    province: \"ON\",\n                    postalCode: \"L6W 3H4\",\n                    phone: \"\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/national-exhaust-systems-inc-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=9366394679960902616&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=38+HANSEN+ROAD+S.+%2C%0ABrampton%2C+ON%2C+L6W+3H4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 05:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 14:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"08:00 - 05:30\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 05:30\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 05:30\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 05:30\"}],\n                    services: []                },\n                                {\n                    id: 5649,\n                    lat: 43.836163,\n                    lng: -79.07035590000001,\n                    name: \"MY Auto Parts - Parts City Auto Parts\",\n                    address: \"1080 Brock Road, Unit #10\",\n                    city: \"Pickering\",\n                    province: \"ON\",\n                    postalCode: \"L1W 3H3\",\n                    phone: \"905-492-6262\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/my-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=6259758039830906632&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1080+Brock+Road%2C+Unit+%2310+%2C%0APickering%2C+ON%2C+L1W+3H3\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 16:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"09:00 - 18:00\"}],\n                    services: []                },\n                                {\n                    id: 5647,\n                    lat: 43.7766148,\n                    lng: -79.2360824,\n                    name: \"Motorama Auto Parts - Parts City Auto Parts\",\n                    address: \"2020 Ellesmere Rd, Unit 13\",\n                    city: \"Scarborough\",\n                    province: \"On\",\n                    postalCode: \"M1H 2Z8\",\n                    phone: \"647-350-8989\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/motorama-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=8827627651152157873&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=2020+Ellesmere+Rd%2C+Unit+13+%2C%0AScarborough%2C+On%2C+M1H+2Z8\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5645,\n                    lat: 42.9201507,\n                    lng: -81.2625656,\n                    name: \"London Auto Parts - Parts City Auto Parts\",\n                    address: \"173 Exeter Rd, Unit A\",\n                    city: \"London\",\n                    province: \"ON\",\n                    postalCode: \"N6L 1A4\",\n                    phone: \"519-652-9534\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/london-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=18414110089810629186&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=173+Exeter+Rd%2C+Unit+A+%2C%0ALondon%2C+ON%2C+N6L+1A4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5643,\n                    lat: 42.9893543,\n                    lng: -81.1662529,\n                    name: \"London Auto Parts East - Parts City Auto Parts\",\n                    address: \"126 Clarke Road\",\n                    city: \"London\",\n                    province: \"ON\",\n                    postalCode: \"N5W 5E1\",\n                    phone: \"548-690-9080\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/london-auto-parts-east-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=6568775670728484045&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=126+Clarke+Road+%2C%0ALondon%2C+ON%2C+N5W+5E1\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5641,\n                    lat: 43.4253452,\n                    lng: -80.47361579999999,\n                    name: \"Heimpels Auto Parts Inc - Parts City Auto Parts\",\n                    address: \"38 Hanson Ave\",\n                    city: \"Kitchener\",\n                    province: \"ON\",\n                    postalCode: \"N2C 2E2\",\n                    phone: \"519-743-1426\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/heimpels-auto-parts-inc-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=11568038583044971969&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=38+Hanson+Ave+%2C%0AKitchener%2C+ON%2C+N2C+2E2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5639,\n                    lat: 46.0952765,\n                    lng: -64.7486638,\n                    name: \"Greater Moncton Auto Value du Grand Moncton - Parts City Auto Parts\",\n                    address: \"47 Industrial St.\",\n                    city: \"Dieppe\",\n                    province: \"NB\",\n                    postalCode: \"E1A 2B9\",\n                    phone: \"506-854-4280\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/greater-moncton-auto-value-du-grand-moncton-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=12715927621419794420&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=47+Industrial+St.+%2C%0ADieppe%2C+NB%2C+E1A+2B9\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5637,\n                    lat: 45.9760948,\n                    lng: -64.565051,\n                    name: \"Gallant Parts &amp; Tools - Parts City Auto Parts\",\n                    address: \"551 Rue Centrale\",\n                    city: \"Memramcook\",\n                    province: \"NB\",\n                    postalCode: \"E4K 3R4\",\n                    phone: \"506-334-2000\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/gallant-parts-tools-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=5406637585441948999&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=551+Rue+Centrale+%2C%0AMemramcook%2C+NB%2C+E4K+3R4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"12:00 - 15:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5635,\n                    lat: 46.5941491,\n                    lng: -72.707375,\n                    name: \"G.A. Automobile Inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"9682, Des H\u00eatres\",\n                    city: \"Shawinigan\",\n                    province: \"QC\",\n                    postalCode: \"G9N 4Y3\",\n                    phone: \"819-539-6471\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/g-a-automobile-inc-parts-city-pieces-dauto-3\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=9012379361654369932&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=9682%2C+Des+H%C3%AAtres+%2C%0AShawinigan%2C+QC%2C+G9N+4Y3\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"08:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Mardi\",\"hours\":\"08:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Mercredi\",\"hours\":\"08:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Jeudi\",\"hours\":\"08:00 - 12:00<br>13:00 - 17:00\"}],\n                    services: []                },\n                                {\n                    id: 5633,\n                    lat: 46.7375358,\n                    lng: -72.5622657,\n                    name: \"G.A. Automobile Inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"885, route 153\",\n                    city: \"St-Tite\",\n                    province: \"QC\",\n                    postalCode: \"G0X 3H0\",\n                    phone: \"418-365-7575\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/g-a-automobile-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=6680205731470968198&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=885%2C+route+153+%2C%0ASt-Tite%2C+QC%2C+G0X+3H0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5631,\n                    lat: 48.6507045,\n                    lng: -53.10725679999999,\n                    name: \"First Stop Auto Ltd. - Parts City Auto Parts\",\n                    address: \"18 Station Road\",\n                    city: \"Bonavista\",\n                    province: \"NL\",\n                    postalCode: \"A0C 1B0\",\n                    phone: \"709-476-3031\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/first-stop-auto-ltd-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=10733754174345147687&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=18+Station+Road+%2C%0ABonavista%2C+NL%2C+A0C+1B0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5629,\n                    lat: 45.5922962,\n                    lng: -73.7477889,\n                    name: \"Entrep\u00f4ts Lama inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"1244 Bergar\",\n                    city: \"Laval\",\n                    province: \"QC\",\n                    postalCode: \"H7L 5A2\",\n                    phone: \"450-682-7789\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/entrepots-lama-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=16699877950768319646&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1244+Bergar+%2C%0ALaval%2C+QC%2C+H7L+5A2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5627,\n                    lat: 45.2687025,\n                    lng: -75.30719959999999,\n                    name: \"Embrun - Parts City - Parts City Auto Parts\",\n                    address: \"140 Bay Street\",\n                    city: \"Embrun\",\n                    province: \"ON\",\n                    postalCode: \"K0A 1W0\",\n                    phone: \"613 443-1500\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/embrun-parts-city-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=17554116895541624521&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=140+Bay+Street+%2C%0AEmbrun%2C+ON%2C+K0A+1W0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5625,\n                    lat: 48.56592430000001,\n                    lng: -67.6756071,\n                    name: \"Duguay Mecanique Generale - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"56 Route 132 Est\",\n                    city: \"Sayabec\",\n                    province: \"QC\",\n                    postalCode: \"G0J 3K0\",\n                    phone: \"418-536-3515\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/duguay-mecanique-generale-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=11218207033677969139&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=56+Route+132+Est+%2C%0ASayabec%2C+QC%2C+G0J+3K0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5623,\n                    lat: 47.8004422,\n                    lng: -69.4710596,\n                    name: \"Distributeur BSL Automotive - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"609 Chemin  Rivi\u00e8re Verte\",\n                    city: \"St-Antonin\",\n                    province: \"QC\",\n                    postalCode: \"G0L 2J0\",\n                    phone: \"418-862-8292\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/distribution-bamm-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Distributeur+BSL+Parts+City+Pi%C3%A8ces+d\\'auto\/@47.800224,-69.4760602,17z\/data=!4m7!3m6!1s0x4cbe409652ffffdf:0x766fee7c3dfa32e2!8m2!3d47.800224!4d-69.4712966!15sCipEaXN0cmlidXRldXIgQlNMIFBhcnRzIENpdHkgUGnDqGNlcyBkJ2F1dG-SARFhdXRvX3BhcnRzX21hcmtldOABAA!16s%2Fg%2F11f29y16rk?entry=tts&amp;g_ep=EgoyMDI1MTIwOS4wIPu8ASoASAFQAw%3D%3D&amp;skid=8f77a1d6-7478-44ed-beec-e807b19432d6\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=609+Chemin++Rivi%C3%A8re+Verte+%2C%0ASt-Antonin%2C+QC%2C+G0L+2J0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5621,\n                    lat: 46.7866233,\n                    lng: -71.1891967,\n                    name: \"Distribution 20-100 - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"4727, Boulevard Guillaume-Couture\",\n                    city: \"L\u00e9vis\",\n                    province: \"QC\",\n                    postalCode: \"G6W 1H5\",\n                    phone: \"418-569-6043\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/distribution-20-100-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=15895833968523078025&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=4727%2C+Boulevard+Guillaume-Couture+%2C%0AL%C3%A9vis%2C+QC%2C+G6W+1H5\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5619,\n                    lat: 45.2179073,\n                    lng: -75.1529196,\n                    name: \"Crysler Auto Parts - Parts City Auto Parts\",\n                    address: \"11, Queen St\",\n                    city: \"Crysler\",\n                    province: \"ON\",\n                    postalCode: \"K0A 1R0\",\n                    phone: \"613-987-2272\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/crysler-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=13565496713692453006&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=11%2C+Queen+St+%2C%0ACrysler%2C+ON%2C+K0A+1R0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 16:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5617,\n                    lat: 46.7312847,\n                    lng: -71.2093277,\n                    name: \"Centre de l\\'auto St-Jean - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"1008 rue Parc Industriel\",\n                    city: \"St-Jean Chrysostome\",\n                    province: \"QC\",\n                    postalCode: \"G6Z 1C6\",\n                    phone: \"418-839-8555\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/centre-de-lauto-st-jean-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=9133646173545012901&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=1008+rue+Parc+Industriel+%2C%0ASt-Jean+Chrysostome%2C+QC%2C+G6Z+1C6\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5615,\n                    lat: 46.62661869999999,\n                    lng: -70.9629922,\n                    name: \"Centre De L\\'Auto St-Anselme - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"891, Rte B\u00e9gin\",\n                    city: \"Saint-Anselme\",\n                    province: \"QC\",\n                    postalCode: \"G0R 2N0\",\n                    phone: \"418-885-4031\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/centre-de-lauto-st-anselme-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=7629092578044764251&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=891%2C+Rte+B%C3%A9gin+%2C%0ASaint-Anselme%2C+QC%2C+G0R+2N0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5613,\n                    lat: 45.8571065,\n                    lng: -72.465084,\n                    name: \"Centre de l\\'auto J. Nolin inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"3675, Rue Georges-Couture\",\n                    city: \"Drummondville\",\n                    province: \"QC\",\n                    postalCode: \"J2B 1S9\",\n                    phone: \"819-478-1439\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/centre-de-lauto-j-nolin-inc-parts-city-pieces-dauto-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=13556372661897466779&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=3675%2C+Rue+Georges-Couture+%2C%0ADrummondville%2C+QC%2C+J2B+1S9\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5611,\n                    lat: 43.0919248,\n                    lng: -79.9565384,\n                    name: \"Caledonia Auto Supply Inc. - Parts City Auto Parts\",\n                    address: \"123 Greens RD\",\n                    city: \"Caledonia\",\n                    province: \"ON\",\n                    postalCode: \"N3W 1H8\",\n                    phone: \"905-765-5880\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/caledonia-auto-supply-inc-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=11744104579100095645&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=123+Greens+RD+%2C%0ACaledonia%2C+ON%2C+N3W+1H8\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5609,\n                    lat: 43.811582,\n                    lng: -79.3333014,\n                    name: \"Bestway - Parts City Auto Parts\",\n                    address: \"5 Glendinning Avenue, Unit #5\",\n                    city: \"Scarborough\",\n                    province: \"ON\",\n                    postalCode: \"M1W 3E2\",\n                    phone: \"416-499-2378\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/bestway-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=5+Glendinning+Avenue%2C+Unit+%235+%2C%0AScarborough%2C+ON%2C+M1W+3E2\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 15:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Lundi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Mardi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Mercredi\",\"hours\":\"09:00 - 18:00\"},{\"day\":\"Jeudi\",\"hours\":\"09:00 - 18:00\"}],\n                    services: []                },\n                                {\n                    id: 5607,\n                    lat: 49.1881546,\n                    lng: -57.42875479999999,\n                    name: \"Auto Value Parts WNL INC - Parts City Auto Parts\",\n                    address: \"5 Trans Canada Highway\",\n                    city: \"Deer Lake\",\n                    province: \"NL\",\n                    postalCode: \"A8A 1A9\",\n                    phone: \"709-635-2637\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/auto-value-parts-wnl-inc-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=3440615949444037171&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=5+Trans+Canada+Highway+%2C%0ADeer+Lake%2C+NL%2C+A8A+1A9\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5605,\n                    lat: 45.2899225,\n                    lng: -66.0447035,\n                    name: \"Auto Solution Saint John - Parts City Auto Parts\",\n                    address: \"195 Rothesay Ave\",\n                    city: \"Saint John\",\n                    province: \"NB\",\n                    postalCode: \"E2J 2B4\",\n                    phone: \"506-634-3083\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/auto-solution-saint-john-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=1375715476657207622&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=195+Rothesay+Ave+%2C%0ASaint+John%2C+NB%2C+E2J+2B4\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5603,\n                    lat: 46.07654309999999,\n                    lng: -64.803851,\n                    name: \"Atlantic Auto Parts Resource Inc - Parts City Auto Parts\",\n                    address: \"15 Mount Royal Blvd\",\n                    city: \"Moncton\",\n                    province: \"NB\",\n                    postalCode: \"E1E 2T9\",\n                    phone: \"506-388-1707\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/atlantic-auto-parts-resource-inc-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=2398607975766951965&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=15+Mount+Royal+Blvd+%2C%0AMoncton%2C+NB%2C+E1E+2T9\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:30\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5601,\n                    lat: 44.0729548,\n                    lng: -79.43044119999999,\n                    name: \"Ace Auto Parts Distributors - Parts City Auto Parts\",\n                    address: \"210 Pony Drive, Unit 5\",\n                    city: \"Newmarket\",\n                    province: \"ON\",\n                    postalCode: \"L3Y 7B6\",\n                    phone: \"905-235-5788\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/ace-auto-parts-distributors-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/www.google.com\/maps\/place\/Ace+Auto+Parts+Distributors+Inc.\/@44.0729149,-79.4329472,17z\/data=!3m2!4b1!5s0x882acd9ed1ce8c33:0x1eb32c35881df855!4m6!3m5!1s0x882acd9f16597f3b:0xdaf2d11d6e0602aa!8m2!3d44.0729149!4d-79.4303723!16s%2Fg%2F11d_2b5hmc?entry=ttu&amp;g_ep=EgoyMDI2MDQxNC4wIKXMDSoASAFQAw%3D%3D\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=210+Pony+Drive%2C+Unit+5+%2C%0ANewmarket%2C+ON%2C+L3Y+7B6\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"09:00 - 14:00\"},{\"day\":\"Dimanche\",\"hours\":\"09:00 - 14:00\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5599,\n                    lat: 47.4492967,\n                    lng: -79.6328867,\n                    name: \"#1 Auto Parts - Parts City Auto Parts\",\n                    address: \"P.O. Box 1170, 485 Ferguson Ave.\",\n                    city: \"Haileybury\",\n                    province: \"ON\",\n                    postalCode: \"P0J 1K0\",\n                    phone: \"705-672-2300\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/1-auto-parts-parts-city-auto-parts-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=2172572654291196543&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=P.O.+Box+1170%2C+485+Ferguson+Ave.+%2C%0AHaileybury%2C+ON%2C+P0J+1K0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5591,\n                    lat: 45.57400579999999,\n                    lng: -73.6862283,\n                    name: \"Pi\u00e8ces d\\'auto Lacasse inc. - Parts City Pi\u00e8ces d\\'Auto\",\n                    address: \"150, boul. De la Concorde\",\n                    city: \"Pont-Viau\",\n                    province: \"QC\",\n                    postalCode: \"H7G 2C5\",\n                    phone: \"450-667-7120\",\n                    url: \"https:\/\/partscityauto.ca\/fr\/location\/pieces-dauto-lacasse-inc-2\/\",\n                    googleMapUrl: \"https:\/\/maps.google.com\/?cid=16661951467609785203&amp;g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYBCAA\",\n                    directionsUrl: \"https:\/\/www.google.com\/maps\/dir\/?api=1&amp;destination=150%2C+boul.+De+la+Concorde+%2C%0APont-Viau%2C+QC%2C+H7G+2C5\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 13:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\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\/parts-city-pieces-dauto-in-boisbriand\/\",\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\":\"Vendredi\",\"hours\":\"07:30 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"Ferm\\u00e9\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 5250,\n                    lat: 44.7129085,\n                    lng: -63.60485360000001,\n                    name: \"Parts City Auto Parts \u00e0 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\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"},{\"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\"}],\n                    services: []                },\n                                {\n                    id: 4544,\n                    lat: 46.02906429999999,\n                    lng: -73.4398307,\n                    name: \"Parts City Pi\u00e8ces d\\'Auto \u00e0 Joliette\",\n                    address: \"261 Rue 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+Rue+Baby+%2C%0AJoliette%2C+QC%2C+J6E+2V6\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00<br>13:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"07:30 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: [\"Pneus\",\"Test d\\u2019alternateur et de d\\u00e9marreur\",\"Test de batterie\"]                },\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 12:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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 Commercial St\",\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+Commercial+St+%2C%0AKensington%2C+PEI%2C+C0B+1M0\",\n                    hours: [{\"day\":\"Vendredi\",\"hours\":\"08:00 - 17:30\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"07:30 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"07:30 - 20:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"10:00 - 16:00\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\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\":\"Vendredi\",\"hours\":\"08:00 - 18:00\"},{\"day\":\"Samedi\",\"hours\":\"08:00 - 17:00\"},{\"day\":\"Dimanche\",\"hours\":\"Ferm\\u00e9\"},{\"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\"}],\n                    services: []                },\n                        ];\n\n        window.siteInitMap = async function () {\n            if (!window.google || !google.maps) {\n                console.error('Google Maps non charg\u00e9.');\n                return;\n            }\n\n            if (google.maps.importLibrary) {\n                try {\n                    await google.maps.importLibrary(\"marker\");\n                    await google.maps.importLibrary(\"geometry\");\n                } catch (error) {\n                    console.warn('importLibrary disponible mais erreur au chargement:', error);\n                }\n            }\n\n            const mapElement = document.getElementById(\"sfroy-hexia-map\");\n\n            if (!mapElement) {\n                console.error('Map container introuvable: #sfroy-hexia-map');\n                return;\n            }\n\n            sfroyHexiaMap = new google.maps.Map(mapElement, {\n                mapId: 'd91b1f624d5cfb0630c0548e',\n                zoom: 11,\n                center: {lat: 45.53528926383944, lng: -73.58843289633663},\n            });\n\n            const advancedMarkersAvailable =\n                google.maps.marker &&\n                google.maps.marker.PinElement &&\n                google.maps.marker.AdvancedMarkerElement;\n\n            sfroyHexiaLocations.map((location, i) => {\n                let marker;\n                let pin;\n                let selectedPin;\n\n                if (advancedMarkersAvailable) {\n                    pin = new google.maps.marker.PinElement({\n                        background: '#CD2030',\n                        glyphColor: '#eeeeee',\n                        borderColor: '#CD2030',\n                    });\n\n                    selectedPin = new google.maps.marker.PinElement({\n                        background: '#000000',\n                        glyphColor: '#eeeeee',\n                        borderColor: '#000000',\n                    });\n\n                    marker = new google.maps.marker.AdvancedMarkerElement({\n                        map: sfroyHexiaMap,\n                        position: {\n                            lat: location.lat,\n                            lng: location.lng\n                        },\n                        content: pin.element,\n                        gmpClickable: true\n                    });\n\n                    marker.addListener('click', function () {\n                        if (sfroyHexiaMapSelectedPin) {\n                            if (sfroyHexiaMapSelectedPin === marker) {\n                                return;\n                            }\n\n                            sfroyHexiaMapSelectedPin.content = sfroyHexiaMapSelectedPin.defaultPinElement;\n                        }\n\n                        sfroyHexiaMapSelectedPin = marker;\n                        marker.defaultPinElement = pin.element;\n                        marker.content = selectedPin.element;\n\n                        window.dispatchEvent(new CustomEvent('sfroyHexiaMapSelectedPin', {\n                            detail: marker\n                        }));\n                    });\n\n                    marker.defaultPinElement = pin.element;\n\n                } else {\n                    marker = new google.maps.Marker({\n                        map: sfroyHexiaMap,\n                        position: {\n                            lat: location.lat,\n                            lng: location.lng\n                        },\n                        title: location.name\n                    });\n\n                    marker.addListener('click', function () {\n                        sfroyHexiaMapSelectedPin = marker;\n\n                        window.dispatchEvent(new CustomEvent('sfroyHexiaMapSelectedPin', {\n                            detail: marker\n                        }));\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                if (!mapBounds || !google.maps.geometry || !google.maps.geometry.spherical) {\n                    return;\n                }\n\n                sfroyHexiaLocations.forEach(mapLocation => {\n                    if (mapBounds.contains({lat: mapLocation.lat, lng: mapLocation.lng})) {\n                        mapLocation.visible = true;\n                        mapLocation.distance = getDistance(mapCenter, {\n                            lat: mapLocation.lat,\n                            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                if (!sfroyHexiaMapSelectedPin) {\n                    return;\n                }\n\n                if (\n                    advancedMarkersAvailable &&\n                    sfroyHexiaMapSelectedPin.defaultPinElement\n                ) {\n                    sfroyHexiaMapSelectedPin.content = sfroyHexiaMapSelectedPin.defaultPinElement;\n                }\n\n                sfroyHexiaMapSelectedPin = null;\n            });\n        };\n\n        let googleMapsLoadingStarted = false;\n\n        function loadGoogleMaps() {\n            if (window.google && window.google.maps) {\n                window.siteInitMap();\n                return;\n            }\n\n            if (googleMapsLoadingStarted) {\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,places&v=weekly&language=fr&region=CA';\n            script.async = true;\n            script.defer = true;\n            document.head.appendChild(script);\n        }\n\n        function checkConsentStatus() {\n            if (typeof cmplz_categories !== 'undefined' && cmplz_categories.includes('marketing')) {\n                loadGoogleMaps();\n                return true;\n            }\n\n            return false;\n        }\n\n        document.addEventListener('cmplz_enable_category', function (consentData) {\n            if (consentData.detail.category === 'marketing') {\n                loadGoogleMaps();\n            }\n        });\n\n        if (!checkConsentStatus()) {\n            const consentCheckInterval = setInterval(function () {\n                if (checkConsentStatus()) {\n                    clearInterval(consentCheckInterval);\n                }\n            }, 500);\n\n            setTimeout(function () {\n                clearInterval(consentCheckInterval);\n            }, 30000);\n        }\n\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 plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-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 | Parts City Pi\u00e8ces d&#039;Auto\" \/>\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:publisher\" content=\"https:\/\/www.facebook.com\/PartsCity.Canada\/\" \/>\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 Auto Parts\",\"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 Auto Parts\",\"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 Auto Parts\"},\"image\":{\"@id\":\"https:\\\/\\\/partscityauto.ca\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PartsCity.Canada\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO 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 | Parts City Pi\u00e8ces d&#039;Auto","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_publisher":"https:\/\/www.facebook.com\/PartsCity.Canada\/","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 Auto Parts","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 Auto Parts","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 Auto Parts"},"image":{"@id":"https:\/\/partscityauto.ca\/fr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PartsCity.Canada\/"]}]}},"_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}]}}