anychart.onDocumentReady(function () {
$('#container').append('<div class="title">' +
'<h1>Race Village</h1>' +
'<p>(draw chart in <a href="https://cdn.anychart.com/svg-data/seat-map/race-village.svg"' +
'target="_blank">SVG data</a>)</p>' + '</div>');
var stage = anychart.graphics.create("container");
url: 'https://cdn.anychart.com/svg-data/seat-map/race-village.svg',
success: function (data) {
var chart = anychart.seatMap([
{id: 'race-office', value: 'Race office'},
{id: 'bike-service', value: 'Bike service'},
{id: 'feed-zone', value: 'Feed zone'},
{id: 'reward-zone', value: 'Reward zone'},
{id: 'starting-zone', value: 'Starting sectors'}
chart.unboundRegions("as-is");
var series = chart.getSeries(0);
series.fill(function () {
var attr = this.attributes;
var tooltip = series.tooltip();
tooltip.titleFormat(function () {
tooltip.title({useHtml: true});
tooltip.format(function () {
return this.regionProperties.description;