Greensboro Coliseum - Interactive 6ff2eedd-a579-484a-8cf3-73db2d9d4e5f Seating Chart (2024)

PhotosSeating ChartSectionsCommentsTagsEvents

'; html += '

Try a green section

'; html += '

'; return html; } function format_mini_content(data){ var index = data[0]['index']; var image = data[0]['image']; var venue = data[0]['venue']; var section = data[0]['section']; var row = data[0]['row']; var seat = data[0]['seat']; var note = data[0]['note']; var member = data[0]['member_name']; var reviews = data[0]['reviews']; var rating = make_rating(data[0]['rating'],12); var location = ''; if(section != ""){ location += "section "+section; if(row != ""){ location += ", row "+row; } } var gallery_link = gallery_link = 'open_gallery(\''+section+'\');'; var html = ''; html += '

Greensboro Coliseum - Interactive 6ff2eedd-a579-484a-8cf3-73db2d9d4e5f Seating Chart (1)

'; html += '

'; html += '

'+location+'

'; if(parseInt(reviews) < 2){ html += ''+reviews+' photo'; }else{ html += ''+reviews+' photos'; } html += '

'; html += '

'; html += ''+rating+''; html += '

'; if(note != ""){ html += '

'+stripslashes(note)+'

'; } html += '

'; return html;} function stripslashes(str) { return (str + '').replace(/\\(.?)/g, function (s, n1) { switch (n1) { case '\\': return '\\'; case '0': return '\u0000'; case '': return ''; default: return n1; } });} function open_gallery(section_name){ $.getJSON( "/ajax/venue_seat_by_type.php?jsoncallback=?", {"venue": "Greensboro Coliseum", "photo_type": "basketball", "section": section_name, "total": "all" }, function(data) { //console.log(data); // set up big photo if(data!=""){ // safety checks var data_length = data.length; if(data_length > 0){ // set up the gallery format_gallery(data); var first_photo = data[0]['index']; // set up structured data get_photo_tags(first_photo, section_name,''); } } }) .done(function(data) { }) .fail(function(data) { }) .always(function(data) { });} function format_gallery(data){ var content = ''; var gallery_title = 'Greensboro Coliseum section '+data[0]['section']+''; $("#gallery_title").html(gallery_title); $(data).each(function (index, value) { var index = value['index']; var image = value['image']; var venue = value['venue']; var section = value['section']; var row = value['row']; var seat = value['seat']; var member = value['member_name']; var reviews = value['reviews']; var video = value['video']; var rating = make_rating(value['rating'], 16); var note = stripslashes(value['note']); var clean_venue = clean_link_text(venue); var clean_section = clean_link_text(section); var clean_row = clean_link_text(row); var clean_seat = clean_link_text(seat); if(member == null){ member = 'anonymous'; } var play_button = ''; if(video != ""){ play_button = 'Greensboro Coliseum - Interactive 6ff2eedd-a579-484a-8cf3-73db2d9d4e5f Seating Chart (2)'; } var photo_link = '/photo/'+index+'/'+clean_venue+'/section-'+clean_section+'/row-'+clean_row+'/seat-'+clean_seat+'/'; content += '

'; content += '

'; content += ''+member+''; content += ''+rating+''; content += '

'; content += '

'; content += ''+play_button+''; content += '

'; content += '

'; content += '

'+venue+'

'; content += '

'+note+'

'; content += '

'; content += '

'; content += '

'; content += '

'+section+'

'; content += '

section

'; content += '

'; content += '

'; content += '

'+row+'

'; content += '

row

'; content += '

'; content += '

'; content += '

'+seat+'

'; content += '

seat

'; content += '

'; content += '

'; content += '

'; }); // add reviews to div $("#reviews").html(content); // show gallery $("#sv_photo_gallery").show(); // hide main scroll bar $("body").css('overflow', 'hidden'); // make grey area clickable, to close gallery $("#sv_photo_gallery .grey").mousedown(function(){ $("body").css('overflow', 'auto'); $("#sv_photo_gallery").hide(); }); // make grey area clickable, to close gallery $("#sv_photo_gallery .close").mousedown(function(){ $("body").css('overflow', 'auto'); $("#sv_photo_gallery").hide(); });} function get_photo_tags(photo_id, section_name, row_name){ // clear old structured data first $("#structured_data").html(""); $("#structured_data").removeClass("structured_data"); $.getJSON( "/ajax/get_photo_tags.php?jsoncallback=?", {"photo_id": photo_id }, function(data) { if(data!=""){ format_structured_data(data, section_name, row_name); } }) .done(function(data) { }) .fail(function(data) { }) .always(function(data) { });} function format_structured_data(data, section_name, row_name){ // fallback safety, this should already be cleared $("#structured_data").html(""); $("#structured_data").removeClass("structured_data"); // get for format structured data var content = ''; var section_tags = data['section_tags']; var row_tags = data['row_tags']; if(section_tags != ""){ var section_tag_string = "Section %s is tagged with"; var bold_section_name = ''+section_name+''; section_tag_string = section_tag_string.replace('%s', bold_section_name); content += '

'; content += ''+section_tag_string+':'; content += '

'; $.each(section_tags, function(key, val) { content += ''; content += ' '; content += ''+val['question']+''; content += ''; }); content += '

'; content += '

'; } if(row_tags != ""){ var row_tag_string = "Row %s is tagged with"; var bold_row_name = ''+row_name+''; row_tag_string = row_tag_string.replace("%s", bold_row_name); content += '

'; content += ''+row_tag_string+':'; content += '

'; $.each(row_tags, function(key, val) { var icon = '✓'; if(val['question'] == 'is accessible'){ icon = 'Greensboro Coliseum - Interactive 6ff2eedd-a579-484a-8cf3-73db2d9d4e5f Seating Chart (4)'; } content += ''; content += ''+icon+' '; content += ''+val['question']+''; content += ''; }); content += '

'; content += '

'; } if(content != ""){ $("#structured_data").addClass("structured_data"); $("#structured_data").html(content); }} $(function(){ $("#dragable_canvas").draggable({cancel: "#mini_popup"}); $("#zoom_in").click(function(){ if(zoom_level < 5){ zoom_level ++; } do_zoom(zoom_level); }); $("#zoom_out").click(function(){ if(zoom_level > 0){ zoom_level --; }else{ $("#") } do_zoom(zoom_level) });$("#canvas").dblclick(function(){if(zoom_level < 5){ zoom_level ++; } do_zoom(zoom_level);}); var container_width = $("#canvas_container").width(); //console.log("container_width: "+container_width); var section_map = {"231": {"path" : "m 198.6121,60.04974 c 3.5295,0.005 5.58755,0.009 5.58755,0.009 v 9.12598 h 14.67436 v -9.20115 l 4.74223,0.0572 V 6.22508 H 198.6121 v 53.82466 z"},"232": {"path" : "m 173.32018,60.01516 c 9.20425,0.0106 17.35389,0.0226 22.96644,0.0306 V 6.22509 h -22.96644 v 53.79008 z"},"234": {"path" : "m 120.94107,59.98589 c 6.66715,-0.004 14.48716,-0.003 22.61878,0.002 V 6.22509 H 120.94107 V 59.9859 z"},"233": {"path" : "m 145.88533,59.98922 c 8.43393,0.005 17.1103,0.014 25.10937,0.0226 V 6.22507 h -25.10937 v 53.76414 z"},"218": {"path" : "m 368.22622,258.08486 -0.90345,2.06599 c 0,0 -6.38693,12.86949 -10.43036,20.29666 l 33.98166,26.83251 c 1.61562,-2.72316 2.73302,-4.62751 3.00452,-5.14434 5.87125,-11.21125 9.06065,-18.28056 10.74023,-22.36131 l -36.3926,-21.68951 z"},"226": {"path" : "m 322.89738,61.40068 c 10.4821,5.12705 13.20233,5.79287 16.2522,7.90209 l 21.39674,-47.72582 c -7.32526,-4.77717 -13.03955,-6.55248 -18.68698,-9.33152 -4.73177,-2.32805 -8.21941,-3.95237 -10.35245,-4.92217 l -8.60951,54.07742 z"},"219": {"path" : "m 369.24361,255.69162 36.33563,21.65492 c 0.58079,-1.53852 0.76508,-2.20567 0.76508,-2.20567 l -0.0488,-42.11388 H 369.3907 l -0.14709,22.66463 z"},"217": {"path" : "m 355.64363,282.69508 c -0.45522,0.79819 -0.85636,1.472 -1.17263,1.96089 -2.55396,3.94506 -4.55736,10.28668 -10.20595,16.08288 l 22.89377,45.73234 c 1.19937,-1.51789 2.3092,-3.1349 3.29637,-4.855 3.07893,-5.3645 13.20698,-22.22163 19.10963,-32.13582 l -33.92119,-26.78529 z"},"224": {"path" : "m 356.15,88.91032 c 3.78181,5.26141 7.06946,10.13769 8.36708,12.21432 1.15402,1.85047 1.94526,3.46282 2.48303,4.74724 l 37.8216,-20.82147 c -1.53598,-3.8679 -4.4155,-10.66716 -8.61183,-18.71624 -1.83132,-3.51271 -3.58705,-7.33338 -5.81137,-11.20195 L 356.15,88.91032 z"},"225": {"path" : "m 341.0931,70.79672 c 0.39475,0.32858 0.81159,0.68843 1.2668,1.09219 2.98069,2.64334 7.84094,8.85659 12.30586,14.97339 l 34.41013,-33.93907 c -1.76155,-2.81695 -3.82774,-5.6339 -6.41309,-8.35173 -3.71205,-3.90116 -14.91156,-17.24625 -20.13808,-21.57843 L 341.0931,70.79672 z"},"223": {"path" : "m 405.76063,87.48555 -37.88033,20.85473 c 0.13255,0.46761 0.18197,0.72769 0.18197,0.72769 l 0.72497,22.74178 h 37.39197 l -0.05,-43.31648 c -5.9e-4,0 -0.12442,-0.3532 -0.36859,-1.00772 z"},"204": {"path" : "m 63.845883,279.36463 c -1.942938,-3.59851 -3.685884,-7.17374 -5.529408,-10.0878 -2.657443,-4.19915 -4.787001,-8.087 -6.176475,-10.75695 l -41.24762,25.17427 c 1.344708,3.22003 3.630074,8.28988 6.943301,14.31223 2.965569,5.38845 6.559017,10.35652 11.111725,16.0729 l 34.898477,-34.71465 z"},"203": {"path" : "M 9.9162593,281.27364 50.970283,256.21843 c -0.412191,-0.83278 -0.63253,-1.30504 -0.63253,-1.30504 L 48.994207,234.41053 H 6.3449034 v 1.45004 l 3.0771914,44.09339 c 0,0 0.1627836,0.46495 0.4941645,1.31968 z"},"239": {"path" : "m 48.565156,131.80975 v -1.10948 c 0,0 0.973794,-12.9573 2.030144,-20.22483 L 10.314498,85.10961 C 9.9197475,85.83529 9.7075475,86.21843 9.7075475,86.21843 L 6.344322,125.12158 v 6.68817 h 42.220834 z"},"205": {"path" : "m 80.87828,297.75827 c -2.277807,-1.52188 -4.566661,-3.13423 -6.758426,-4.82174 -3.741697,-2.88013 -6.570644,-7.01011 -9.015886,-11.29706 l -34.582212,34.3987 c 3.950409,4.8816 8.583347,10.36318 14.094153,17.11321 3.292298,4.03286 7.886284,8.20474 13.061059,12.17906 L 80.87828,297.75827 z"},"216": {"path" : "m 342.45001,302.46494 c -0.36277,0.31861 -0.73485,0.63655 -1.12495,0.95117 -5.28116,4.25236 -15.37491,6.73141 -16.80915,7.06798 l 8.9874,55.74099 h 3.4266 c 0,0 17.22773,-5.0306 28.55224,-17.75176 l -23.03214,-46.00838 z"},"207": {"path" : "m 118.61559,309.95396 -16.13534,-0.10709 c 0,0 -0.0401,0.25941 -0.61684,0.20088 l -11.358805,55.74498 c 0.504629,0.28202 0.77671,0.43102 0.77671,0.43102 h 27.334275 v -56.26979 z"},"206": {"path" : "m 99.641997,309.23226 c -0.661599,-0.33324 -1.473191,-0.78888 -2.479543,-1.41279 -3.388224,-2.10457 -8.693807,-5.12106 -14.267983,-8.73487 l -23.271077,47.71119 c 3.634724,2.68325 7.500253,5.25409 11.369271,7.6021 7.609552,4.61687 13.898812,8.22801 17.36901,10.18957 l 11.280322,-55.3552 z"},"211": {"path" : "m 224.78015,310.00451 c -2.53943,-0.0512 -3.98471,-0.10775 -3.98471,-0.16895 0,-0.50751 0,-15.37847 0,-15.37847 h -18.02073 v 16.05494 l -2.99987,-0.02 v 55.73168 h 25.00531 v -56.21924 z"},"238": {"path" : "m 51.058651,107.72967 c 0.155808,-0.76494 0.310452,-1.35826 0.461027,-1.70414 1.047047,-2.3959 8.130459,-12.17041 12.472129,-17.9992 L 29.333436,53.84248 c -4.087613,5.16163 -8.486258,11.20261 -11.505312,17.04935 -2.725463,5.27804 -4.881764,9.33684 -6.288098,11.95158 l 39.518625,24.88626 z"},"213": {"path" : "m 277.49413,310.39629 c -8.10314,-0.0319 -16.42603,-0.0698 -24.11523,-0.1164 v 55.94253 h 24.11523 v -55.82613 z"},"212": {"path" : "m 251.05226,310.26725 c -9.84027,-0.0612 -18.45269,-0.13436 -23.94663,-0.22083 v 56.17733 h 23.94663 v -55.9565 z"},"215": {"path" : "m 322.15904,310.524 h -0.62614 c 0,0 -7.05201,-0.0126 -17.42249,-0.0406 v 55.74032 h 27.02905 L 322.15904,310.524 z"},"214": {"path" : "m 301.78493,310.47678 c -6.49507,-0.018 -14.08427,-0.0419 -21.96532,-0.0712 v 55.81815 h 21.96532 v -55.74697 z"},"236": {"path" : "m 82.551463,68.11347 c 0.730201,-0.7064 1.168554,-1.12545 1.168554,-1.12545 0,0 9.883871,-4.81176 15.102248,-6.41746 L 90.791802,7.30131 c -5.770098,2.17041 -18.838714,7.25954 -26.940686,11.75668 -0.883101,0.49022 -2.0284,1.16869 -3.466127,2.16776 l 22.166474,46.88772 z"},"237": {"path" : "m 65.505113,86.00757 c 0.494165,-0.65452 0.915077,-1.20793 1.229598,-1.61434 2.387687,-3.08833 9.804224,-10.4277 14.004041,-14.52042 L 58.419377,22.66116 C 53.841088,26.16655 46.99255,32.46959 37.173792,44.31873 35.532003,46.30024 33.314076,48.907 30.90546,51.88159 l 34.599653,34.12598 z"},"227": {"path" : "m 304.11041,61.01622 16.45335,0.19888 8.73741,-54.8796 c -0.16395,-0.0718 -0.25464,-0.11042 -0.25464,-0.11042 h -24.93729 l 10e-4,54.79114 0,0 z"},"235": {"path" : "m 101.10589,60.06305 c 0.0139,-6.7e-4 0.0308,-0.003 0.0442,-0.004 0.88252,-0.0419 7.70897,-0.0632 17.46552,-0.0712 V 6.22505 H 93.695163 c 0,0 -0.243012,0.0878 -0.667994,0.24411 l 8.078721,53.59386 z"},"219.": {"path" : "m 354.51577,242.00465 -0.96856,16.96155 8.81705,3.21538 c 0,0 2.51966,-19.95544 2.22898,-20.17693 -0.29069,-0.2215 -10.07747,0 -10.07747,0 z"},"227.": {"path" : "m 331.26155,71.61287 -3.6824,8.88918 c 0,0 -16.85973,-4.67607 -16.85973,-5.11973 0,-0.44366 0,-10.42104 0,-10.42104 l 20.54213,6.65159 z"},"130": {"path" : "m 115.83548,128.71809 c -0.29825,-0.44632 -0.56858,-1.16402 -0.80113,-1.88506 -0.21336,-0.42769 -0.41103,-0.96647 -0.58544,-1.50991 -0.4994,-0.66715 -0.9238,-2.13449 -1.23076,-3.17946 l -1.14588,0.64654 -17.081814,-35.09246 -19.904946,20.76161 37.72917,26.01104 3.54519,-4.44326 c -0.18952,-0.37116 -0.36452,-0.83212 -0.52439,-1.30904 z"},"129": {"path" : "m 124.35778,83.75468 0,0 -23.98384,6.6e-4 15.26445,37.02342 -2.0034,1.1301 c 0.19767,0.4144 0.37964,0.92324 0.54358,1.43142 0.3215,0.43036 0.61102,1.1913 0.85927,1.95624 0.18429,0.36583 0.3558,0.81881 0.51218,1.28508 0.46161,0.68778 0.85578,2.02741 1.14763,3.02182 l 1.13367,-1.42078 c 0,0 1.0796,2.55421 2.52838,4.88094 v 7.33404 h 12.44074 V 83.75468 h -8.44266 z"},"104": {"path" : "m 113.81231,245.96833 c 0.32789,-0.85939 0.86217,-2.91273 1.50924,-3.79673 0.16278,-0.43701 0.3401,-0.84941 0.52788,-1.18332 0.15639,-0.43036 0.32673,-0.84541 0.50695,-1.19329 0.2279,-0.60463 0.48254,-1.16071 0.75637,-1.50792 l -3.70914,-4.64879 -37.729754,26.01104 19.904946,20.7616 17.081818,-35.09245 1.15169,0.64986 z"},"105": {"path" : "m 120.94863,227.71104 v 7.33405 c -1.44878,2.32672 -2.52838,4.88093 -2.52838,4.88093 l -1.08077,-1.35493 c -0.27906,0.80817 -0.67497,2.19037 -1.14588,3.09299 -0.16104,0.4277 -0.33545,0.83478 -0.52033,1.15871 -0.20057,0.54876 -0.42265,1.07689 -0.66218,1.45736 -0.20813,0.63856 -0.45346,1.36624 -0.72671,1.95424 l 1.94178,1.09485 -15.26445,37.02408 h 23.98383 v 6.7e-4 h 8.44324 v -56.64295 h -12.44015 z"},"120": {"path" : "m 308.32301,119.61539 -2.76848,7.09525 5.16489,5.59067 36.86932,-25.82613 -18.8608,-20.66649 c 0,0 -17.78062,35.03126 -18.00852,35.11773 -0.2279,0.0865 -2.39641,-1.31103 -2.39641,-1.31103 z"},"114": {"path" : "m 308.69974,247.55606 -2.76906,-7.09525 5.16489,-5.58999 36.86932,25.82546 -18.86022,20.66649 c 0,0 -17.78062,-35.03127 -18.0091,-35.11774 -0.22732,-0.0865 -2.39583,1.31103 -2.39583,1.31103 z"},"228": {"path" : "m 279.81961,6.22508 0,54.49648 21.96532,0.26672 0,-54.7632 -21.96532,0 z"},"230": {"path" : "m 225.94289,60.0697 25.10937,0.30398 0,-54.1486 -25.10937,0 0,53.84462 z"},"229": {"path" : "m 253.37774,60.40161 24.11639,0.29201 0,-54.46854 -24.11639,0 0,54.17653 z"},"209": {"path" : "m 170.9947,310.30117 -24.528,-0.1623 0,56.08488 24.528,0 0,-55.92258 z"},"208": {"path" : "m 144.14122,366.22375 0,-56.10084 -23.20015,-0.15299 0,56.25383 23.20015,0 z"},"210": {"path" : "m 197.44936,310.47678 -24.12918,-0.16031 0,55.90728 24.12918,0 0,-55.74697 z"},"220": {"path" : "m 369.60348,200.32113 -0.19534,30.0439 36.88502,0 -0.0349,-30.0439 -36.6548,0 z"},"221": {"path" : "m 369.82382,166.39802 -0.20406,31.26247 36.63503,0 -0.0355,-31.26247 -36.39551,0 z"},"222": {"path" : "m 369.8058,163.73738 36.41004,0 -0.0337,-29.26699 -37.31058,0 0.93426,29.26699 z"},"202": {"path" : "m 48.565156,227.87268 0,-27.55155 -42.2202526,0 0,31.42876 42.4743106,0 -0.254058,-3.87721 z"},"203.": {"path" : "m 68.391615,248.97884 0,-11.22855 -9.091462,0 0,11.40016 0,4.20314 0,7.644 9.279826,-3.15551 -0.188364,-8.86324 z"},"205.": {"path" : "m 63.055802,265.61845 8.817638,-3.32579 17.731785,20.28735 -5.038733,8.2034 -21.51069,-25.16496 z"},"207.": {"path" : "m 93.481219,285.68364 -3.875994,9.09073 15.890585,8.86856 1.8412,-9.75921 -13.855791,-8.20008 z"},"217.": {"path" : "m 332.23011,285.01848 17.92538,-20.50885 9.78679,3.21472 -22.47984,25.60862 -5.23233,-8.31449 z"},"223.": {"path" : "m 353.15943,109.64732 9.10833,-4.33284 2.34873,21.39616 -10.29432,0 -1.16274,-17.06332 z"},"234.": {"path" : "m 333.10217,84.91604 18.41024,19.06812 7.37642,-4.65612 -21.42639,-23.94572 -4.36027,9.53372 z"},"235.": {"path" : "m 93.56203,68.11347 2.945801,10.5421 16.306849,-1.80524 0,-11.37754 -19.25265,2.64068 z"},"237.": {"path" : "M 87.45997,72.06451 92.299294,82.38711 71.994365,103.33164 64.840608,96.22973 87.45997,72.06451 z"},"239.": {"path" : "m 60.384989,102.24809 -1.962124,22.38859 9.258316,0 1.472611,-15.16629 -8.768803,-7.2223 z"},"121": {"path" : "m 322.89738,82.26206 -31.58409,0.56006 0,56.93429 11.86227,0 0,-6.94892 19.72182,-50.54543 z"},"131": {"path" : "m 72.745495,112.07648 0,35.25343 39.630245,0 0,-10.64255 -39.630245,-24.61088 z"},"103": {"path" : "m 73.333842,256.03218 0,-35.25409 39.629668,0 0,10.64255 -39.629668,24.61154 z"},"119": {"path" : "m 311.60834,135.59451 37.79893,-22.27285 0,33.36637 -37.79893,0.95317 0,-12.04669 z"},"115": {"path" : "m 311.45718,221.91352 39.00993,0 0,35.44632 -39.00993,-24.33418 0,-11.11214 z"},"113": {"path" : "m 323.27469,284.90939 -31.58409,-0.56006 0,-56.93495 11.86227,0 0,6.94958 19.72182,50.54543 z"},"215.": {"path" : "m 312.65713,293.88372 14.72843,-5.98311 5.32883,8.75815 -20.05726,8.20341 0,-10.53146 0,-0.44699 z"},"201": {"path" : "m 6.3449034,166.39802 42.2208336,0 0,31.26247 -42.2208336,0 z"},"240": {"path" : "m 6.3449034,134.47039 42.2208336,0 0,29.26699 -42.2208336,0 z"},"232.": {"path" : "m 170.9947,65.47279 27.6174,0 0,10.40175 -27.6174,0 z"},"230.": {"path" : "m 224.68887,65.47279 27.63833,0 0,10.40175 -27.63833,0 z"},"228.": {"path" : "m 277.49413,65.47279 27.63833,0 0,10.40175 -27.63833,0 z"},"234..": {"path" : "m 118.61559,65.47279 28.36969,0 0,10.40175 -28.36969,0 z"},"233.": {"path" : "m 152.80828,65.47279 13.6372,0 0,10.40175 -13.6372,0 z"},"229.": {"path" : "m 257.68569,65.47279 13.63719,0 0,10.40175 -13.63719,0 z"},"210.": {"path" : "m 167.12103,293.88372 29.2621,0 0,10.40242 -29.2621,0 z"},"212.": {"path" : "m 226.22718,293.88372 29.0685,0 0,10.40242 -29.0685,0 z"},"214.": {"path" : "m 278.65687,293.88372 27.63833,0 0,10.40242 -27.63833,0 z"},"208.": {"path" : "m 111.83274,294.66329 29.99928,0 0,10.40242 -29.99928,0 z"},"209.": {"path" : "m 147.16086,293.88372 13.46859,0 0,10.40242 -13.46859,0 z"},"213.": {"path" : "m 259.77978,293.88372 13.6372,0 0,10.40242 -13.6372,0 z"},"202.": {"path" : "m 57.538601,193.62564 9.092045,0 0,36.73939 -9.092045,0 z"},"240.": {"path" : "m 57.538601,130.44618 9.092045,0 0,37.61474 -9.092045,0 z"},"220.": {"path" : "m 357.90748,213.40281 7.18399,0 0,23.05907 -7.18399,0 z"},"201.": {"path" : "m 57.538601,174.22761 9.092045,0 0,15.6033 -9.092045,0 z"},"221.": {"path" : "m 355.00063,193.8917 9.61586,0 0,16.18531 -9.61586,0 z"},"221..": {"path" : "m 355.00063,175.26725 9.61586,0 0,14.52242 -9.61586,0 z"},"221...": {"path" : "m 355.00063,155.31248 9.61586,0 0,15.29866 -9.61586,0 z"},"222.": {"path" : "m 355.00063,132.80749 9.61586,0 0,17.07264 -9.61586,0 z"},"122": {"path" : "m 272.17633,85.80869 17.13123,0 0,53.94772 -17.13123,0 z"},"123": {"path" : "m 248.1925,92.7157 21.20954,0 0,51.89437 -21.20954,0 z"},"124": {"path" : "m 225.94289,86.8623 19.47647,0 0,57.74711 -19.47647,0 z"},"125": {"path" : "m 201.69336,92.7157 20.23168,0 0,51.89437 -20.23168,0 z"},"126": {"path" : "m 178.52577,83.00903 20.08633,0 0,61.60038 -20.08633,0 z"},"127": {"path" : "m 155.68374,93.64892 19.90495,0 0,50.96049 -19.90495,0 z"},"128": {"path" : "m 134.96313,88.79592 17.84515,0 0,52.26752 -17.84515,0 z"},"112": {"path" : "m 272.17633,226.06877 17.13123,0 0,53.94705 -17.13123,0 z"},"111": {"path" : "m 248.1925,223.42609 21.20954,0 0,51.89504 -21.20954,0 z"},"110": {"path" : "m 225.94289,223.42742 19.47647,0 0,61.47798 -19.47647,0 z"},"109": {"path" : "m 202.8561,222.99773 20.23168,0 0,51.89504 -20.23168,0 z"},"108": {"path" : "m 180.26988,223.26911 20.08633,0 0,61.59971 -20.08633,0 z"},"107": {"path" : "m 155.68374,229.91804 19.90495,0 0,50.95983 -19.90495,0 z"},"106": {"path" : "m 134.96313,225.06438 17.84515,0 0,52.26752 -17.84515,0 z"},"Floor Seating":{"path":"M162.7,156.2 252.7,156.2 252.7,158.5 162.7,158.5 z"}, "Floor Seating.":{"path":"M160.5,158.6 162.7,158.6 162.7,181.3 160.5,181.3 z"}, "Floor Seating..":{"path":"M160.5,184.7 162.7,184.7 162.7,207.7 160.5,207.7 z"}, "Floor Seating...":{"path":"M252.7,158.6 255,158.6 255,181.3 252.7,181.3 z"}, "Floor Seating....":{"path":"M252.7,184.7 255,184.7 255,207.1 252.7,207.1 z"}, "101":{"path":"M81.9,172.9h62.6v23.6H81.9V172.9z"}, "102":{"path":"M78.1,198.5h66.4v20.2H78.1V198.5z"}, "116":{"path":"M271.4,198.6h74.1v19.8h-74.1V198.6z"}, "117":{"path":"M271.4,173.3h70.7v22.3h-70.7V173.3z"}, "118":{"path":"M270.9,150.6h74.6v20h-74.6V150.6z"}, "132":{"path":"M78.7,150.8h65.8v20H78.7V150.8z"}}; var props = {"props_visitors":{"path":"M163.7,207.7 184.2,207.7 184.2,210.6 163.7,210.6 z"}, "props_scorers":{"path":"M188.6,207.7 227.9,207.7 227.9,210.6 188.6,210.6 z"}, "props_uncg":{"path":"M230.4,207.7 251.7,207.7 251.7,210.6 230.4,210.6 z"}};var bg = {"bg":{"path":"M106.3,1.2C51,1.2,1.3,68,1.3,105.7V254c0,50,43.2,99,92.3,117H330c44.5-6,59-46,81.7-92.3V85.3 C391.5,40.5,359,1.2,317,1.2H106.3z"}}; var style_props = { "fill": "#D0E1EC", "fill-opacity": 1, "stroke": "#D0E1EC", "stroke-width": 1, "stroke-opacity": 1 }; var style_bg = { "fill": "#ebf7fe", "fill-opacity": 1, "stroke": "#369", "stroke-width": 2, "stroke-opacity": 1 }; var style_grass = { "fill": "#098042", "fill-opacity": 1, "stroke": "#804E1F", "stroke-width": 8, "stroke-opacity": 1 }; style_font_section = { "font-size": 6.5, "font-family": "Arial, Helvetica, sans-serif", "cursor":"pointer", "fill": "#696969", "width":"30px" }; style_font_section_filled = { "font-size": 6.5, "font-family": "Arial, Helvetica, sans-serif", "cursor":"pointer", "fill": "#696969" }; style_sections = { "fill": "#fff", "fill-opacity": 1, "stroke": "#36c", "stroke-width": 1, "stroke-opacity": 1, "cursor":"pointer" }; style_section_filled = { "fill": "#A3C266", "fill-opacity": 1, "stroke": "#36c", "stroke-width": 1, "cursor":"pointer" }; style_section_filled_active = { "fill": "#dce8c5", "fill-opacity": 1, "stroke": "#36c", "stroke-width": 1, "cursor":"pointer" }; style_section_current = { "fill": "#A3C266", "fill-opacity": 1, "stroke": "#36c", "stroke-width": 1, "cursor":"pointer" }; style_sections_highlighted = { "fill": "#ffffa0", "fill-opacity": 1, "stroke": "#36c", "stroke-width": 1, "stroke-opacity": 1, "cursor":"pointer" }; style_section_filled_highlighted = { "fill": "#7aa32d", "fill-opacity": 1, "stroke": "#36c", "stroke-width": 1, "cursor":"pointer" }; // container_width was 1800 paper = Raphael("canvas", container_width, container_width); paper.renderfix(); bg_shape = paper.set(); grass_shape = paper.set(); sections = paper.set(); section_extras = paper.set(); section_text = paper.set(); clickable_section = paper.set(); clickable_section_text = paper.set(); highlighted_section = paper.set(); // props & suites if(typeof bg !== 'undefined'){ $.each( bg, function( key, value ) { bg_shape.push(paper.path(value.path)); }); bg_shape.attr(style_bg); } // grass for ballparks if(typeof grass !== 'undefined'){ $.each( grass, function( key, value ) { grass_shape.push(paper.path(value.path)); }); grass_shape.attr(style_grass); } var field = paper.image("/seatingcharts/fields/basketball_avfms.png",0,0,800,422); field.attr({"width":91, "height":48});field.transform("R0 T162.5,159"); // props & suites if(typeof props !== 'undefined'){ $.each( props, function( key, value ) { section_extras.push(paper.path(value.path)); }); section_extras.attr(style_props); } var array_key; // sections $.each( section_map, function( key, value ) { array_key = section_key(key); // section shape all_section_names[array_key] = paper.path(value.path).data({"sec":array_key}); sections.push(all_section_names[array_key]); // bbox of section section_box = all_section_names[array_key].getBBox(); // section text all_section_text[array_key] = paper.text(0, 0, clean_out_text(key)).data({"sec":array_key}); all_section_text[array_key].translate(section_box.x+(section_box.width/2),section_box.y+(section_box.height/2)); section_text.push(all_section_text[array_key]); }); sections.attr(style_sections); sections.data("highlighted",false); sections.data("clickable",false); section_text.attr(style_font_section); section_text.data("highlighted",false); section_text.data("clickable",false); // would this replace the other one sections.mousedown(function(e){ var section = this.data("sec"); section = clean_out_text(section); var center_x = (e.pageX - $('#canvas').offset().left)-120+($('#canvas').position().left); var center_y = (e.pageY - $('#canvas').offset().top)-270+($('#canvas').position().top); make_mini_photo_popup(center_x, center_y, section); }); section_text.mousedown(function(e){ var section = this.data("sec"); section = clean_out_text(section); var center_x = (e.pageX - $('#canvas').offset().left)-120+($('#canvas').position().left); var center_y = (e.pageY - $('#canvas').offset().top)-270+($('#canvas').position().top); make_mini_photo_popup(center_x, center_y, section); }); sections.transform("S1"); section_extras.transform("S1"); // get clickable sections find_sections_with_photos(venue); // move text to front do_to_front(); paper.setViewBox(0,0,500,500,true); zoom_level = 4; $("#canvas svg").css("overflow","visible"); //paper.setSize(800,1200); $("#seat_finder_form input").change(function(){ // show a spinner, starting now var filter = $(this).val(); make_filter_request("868","basketball",filter); });});

Green sections have photos

By continuing to use our site, you agree to us using cookies in accordance with our Cookie PolicyClose

Greensboro Coliseum - Interactive 6ff2eedd-a579-484a-8cf3-73db2d9d4e5f Seating Chart (2024)

References

Top Articles
NASCAR at Daytona: Where to watch the co*ke Zero Sugar 400, start time, live stream, preview, pick to win
NASCAR schedule: Races today, races this weekend, 2025 NASCAR schedule
Devin Mansen Obituary
Dunhams Treestands
Kem Minnick Playboy
Chris Provost Daughter Addie
Zabor Funeral Home Inc
Canary im Test: Ein All-in-One Überwachungssystem? - HouseControllers
How Much Is 10000 Nickels
Acts 16 Nkjv
Www.megaredrewards.com
GAY (and stinky) DOGS [scat] by Entomb
The Many Faces of the Craigslist Killer
House Party 2023 Showtimes Near Marcus North Shore Cinema
Gon Deer Forum
Interactive Maps: States where guns are sold online most
Munich residents spend the most online for food
Grab this ice cream maker while it's discounted in Walmart's sale | Digital Trends
Virginia New Year's Millionaire Raffle 2022
Keck Healthstream
Missed Connections Inland Empire
O'Reilly Auto Parts - Mathis, TX - Nextdoor
Terry Bradshaw | Biography, Stats, & Facts
yuba-sutter apartments / housing for rent - craigslist
Kingdom Tattoo Ithaca Mi
Preggophili
Smartfind Express Login Broward
Gillette Craigslist
HP PARTSURFER - spare part search portal
How Much Is An Alignment At Costco
Transformers Movie Wiki
Mbi Auto Discount Code
Kattis-Solutions
MethStreams Live | BoxingStreams
Robot or human?
Go Smiles Herndon Reviews
Pitchfork's Top 200 of the 2010s: 50-1 (clips)
Vivek Flowers Chantilly
Puretalkusa.com/Amac
Bob And Jeff's Monticello Fl
Walmart Pharmacy Hours: What Time Does The Pharmacy Open and Close?
Dwc Qme Database
Unblocked Games Gun Games
Europa Universalis 4: Army Composition Guide
Conan Exiles Colored Crystal
Noga Funeral Home Obituaries
60 Days From August 16
Dolce Luna Italian Restaurant & Pizzeria
Craigslist Pets Lewiston Idaho
Grandma's Portuguese Sweet Bread Recipe Made from Scratch
Hy-Vee, Inc. hiring Market Grille Express Assistant Department Manager in New Hope, MN | LinkedIn
The Significance Of The Haitian Revolution Was That It Weegy
Latest Posts
Article information

Author: Twana Towne Ret

Last Updated:

Views: 5913

Rating: 4.3 / 5 (64 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Twana Towne Ret

Birthday: 1994-03-19

Address: Apt. 990 97439 Corwin Motorway, Port Eliseoburgh, NM 99144-2618

Phone: +5958753152963

Job: National Specialist

Hobby: Kayaking, Photography, Skydiving, Embroidery, Leather crafting, Orienteering, Cooking

Introduction: My name is Twana Towne Ret, I am a famous, talented, joyous, perfect, powerful, inquisitive, lovely person who loves writing and wants to share my knowledge and understanding with you.