Highlight, Hover and Select
Available states
State
Description
// This should happen after the 'ready' event has fired.
mapsIndoors.addListener('ready', () => {
// Get the Solution Config object.
const solutionConfig = mapsIndoors.getSolutionConfig();
// Get the hover state DisplayRule.
const hoverDisplayRule = solutionConfig.stateDisplayRules.hover;
// Set the icon scale to 2. This will result in the icon being scaled to double size on hover.
hoverDisplayRule.iconScale = 2;
// Update the SolutionCofig to apply the changes.
mapsIndoors.setSolutionConfig(solutionConfig);
}); 
Hover
Highlight and Selection
Highlight

Selection

Last updated
Was this helpful?