StaticchildStaticexitStaticfastStaticfirstStaticguestStaticlocationCreate a Location tag
Location tags mark DISTINCT named sub-points of interest for an entity,
such as "Main Entrance", "Exit", "Single Rider Entrance", etc. They
are additional to the entity's primary location — never a duplicate
of it.
Do not use this tag to mirror entity.location. The entity's
main coordinate belongs in entity.location (populated via
mapEntities' locationFields). A LOCATION tag with the same
coordinates as the main location adds nothing and should be omitted.
If your API only exposes one point per entity, do not emit any
LOCATION tag — the primary entity.location is sufficient.
For standard POIs like baby care centres, first aid, smoking areas,
prefer the dedicated TagBuilder.mainEntrance(),
TagBuilder.babyCareCenter(), etc. helpers.
Latitude coordinate
Longitude coordinate
Human-readable name for this location (required) - e.g., "Main Entrance", "Exit", "Single Rider Queue"
Optionalid: stringOptional unique identifier
// Correct: distinct sub-locations beyond the primary entity.location
TagBuilder.location(28.4743, -81.4677, 'Main Entrance')
TagBuilder.location(28.4744, -81.4678, 'Single Rider Entrance')
TagBuilder.location(28.4745, -81.4679, 'Exit')
// Wrong: duplicates entity.location — don't do this
// TagBuilder.location(ride.lat, ride.lng, ride.name)
StaticlockerStaticlostStaticmainStaticmaximumCreate a Maximum Height tag
The maximum height value
The unit of measurement ('cm' or 'in')
OptionaltagName: stringOptional custom tag name
Optionalid: stringOptional unique identifier
StaticmayStaticminimumCreate a Minimum Height tag
The minimum height value
The unit of measurement ('cm' or 'in')
OptionaltagName: stringOptional custom tag name
Optionalid: stringOptional unique identifier
StaticminimumCreate a Minimum Height (Unaccompanied) tag
The minimum height for a rider to ride without an accompanying adult. Typically higher than the standard minimum height.
The minimum unaccompanied height value
The unit of measurement ('cm' or 'in')
OptionaltagName: stringOptional custom tag name
Optionalid: stringOptional unique identifier
StaticonStaticpaidCreate a Paid Return Time tag (Express Pass, Lightning Lane, etc.)
OptionaltagName: stringOptionalid: stringStaticphotoStaticqueueStaticrestroomsStaticsingleStaticsingleStaticstrollerStaticunsuitableCreate an Unsuitable for Pregnant People tag
OptionaltagName: stringOptionalid: stringStaticvalidateValidate a single tag
The tag to validate
True if the tag is valid
StaticvalidateValidate an array of tags
The tags to validate
True if all tags are valid
StaticviewingStaticwheelchair
TagBuilder provides a fluent API for creating validated entity tags
Example