Interface: MapLabelHotspot
Defined in: packages/core/src/passages/interactiveMap/types.ts:446
Label hotspot positioned on the map image. Combines text button functionality with percentage-based map positioning.
Example
{
type: 'label',
content: 'Village',
position: { x: 30, y: 40 },
action: () => Game.jumpTo('village')
}
Extends
LabelHotspot.BaseMapHotspot
Properties
action()
action: () =>
void
Defined in: packages/core/src/passages/interactiveMap/types.ts:66
Callback function executed when the hotspot is clicked. Called only when the hotspot is not disabled.
Returns
void
Example
// Navigate to another passage
action: () => Game.jumpTo('village')
// Perform complex game logic
action: () => {
player.gold -= 50;
player.inventory.add('sword');
Game.jumpTo('shop-exit');
}
Inherited from
content
content:
MaybeCallable<string>
Defined in: packages/core/src/passages/interactiveMap/types.ts:169
The text to display on the button. Can be static string or a function for dynamic content.
Example
// Static label
content: 'Enter Shop'
// Dynamic label
content: () => `Health: ${player.health}/100`
content: () => player.hasVisited ? 'Return to Town' : 'Discover Town'
Inherited from
id?
optionalid:string
Defined in: packages/core/src/passages/interactiveMap/types.ts:47
Optional unique identifier for this hotspot. Can be used for debugging, analytics, or programmatic hotspot manipulation.
Example
id: 'village-entrance'
id: 'shop-button'
Inherited from
isDisabled?
optionalisDisabled:boolean| () =>boolean
Defined in: packages/core/src/passages/interactiveMap/types.ts:91
Controls whether the hotspot is interactive. Can be a static boolean or a function for dynamic state.
Default Value
false
Example
// Static disabled state
isDisabled: true
// Dynamic based on game state
isDisabled: () => player.gold < 50
isDisabled: () => !player.hasKey
Remarks
When disabled:
- Hotspot cannot be clicked
- Visual appearance changes (usually dimmed/grayed out)
- For image hotspots, the "disabled" image variant is shown if provided
- Tooltip still displays to explain why it's disabled
Inherited from
position
position:
HotspotPosition
Defined in: packages/core/src/passages/interactiveMap/types.ts:429
Position coordinates on the map. Values are percentages (0-100) of the map's width and height. Can be static or dynamic (function-based) for reactive positioning.
See
HotspotPosition for examples and coordinate system details
Inherited from
BaseMapHotspot.position
props?
optionalprops:object
Defined in: packages/core/src/passages/interactiveMap/types.ts:174
Optional configuration for button styling and appearance.
classNames?
optionalclassNames:object
CSS class name overrides.
classNames.button?
optionalbutton:string
CSS class for the button element.
Example
button: 'text-lg font-bold px-6 py-3'
color?
optionalcolor:ButtonColor
Color scheme for the button. Maps to semantic color tokens in the UI theme.
Default Value
"primary"
See
ButtonColor for available options
variant?
optionalvariant:ButtonVariant
Visual style variant for the button.
Default Value
"solid"
See
ButtonVariant for available options
Inherited from
tooltip?
optionaltooltip:object
Defined in: packages/core/src/passages/interactiveMap/types.ts:97
Optional tooltip configuration. Displays additional information when hovering over the hotspot.
content
content:
MaybeCallable<string>
The text to display in the tooltip. Can be static string or a function for dynamic content.
Example
// Static tooltip
content: 'Click to enter the village'
// Dynamic tooltip based on state
content: () => player.hasKey
? 'Unlock the door'
: 'You need a key to unlock this door'
position?
optionalposition:"top"|"bottom"|"left"|"right"
Position of the tooltip relative to the hotspot.
Default Value
"top"
Inherited from
type
type:
"label"
Defined in: packages/core/src/passages/interactiveMap/types.ts:153
Discriminator property identifying this as a label hotspot.