javascript - mapBox autofill sessionToken usage? - Stack Overflow
I have searched through the documents, but found nothing specific to the address autofill property sessionToken. Does anyone have reference information that includes the behavior, lifecycle and related functions for the property?
I have a prototype using the property along with accessToken, but not sure if it is actually correctly operating as designed.
function initAutocomplete() {
const autofill = document.querySelector('mapbox-address-autofill');
//const minimap = document.querySelector('mapbox-address-minimap');
autofill.accessToken = ACCESS_TOKEN;
autofill.sessionToken = 'testsession-token'
//minimap.accessToken = ACCESS_TOKEN;
autofill.addEventListener('retrieve', (event) => {
const featureCollection = event.detail;
if (!featureCollection || !featureCollection.features.length) {
minimap.feature = null;
return;
}
mapboxfeature = featureCollection.features[0];
//minimap.feature = feature;
fillInAddress();
});
}
最新文章
- 虚拟现实技术2015年将迎来爆发
- 大本营不保?美国安卓系统激活量超iOS
- 软件定义存储VS硬件定义存储
- c# - Having problems with a unity learn tutorial regarding Top-Level Statements - Stack Overflow
- visual studio code - Azure Functions HTTPTrigger running locally with VSCode weird bug but API still works .NET - Stack Overflow
- swift - DCoder bitwise solution. As I can't see the test cases, it's difficult to understand what I did wrong -
- node.js - nodejspostgres connect issue - Stack Overflow
- c# - Getting "The signature key was not found" error when using JWT Bearer Authentication with Keycloak in ASP
- android - How to reduce height of a composable to wrap content without padding - Stack Overflow
- testing - Cypress does not load static fonts - Stack Overflow
- testrigor - Unable to capture values from card display - Stack Overflow
- html - Vertical Alignment of text inside a container, that is nested within another container - Stack Overflow
- javascript - Persist Store with Redux in React Native - Stack Overflow
- Why is my bot not able to detect when a user leaves in Telegram? - Stack Overflow
- Make property of python class dependent on external variable? - Stack Overflow
- eclipse - Floodlight debug Exception in thread "main" java.lang.Error - Stack Overflow
- apache - is it possible to graceful single process in passenger rails app? - Stack Overflow