Find Your Local Store (2024)

Find Your Local Store (1) Find Your Local Store (2)

Benutzen Sie unseren Store Locator, um die nächstgelegene OTS-Filiale und Veranstaltungen in Ihrer Nähe zu finden.

While we make every effort to ensure the accuracy of this locator, please be aware that locations and/or tournament information may change without notice. Please contact your local Official Tournament Store directly for more information about specific locations and times.
' }) infowindow.open(map, marker); }); return marker; } function createTile(sname, content, data) { var sp = jQuery("", { id: "idtile" + getMd5(sname), class: "store-locator__tile group" }); sp.html(content); if (isDateBeforeToday(data["Event Date DD/MM/YY"])) { sp.addClass("old"); } return sp[0].outerHTML; } function isDateBeforeToday(date) { if (!date) { return false; } var spl = date.split("/"); if (spl.length < 3) { return true; } date = new Date(spl[2], parseInt(spl[1])-1, spl[0]); return date < new Date(new Date().toDateString()); } function markHome(home) { // Create a marker for home if (homeMarker) { homeMarker.setMap(null); } var lat = home.lat(), lng = home.lng(); homeMarker = createMarkerWithInfo(lat, lng, "Home", false, '

Home

'); } function subbutactive(state) { jQuery("#search-button").removeClass("clickable"); if (state) { jQuery("#search-button").addClass("clickable"); } } function fitMap(){ if (markers.length > 1) { var bounds = new google.maps.LatLngBounds(); for (var i = 0; i < markers.length; i++) { bounds.extend(markers[i].getPosition()); } map.fitBounds(bounds); } } function displayTiles(row){ storeinfobox.empty(); var row1 = jQuery("", { class: "store-locator__tiles-row" }); row1.append(tiles[row].slice(0, 2)); row1.appendTo(storeinfobox); if (tiles[row].length > 2) { var row2 = jQuery("", { class: "store-locator__tiles-row" }); row2.append(tiles[row].slice(2, 4)); row2.appendTo(storeinfobox); } jQuery(".page-number").removeClass("active"); jQuery("#pageid-"+row).addClass("active"); } function populatePagination() { var pagination = jQuery("#store-locator__pagination .pagination-center"); pagination.empty(); if (tiles.length < 2) { return; } for (var i = 0; i < tiles.length; i++) { jQuery("", { value: i, text: i + 1, id: "pageid-" + i, class: "page-number", onclick: "displayTiles(" + i + ")" }).appendTo(pagination); } } function createInfoItem(data, itemtype) { switch (itemtype) { case "Store Name": return '

' + data["Store Name"] + '

'; break; case "distance": return '

Distance: ' + data["distance"].toFixed(1) + 'mi

'; break; case "location": return '

Location: ' + data["City"] + ", " + data["Country/Region"] + "

"; break; case "directionurl": return '
Get Directions
'; break; case "Telephone Number": if (data["Telephone Number"]) { return '

Tel: ' + data["Telephone Number"] + '

'; } break; case "E-mail Address": if (data["E-mail Address"]) { return '

Email: ' + data["E-mail Address"] + '

'; } break; case "Max Capacity": return '

Max players: ' + data["Max Capacity"] + '

'; break; case "Event Date DD/MM/YY": return '

' + data["Event Date DD/MM/YY"] + '

'; break; case "Registration Start": return '

' + data["Registration Start"] + '

'; break; case "Discord Server Link": if (data["Discord Server Link"]) { return '
Discord server
'; } break; case "kcgnlink": return '
More info on KCGN

'; break; default: break } return ""; } function createInfoString(data, infoType) { var sinfo = ''; data["directionurl"] = encodeURI("https://www.google.com/maps/dir/?api=1&" + "origin=" + place.geometry.location.lat() + "," + place.geometry.location.lng() + "&" + "destination=" + data["Address_string"]); sinfo += '

'; sinfo += createInfoItem(data, "Store Name"); sinfo += '

'; sinfo += createInfoItem(data, "distance"); sinfo += createInfoItem(data, "location"); sinfo += createInfoItem(data, "directionurl"); sinfo += '

'; sinfo += createInfoItem(data, "Telephone Number"); sinfo += createInfoItem(data, "E-mail Address"); sinfo += '

'; switch(infoType){ case "WCQ Regionals": sinfo += createInfoItem(data, "Event Date DD/MM/YY"); sinfo += createInfoItem(data, "Registration Start"); sinfo += createInfoItem(data, "Max Capacity"); break; default: if (data["sneak_dates"]) { datesaftertoday = data["sneak_dates"].filter(function(a) { splita = a.split("/"); return new Date(splita[2], splita[1]-1, splita[0]).getTime() > today; } ); sorteddates = datesaftertoday.sort(function(a,b) { splita = a.split("/"); splitb = b.split("/"); return new Date(splita[2], splita[1]-1, splita[0]) - new Date(splitb[2], splitb[1]-1, splitb[0]); }); if (sorteddates.length < 1) { return false; } else { sinfo += '

Event dates: '; if (sorteddates.length > 4) { sinfo += sorteddates.length; } else { sinfo += sorteddates.join(", "); } sinfo += '

'; } } break; } sinfo += createInfoItem(data, "Discord Server Link"); sinfo += createInfoItem(data, "kcgnlink"); return sinfo; } function getStores(loc, rad) { if (jQuery("#search-milesorkm").val() == "KM") { rad = rad * 0.621371; } var searchtype = jQuery("#search-type").val(), dat = { lat: loc.lat(), lng: loc.lng(), radius: rad, type: searchtype }; jQuery.ajax({ url: '/eu/_store-locator/store-locator-get-info.php', dataType: 'json', data: dat, success: function(data) { var counter = 0, storeinfodatastring = ""; setTimeout(function() { subbutactive(true); }, 2000); clearLocations(); markHome(loc); jQuery.each(data, function(key, val) { if (tiles[counter].length > 5) { tiles.push([]); counter++; } var infostr = createInfoString(val, searchtype); if (infostr) { markers.push(createMarkerWithInfo(parseFloat(val["Latitude"]), parseFloat(val["Longitude"]), val["Store Name"], kuri, infostr)); tiles[counter].push(createTile(val["Store Name"], infostr, val)) } }); populatePagination(); fitMap(); displayTiles(0); }, error: function( jqXHR, textStatus, errorThrown ) { console.log('jqXHR: ', jqXHR); console.log('textStatus: ', textStatus); console.log('errorThrown: ', errorThrown); console.log('dat:', dat); }, statusCode: { 404: function() { alert('There was a problem with the server. Try again soon!'); } } }); } var selectFirstOnEnter = function(input) { // store the original event binding function var _addEventListener = (input.addEventListener) ? input.addEventListener : input.attachEvent; // Simulate a 'down arrow' keypress on hitting 'return' when no pac suggestion is selected, and then trigger the original listener. function addEventListenerWrapper(type, listener) { if (type == "keydown") { var orig_listener = listener; listener = function (event) { var suggestion_selected = jQuery(".pac-item-selected").length > 0; if (event.which == 13 && !suggestion_selected) { var simulated_downarrow = jQuery.Event("keydown", { keyCode: 40, which: 40 }); orig_listener.apply(input, [simulated_downarrow]); } orig_listener.apply(input, [event]); }; } // add the modified listener _addEventListener.apply(input, [type, listener]); } if (input.addEventListener) { input.addEventListener = addEventListenerWrapper; } else if (input.attachEvent) { input.attachEvent = addEventListenerWrapper; } }

Find Your Local Store (2024)

References

Top Articles
Mikayla Campinos Leaked Videos of Mikayla Campinos Leaks | LinkedIn
Yolanda Busio on LinkedIn: Watch full video Mikayla Campinos Leaked Video https://lnkd.in/daxDeaS9…
Byrn Funeral Home Mayfield Kentucky Obituaries
Puretalkusa.com/Amac
craigslist: south coast jobs, apartments, for sale, services, community, and events
Craigslist - Pets for Sale or Adoption in Zeeland, MI
Moe Gangat Age
Craigslist Boats For Sale Seattle
7440 Dean Martin Dr Suite 204 Directions
Alejos Hut Henderson Tx
Dit is hoe de 130 nieuwe dubbele -deckers -treinen voor het land eruit zien
Conan Exiles Thrall Master Build: Best Attributes, Armor, Skills, More
National Office Liquidators Llc
Dr. med. Uta Krieg-Oehme - Lesen Sie Erfahrungsberichte und vereinbaren Sie einen Termin
Echat Fr Review Pc Retailer In Qatar Prestige Pc Providers – Alpha Marine Group
Adam4Adam Discount Codes
Las 12 mejores subastas de carros en Los Ángeles, California - Gossip Vehiculos
Today Was A Good Day With Lyrics
Wics News Springfield Il
Jermiyah Pryear
Milwaukee Nickname Crossword Clue
Craigslist Rome Ny
Black Panther 2 Showtimes Near Epic Theatres Of Palm Coast
Unity Webgl Car Tag
Craigslist Comes Clean: No More 'Adult Services,' Ever
2004 Honda Odyssey Firing Order
O'reilly's In Monroe Georgia
Pioneer Library Overdrive
Courtney Roberson Rob Dyrdek
Otis Inmate Locator
UPC Code Lookup: Free UPC Code Lookup With Major Retailers
Roadtoutopiasweepstakes.con
Sun Haven Pufferfish
The Wichita Beacon from Wichita, Kansas
Texters Wish You Were Here
KM to M (Kilometer to Meter) Converter, 1 km is 1000 m
Elizaveta Viktorovna Bout
Busted Newspaper Campbell County KY Arrests
World Social Protection Report 2024-26: Universal social protection for climate action and a just transition
Subdomain Finder
VDJdb in 2019: database extension, new analysis infrastructure and a T-cell receptor motif compendium
Promo Code Blackout Bingo 2023
Expendables 4 Showtimes Near Malco Tupelo Commons Cinema Grill
4k Movie, Streaming, Blu-Ray Disc, and Home Theater Product Reviews & News
About Us
Darkglass Electronics The Exponent 500 Test
Greg Steube Height
The Quiet Girl Showtimes Near Landmark Plaza Frontenac
Craigslist Anc Ak
Bones And All Showtimes Near Emagine Canton
Asisn Massage Near Me
Die 10 wichtigsten Sehenswürdigkeiten in NYC, die Sie kennen sollten
Latest Posts
Article information

Author: Dong Thiel

Last Updated:

Views: 6398

Rating: 4.9 / 5 (79 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Dong Thiel

Birthday: 2001-07-14

Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

Phone: +3512198379449

Job: Design Planner

Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.