-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default no map found #169
Comments
My suggestion would be that maybe we just allow users to pass in a URL to an alternate no-chart-available image. |
I want to know where We can change the text in the seat no map found. |
Hi @leojaimes, thanks for reporting this issue. The feature you're describing is definitely something we've thought about, but it is currently not supported. For now, your script could determine if the map is available by fetch(`https://maps.ticketevolution.com/${venueId}/${configurationId}/map.svg`).then(response => {
if (response.status === 200) {
// the map is available
} else {
// the map is not available
}
}) |
I humbly request that you re-open this issue and add support for this. The default "alien UFO" photo is....not great and with no built-in way to override, this solution is a bit hacky. |
This is SEAT-284 in Jira. |
How are you?
How can I know when the seat map API (ticketevolution/seatmaps-client) is not going to show map?
Is there some property or callback that allow knowing when seat map is not going to show map?
I want to replace the default image seating chart is not available for another one.
Thank you
The text was updated successfully, but these errors were encountered: