{"id":447,"date":"2025-11-17T09:15:22","date_gmt":"2025-11-17T14:15:22","guid":{"rendered":"https:\/\/astraxcharge.com\/?page_id=447"},"modified":"2026-06-21T22:17:49","modified_gmt":"2026-06-22T02:17:49","slug":"ev-drivers","status":"publish","type":"page","link":"https:\/\/astraxcharge.com\/fr\/ev-drivers\/","title":{"rendered":"Conducteurs de VE"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-text-align-center\"><strong>Find the Nearest Ultra-Fast Charging Stations<\/strong><\/h2>\n\n\n\n        <div id=\"map_6a3cee18e6cfa\" style=\"width: 100%; height: 400px;\"><\/div>\n        \n\t\t<script>\n\t\t \n            function initMap_map_6a3cee18e6cfa() {\n                var map = new google.maps.Map(document.getElementById('map_6a3cee18e6cfa'), {\n                    center: { lat: parseFloat('43.81881506733778'), lng: parseFloat('-79.28100490468769') },\n                    zoom: parseInt('10'),\n\t\t\t\t\tzoomControl: true,\n\t\t\t\t\tmapTypeControl: false\n                });\n\n\t\t\t\tconst placeAutocomplete = new google.maps.places.PlaceAutocompleteElement({});\n\t\t\t\tdocument.getElementById('map_6a3cee18e6cfa').before(placeAutocomplete);\n\t\t\t\t\n\t\t\t\t  const bounds = map.getBounds();\n  if (bounds) {\n    placeAutocomplete.locationBias = bounds;\n  }\n\t\t\t\tplaceAutocomplete.addEventListener('gmp-select', async ({ placePrediction }) => {\n\t\t\t\t\tconst place = placePrediction.toPlace();\n\t\t\t\t\tawait place.fetchFields({ fields: ['location'] });\n\t\n\t\t\t\t\tif (!place.location) {\n\t\t\t\t\t\t alert(\"No details available for this place.\");\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tmap.setCenter({ lat:  place.location.lat(), lng: place.location.lng() });\n\t\t\t\t\tmap.setZoom(10);\n\t\t\t\t\t\/\/ Start the checking process\n\t\t\t\t\tzoomOutAndCheck();\n\t\t\t\t});\n\t\t\t\t\n\t\t\t\tmap.addListener(\"bounds_changed\", () => {\n  const bounds = map.getBounds();\n  if (bounds) {\n    placeAutocomplete.locationBias = bounds;\n  }\n});\n\n\t\t\t\t\/\/ Check if window.storeData is available\n\t\t\t\tif (window.storeData && Array.isArray(window.storeData)) {\n\t\t\t\t\tlet activeInfoWindow = null;\n\n\t\t\t\t\tmap.addListener(\"click\", () => {\n\t\t\t\t\tif (activeInfoWindow) {\n\t\t\t\t\t\tactiveInfoWindow.close();\n\t\t\t\t\t\tactiveInfoWindow = null;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\t\n\t\t\t\t\/\/ Loop through each store and create a marker\n\t\t\t\twindow.storeData.forEach(function(store) {\n\t\t\t\t\tvar position = new google.maps.LatLng(parseFloat(store.latitude), parseFloat(store.longitude));\n\n\t\t\t\t\tvar marker = new google.maps.Marker({\n\t\t\t\t\t\tposition: position,\n\t\t\t\t\t\tmap: map,\n\t\t\t\t\t\ttitle: store.title,\n\t\t\t\t\t\ticon: window.themeUrl + '\/assets\/images\/marker.png'\n\t\t\t\t\t});\n\n\t\t\t\t\t\t\/\/ Optionally, add an info window\n\t\t\t\t\t\tvar infoWindow = new google.maps.InfoWindow({\n\t\t\t\t\t\t\tcontent: '<h3>' + store.title + '<\/h3><p><em>' + store.address + '<\/em><\/p><p>' + store.content + '<\/p>'\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tmarker.addListener('click', function() { \n\t\t\t\t\t\t\tif (activeInfoWindow) {\n\t\t\t\t\t\t\t\tactiveInfoWindow.close();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tinfoWindow.open(map, marker); \n\t\t\t\t\t\t\tactiveInfoWindow = infoWindow;\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n   \n\t\t\t\t}\n\n\t\t\t\/\/ Function to check if any marker is within the current bounds\n\t\t\tfunction checkMarkersInBounds() {\n\t\t\t\tvar bounds = map.getBounds();\n\t\t\t\tvar markersInBounds = 0;\n\n\t\t\t\t\/\/ Loop through all markers and check if they are within the bounds\n\t\t\t\twindow.storeData.forEach(function(store) {\n\t\t\t\t\tif (bounds.contains(new google.maps.LatLng(parseFloat(store.latitude), parseFloat(store.longitude)))) {\n\t\t\t\t\t\tmarkersInBounds++;\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\treturn markersInBounds > 0;\n\t\t\t}\n\n\t\t\t\/\/ Function to zoom out and check again if no markers are in bounds\n\t\t\tfunction zoomOutAndCheck() {\n\t\t\t\tvar markersInBounds = checkMarkersInBounds();\n\n\t\t\t\tif (!markersInBounds) {\n\t\t\t\t\tvar currentZoom = map.getZoom();\n\t\t\t\t\tif (currentZoom > 0) {\n\t\t\t\t\t\tmap.setZoom(currentZoom - 1); \/\/ Zoom out\n\t\t\t\t\t\tsetTimeout(zoomOutAndCheck, 50); \/\/ Check again after a short delay\n\t\t\t\t\t} else {\n\t\t\t\t\t\tconsole.log(\"Reached minimum zoom level.\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n        }\n        <\/script>\n\t\t\n\t\t<script type=\"text\/javascript\">\n\t\t\/\/ Run this BEFORE creating \/ mounting any <gmp-place-autocomplete> elements\n\/\/ (e.g. at the top of your script or in a setup function)\nconst originalAttachShadow = Element.prototype.attachShadow;\n\nElement.prototype.attachShadow = function (init) {\n  \/\/ Force open mode so we can reach inside\n  const shadow = originalAttachShadow.call(this, { ...init, mode: 'open' });\n\n  \/\/ Only patch for the autocomplete component\n  if (this.tagName.toLowerCase() === 'gmp-place-autocomplete') {\n    const style = document.createElement('style');\n    style.textContent = `\n      \/* Hide Google's built-in focus ring completely *\/\n      .focus-ring {\n        display: none !important;\n        \/* OR if you want to keep it but recolor (less common\/reliable): *\/\n        \/* box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.4) !important; *\/  \/* example: green *\/\n        \/* opacity: 0.6 !important; *\/\n      }\n\n      \/* Style the input container when focused (recommended replacement) *\/\n      .input-container:focus-within {\n        border-color: #10b981 !important;               \/* emerald green border *\/\n        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3) !important;  \/* soft green glow\/shadow *\/\n        \/* Customize freely: *\/\n        \/* box-shadow: 0 0 0 4px #6366f1, 0 0 12px rgba(99, 102, 241, 0.5) !important; *\/ \/* indigo + blur *\/\n        transition: box-shadow 0.2s, border-color 0.2s !important;\n      }\n\n      \/* Optional: normal state styling *\/\n      .input-container {\n        border: 1px solid #d1d5db !important;\n        box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;\n      }\n\n      \/* If needed, adjust padding or other parts *\/\n      input {\n        outline: none !important;  \/* prevent double rings *\/\n      }\n    `;\n    shadow.appendChild(style);\n  }\n\n  return shadow;\n};\n\t\t\twindow.storeData = [{\"title\":\"Palladium\",\"address\":\"3075 Palladium Dr, Ottawa, ON K2T 0N7, Canada\",\"latitude\":\"45.2948499\",\"longitude\":\"-75.9446\",\"content\":\"<span style=\\\"color: #ff0000;\\\"><strong>6* 332KW DCFC Char<em>ger ( up to 720KW total)\\u00a0 w<\\\/em>ith 12 CCS1 ports<\\\/strong><\\\/span>\"},{\"title\":\"Woodbine\",\"address\":\"200-7050 Woodbine Ave, Markham, ON L3R 4G8, Canada\",\"latitude\":\"43.8149715\",\"longitude\":\"-79.34981189999999\",\"content\":\"<span data-olk-copy-source=\\\"MessageBody\\\">1* 120KW DCFC Charger\\u00a0 with 2 CCS1 ports<\\\/span>\"},{\"title\":\"York Mills\",\"address\":\"900 York Mills Rd, North York, ON M3B 3H2, Canada\",\"latitude\":\"43.7574479\",\"longitude\":\"-79.3513374\",\"content\":\"<span data-olk-copy-source=\\\"MessageBody\\\">2* 240KW DCFC Charger\\u00a0 with 4 CCS1 ports<\\\/span>\"},{\"title\":\"Adelaide\",\"address\":\"766 Adelaide St N, London, ON N5Y 2L6, Canada\",\"latitude\":\"43.0000855\",\"longitude\":\"-81.236895\",\"content\":\"<table border=\\\"0\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td>\\r\\n<div>2* 240KW DCFC Charger\\u00a0 with 4 CCS1 ports<\\\/div><\\\/td>\\r\\n<\\\/tr>\\r\\n<\\\/tbody>\\r\\n<\\\/table>\"}];\n\t\t\twindow.themeUrl = 'https:\/\/astraxcharge.com\/wp-content\/themes\/astraxcharge';\n\t\t<\/script>\n\t\t\n        <script async defer src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyAYSSHEYKjKGsC4qRTxJS_Z00qGnQ4rWTc&libraries=places&callback=initMap_map_6a3cee18e6cfa&loading=async\"><\/script>\n\n\t\t\n\n\n\n<p class=\"wp-block-paragraph\">We are going fast &#8211; more cities are on the way!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\"><strong><strong>How to charge<\/strong><\/strong><\/h2>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile\" id=\"step1\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b01-1024x683.webp\" alt=\"\" class=\"wp-image-1239 size-full\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b01-1024x683.webp 1024w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b01-300x200.webp 300w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b01-768x512.webp 768w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b01-600x400.webp 600w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b01.webp 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center\"><strong>Step 1: Locate the Right Charging Point<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can find AstraXCharge stations through:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>AstraXCharge Web Portal<\/strong><\/li>\n\n\n\n<li><strong>AstraXCharge Mobile App<\/strong><\/li>\n\n\n\n<li><strong>ChargeHub App<\/strong><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Navigate to the charger and park so the cable easily reaches your vehicle\u2019s charging port.<\/p>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-media-text has-media-on-the-right is-stacked-on-mobile\" id=\"step2\"><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center\"><strong>Step 2: Plug In<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Insert firmly until it clicks into place<\/li>\n\n\n\n<li>Open your EV\u2019s charging port<\/li>\n\n\n\n<li>Select the correct connector (<strong>CCS1<\/strong>; adapters used at driver\u2019s own responsibility)<\/li>\n<\/ul>\n<\/div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b02-1024x683.webp\" alt=\"\" class=\"wp-image-1240 size-full\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b02-1024x683.webp 1024w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b02-300x200.webp 300w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b02-768x512.webp 768w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b02-600x400.webp 600w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b02.webp 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile\" id=\"step3\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b03-1024x683.webp\" alt=\"\" class=\"wp-image-1241 size-full\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b03-1024x683.webp 1024w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b03-300x200.webp 300w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b03-768x512.webp 768w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b03-600x400.webp 600w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b03.webp 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center\"><strong>Step 3: Start Charging<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Choose <strong>one<\/strong> of the available activation methods:<\/p>\n\n\n\n<div data-wp-context=\"{ &quot;autoclose&quot;: true, &quot;accordionItems&quot;: [] }\" data-wp-interactive=\"core\/accordion\" role=\"group\" class=\"wp-block-accordion is-layout-flow wp-block-accordion-is-layout-flow\">\n<div data-wp-class--is-open=\"state.isOpen\" data-wp-context=\"{ &quot;id&quot;: &quot;accordion-item-1&quot;, &quot;openByDefault&quot;: false }\" data-wp-init=\"callbacks.initAccordionItems\" data-wp-on-window--hashchange=\"callbacks.hashChange\" class=\"wp-block-accordion-item is-layout-flow wp-block-accordion-item-is-layout-flow\">\n<h3 class=\"wp-block-accordion-heading\"><button aria-expanded=\"false\" aria-controls=\"accordion-item-1-panel\" data-wp-bind--aria-expanded=\"state.isOpen\" data-wp-on--click=\"actions.toggle\" data-wp-on--keydown=\"actions.handleKeyDown\" id=\"accordion-item-1\" type=\"button\" class=\"wp-block-accordion-heading__toggle\"><span class=\"wp-block-accordion-heading__toggle-title\"><strong>Tap-to-Pay<\/strong><\/span><span class=\"wp-block-accordion-heading__toggle-icon\" aria-hidden=\"true\">+<\/span><\/button><\/h3>\n\n\n\n<div inert aria-labelledby=\"accordion-item-1\" data-wp-bind--inert=\"!state.isOpen\" id=\"accordion-item-1-panel\" role=\"region\" class=\"wp-block-accordion-panel is-layout-flow wp-block-accordion-panel-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Tap your credit\/debit card<\/li>\n\n\n\n<li>Follow the on-screen instructions<\/li>\n\n\n\n<li>A pre-authorization hold may apply<\/li>\n<\/ul>\n<\/div>\n<\/div>\n\n\n\n<div data-wp-class--is-open=\"state.isOpen\" data-wp-context=\"{ &quot;id&quot;: &quot;accordion-item-2&quot;, &quot;openByDefault&quot;: false }\" data-wp-init=\"callbacks.initAccordionItems\" data-wp-on-window--hashchange=\"callbacks.hashChange\" class=\"wp-block-accordion-item is-layout-flow wp-block-accordion-item-is-layout-flow\">\n<h3 class=\"wp-block-accordion-heading\"><button aria-expanded=\"false\" aria-controls=\"accordion-item-2-panel\" data-wp-bind--aria-expanded=\"state.isOpen\" data-wp-on--click=\"actions.toggle\" data-wp-on--keydown=\"actions.handleKeyDown\" id=\"accordion-item-2\" type=\"button\" class=\"wp-block-accordion-heading__toggle\"><span class=\"wp-block-accordion-heading__toggle-title\"><strong>QR Code<\/strong><\/span><span class=\"wp-block-accordion-heading__toggle-icon\" aria-hidden=\"true\">+<\/span><\/button><\/h3>\n\n\n\n<div inert aria-labelledby=\"accordion-item-2\" data-wp-bind--inert=\"!state.isOpen\" id=\"accordion-item-2-panel\" role=\"region\" class=\"wp-block-accordion-panel is-layout-flow wp-block-accordion-panel-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Scan the QR code on the charger<\/li>\n\n\n\n<li>Authorize payment and start the session<\/li>\n<\/ul>\n<\/div>\n<\/div>\n\n\n\n<div data-wp-class--is-open=\"state.isOpen\" data-wp-context=\"{ &quot;id&quot;: &quot;accordion-item-3&quot;, &quot;openByDefault&quot;: false }\" data-wp-init=\"callbacks.initAccordionItems\" data-wp-on-window--hashchange=\"callbacks.hashChange\" class=\"wp-block-accordion-item is-layout-flow wp-block-accordion-item-is-layout-flow\">\n<h3 class=\"wp-block-accordion-heading\"><button aria-expanded=\"false\" aria-controls=\"accordion-item-3-panel\" data-wp-bind--aria-expanded=\"state.isOpen\" data-wp-on--click=\"actions.toggle\" data-wp-on--keydown=\"actions.handleKeyDown\" id=\"accordion-item-3\" type=\"button\" class=\"wp-block-accordion-heading__toggle\"><span class=\"wp-block-accordion-heading__toggle-title\"><strong>AstraXCharge App (Registered Users)<\/strong><\/span><span class=\"wp-block-accordion-heading__toggle-icon\" aria-hidden=\"true\">+<\/span><\/button><\/h3>\n\n\n\n<div inert aria-labelledby=\"accordion-item-3\" data-wp-bind--inert=\"!state.isOpen\" id=\"accordion-item-3-panel\" role=\"region\" class=\"wp-block-accordion-panel is-layout-flow wp-block-accordion-panel-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Ensure wallet meets minimum balance &amp; auto-reload is enabled<\/li>\n\n\n\n<li>Select the Charger ID<\/li>\n\n\n\n<li>Press&nbsp;<strong>Start Charging<\/strong><\/li>\n<\/ul>\n<\/div>\n<\/div>\n\n\n\n<div data-wp-class--is-open=\"state.isOpen\" data-wp-context=\"{ &quot;id&quot;: &quot;accordion-item-4&quot;, &quot;openByDefault&quot;: false }\" data-wp-init=\"callbacks.initAccordionItems\" data-wp-on-window--hashchange=\"callbacks.hashChange\" class=\"wp-block-accordion-item is-layout-flow wp-block-accordion-item-is-layout-flow\">\n<h3 class=\"wp-block-accordion-heading\"><button aria-expanded=\"false\" aria-controls=\"accordion-item-4-panel\" data-wp-bind--aria-expanded=\"state.isOpen\" data-wp-on--click=\"actions.toggle\" data-wp-on--keydown=\"actions.handleKeyDown\" id=\"accordion-item-4\" type=\"button\" class=\"wp-block-accordion-heading__toggle\"><span class=\"wp-block-accordion-heading__toggle-title\"><strong>Roaming Partner App (Roaming-In Users)<\/strong><\/span><span class=\"wp-block-accordion-heading__toggle-icon\" aria-hidden=\"true\">+<\/span><\/button><\/h3>\n\n\n\n<div inert aria-labelledby=\"accordion-item-4\" data-wp-bind--inert=\"!state.isOpen\" id=\"accordion-item-4-panel\" role=\"region\" class=\"wp-block-accordion-panel is-layout-flow wp-block-accordion-panel-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Open your home network app<\/li>\n\n\n\n<li>Select the Charger ID<\/li>\n\n\n\n<li>Review roaming fees<\/li>\n\n\n\n<li>Press&nbsp;<strong>Start Charging<\/strong><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-media-text has-media-on-the-right is-stacked-on-mobile\" id=\"step4\"><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center\"><strong>Step 4: Stop &amp; Go<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">1. End the session using:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Stop button on charger<\/li>\n\n\n\n<li>AstraXCharge App<\/li>\n\n\n\n<li>Roaming partner app<\/li>\n\n\n\n<li>QR Code \u201cEnd Session\u201d page<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">2. Wait for confirmation that charging has stopped<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">3. Unplug and return the connector to its holster<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">4. Close your charging port, move your vehicle promptly to avoid idle fees<\/p>\n<\/div><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b04-1024x683.webp\" alt=\"\" class=\"wp-image-1242 size-full\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b04-1024x683.webp 1024w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b04-300x200.webp 300w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b04-768x512.webp 768w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b04-600x400.webp 600w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/\u8f66\u4e3b04.webp 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\"><strong>Fast Tips for Drivers<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A typical <strong>10-minute boost can add up to ~100 km<\/strong> (site\/vehicle dependent)<\/li>\n\n\n\n<li>Best charging range: <strong>10%\u201360% battery<\/strong><\/li>\n\n\n\n<li>Charging slows naturally after <strong>80%<\/strong><\/li>\n\n\n\n<li>Keep cable straight and avoid tension<\/li>\n\n\n\n<li>Stay near your vehicle during ultra-fast charging<\/li>\n\n\n\n<li>Move vehicle promptly after session ends to avoid idle fees<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\"><strong>Charge Smarter with Our APP<\/strong><\/h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-794e3cfa wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"485\" height=\"1024\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343-485x1024.jpg\" alt=\"\" class=\"wp-image-1372\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343-485x1024.jpg 485w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343-142x300.jpg 142w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343-768x1621.jpg 768w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343-728x1536.jpg 728w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343-971x2048.jpg 971w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/06\/IMG_6343.jpg 1098w\" sizes=\"auto, (max-width: 485px) 100vw, 485px\" \/><figcaption class=\"wp-element-caption\">Screenshot<\/figcaption><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"320\" height=\"320\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/04\/qrflows-url-qr.png\" alt=\"\" class=\"wp-image-1356\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/04\/qrflows-url-qr.png 320w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/04\/qrflows-url-qr-300x300.png 300w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/04\/qrflows-url-qr-150x150.png 150w\" sizes=\"auto, (max-width: 320px) 100vw, 320px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/apps.apple.com\/us\/app\/astraxcharge\/id6756754441\" target=\"_blank\" rel=\" noreferrer noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"513\" height=\"171\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/apple.webp\" alt=\"\" class=\"wp-image-1290\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/apple.webp 513w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/apple-300x100.webp 300w\" sizes=\"auto, (max-width: 513px) 100vw, 513px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.saascharge.mobile.astra\" target=\"_blank\" rel=\" noreferrer noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"513\" height=\"171\" src=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/google.webp\" alt=\"\" class=\"wp-image-1291\" srcset=\"https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/google.webp 513w, https:\/\/astraxcharge.com\/wp-content\/uploads\/2026\/01\/google-300x100.webp 300w\" sizes=\"auto, (max-width: 513px) 100vw, 513px\" \/><\/a><\/figure>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Find the Nearest Ultra-Fast Charging Stations We are going fast &#8211; more cities are on the way! How to charge Fast Tips for Drivers Charge Smarter with Our APP<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-447","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/pages\/447","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/comments?post=447"}],"version-history":[{"count":0,"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/pages\/447\/revisions"}],"wp:attachment":[{"href":"https:\/\/astraxcharge.com\/fr\/wp-json\/wp\/v2\/media?parent=447"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}