Automicle Mobility Widget Release Notes
Welcome to the Automicle Mobility Widget documentation! Our widget provides a seamless way to integrate mobility services into your application. Below you'll find detailed release notes and implementation guides for each version.
#
Quick LinksLatest Widget Instructions
Widget Installation Instructions
Widget Configuration Parameters
Widget Configuration Parameters
Sample Widget Configuration
Sample Widget Configuration
#
Latest Release: Version 1.2.0Release Date: Nov 5, 2024
Features:
- Payments now process directly within the widget’s
<iframe>
. - Added an option to hide the wallet. By default, the wallet will be hidden.
- Fixed an alignment issue from the previous version, ensuring consistent UI.
- The widget now displays the local time.
- Widget loading speed has improved by 1x.
- The widget now supports multiple pages, allowing you to host multiple widgets on a single site, with one widget per page.
- You can anchor the widget with a specific
<div>
tag, so users don’t need to scroll to find it on the page.
How to Implement:
<head> <script src="https://www.script.automicle.com/"></script></head><body> <!-- Optionally wrapping the iframe with a custom id to the wrapper(div) --> <div id="book"> <!-- This identifier should match with the iframeWrapperId --> <iframe allowfullscreen allow="geolocation" src="https://widget.automicle.com/widget.html?widgetId='WIDGET_ID'&env='DEVELOPMENT||PRODUCTION'&iframeWrapperId=book" width="375" height="720" style="border: none" id="automicle-iframe" <!-- Do not change this --> title="widget" ></iframe> </div> </body>
#
Release: Version 1.1.3Release Date: Oct 29, 2024
Features:
- Widget has been moved to an iframe for enhanced security and better user experience.
- Minor bug fixes and general improvements.
How to Implement:
<head> <script src="https://www.script.automicle.com/"></script></head><body> <!-- Optionally wrapping the iframe with a custom id to the wrapper(div) --> <div id="book"> <iframe allowfullscreen allow="geolocation" src="https://widget.automicle.com/widget.html?widgetId='WIDGET_ID'&env='DEVELOPMENT||PRODUCTION'" width="375" height="720" style="border: none" id="automicle-iframe" title="widget" ></iframe> </div></body>
#
Release: Version 1.0.0Release Date: June 24, 2024
Features:
- Initial version of the widget.
How to Implement:
<script> (function (w, d, s, o, f, js, fjs) { w["Automicle-v1"] = o; w[o] = w[o] || function() { (w[o].q = w[o].q || []).push(arguments); }; (js = d.createElement(s)), (fjs = d.getElementsByTagName(s)[0]); js.id = o; js.src = f; js.async = 1; fjs.parentNode.insertBefore(js, fjs); })(window, document, "script", "automicle_widget", "/widget.js");
fetch("/config.json") // configuration parameters .then((res) => { return res.json(); }) .then((res) => { w1("init", res); });</script>