Aerosports Trampoline Parks
Main Menu
  • Home
  • Best Recreational Activities
  • Locations
    • US Locations
    • Canada Locations
    • Non Gamstop Casinos 2025
    • Non Gamstop Casinos UK
    • UK Casino Sites Not On Gamstop
  • Franchise
    • Franchise Opportunities
    • Built by Aerosports
  • Contact

 

 

 

Search around my position

mi

 

'+ '
'+"Mckinley Crossroads, 280 Teller Street #120, Corona, CA 92879"+'
'+ '
' + "VIEW MORE" + '
'+ '
'+ ''+ ''+ '' } ], options:{ draggable: false }, cluster:{ radius: 25, // This style will be used for clusters with more than 0 markers 0: { content: "
CLUSTER_COUNT
", width: 90, height: 80 }, // This style will be used for clusters with more than 20 markers 20: { content: "
CLUSTER_COUNT
", width: 90, height: 80 }, // This style will be used for clusters with more than 50 markers 50: { content: "
CLUSTER_COUNT
", width: 90, height: 80 }, events: { click: function(cluster) { map.panTo(cluster.main.getPosition()); map.setZoom(map.getZoom() + 2); } } }, events: { click: function(marker, event, context){ map.panTo(marker.getPosition()); infobox.setContent(context.data); infobox.open(map,marker); // infoboxResponsiveMove(); } } } }); map = mapDiv.gmap3("get"); infobox = new InfoBox({ pixelOffset: new google.maps.Size(-225, -65), closeBoxURL: '', enableEventPropagation: true }); mapDiv.delegate('.infoBox .close','click',function () { infobox.close(); }); // hotfix for chrome on android mapDiv.delegate('.infoBox div.more-button', 'click', function() { window.location = $(this).data('link'); }); if (Modernizr.touch){ map.setOptions({ draggable : false }); var draggableClass = 'inactive'; var draggableTitle = "Activate map"; var draggableButton = $('
'+draggableTitle+'
').appendTo(mapDiv); draggableButton.click(function () { if($(this).hasClass('active')){ $(this).removeClass('active').addClass('inactive').text("Activate map"); map.setOptions({ draggable : false }); } else { $(this).removeClass('inactive').addClass('active').text("Deactivate map"); map.setOptions({ draggable : true }); } }); } // loading spinner var opts = { lines: 13, // The number of lines to draw length: 9, // The length of each line width: 9, // The line thickness radius: 27, // The radius of the inner circle corners: 1, // Corner roundness (0..1) rotate: 0, // The rotation offset color: '#FFF', // #rgb or #rrggbb speed: 1.8, // Rounds per second trail: 81, // Afterglow percentage shadow: true, // Whether to render a shadow hwaccel: false, // Whether to use hardware acceleration className: 'spinner', // The CSS class to assign to the spinner zIndex: 2e9, // The z-index (defaults to 2000000000) top: 'auto', // Top position relative to parent in px left: 'auto' // Left position relative to parent in px }; var target = document.getElementById('directory-main-bar'); var spinner = new Spinner(opts).spin(target); var spinnerDiv = mapDiv.find('.spinner'); var search = $('#directory-search'), searchInput = $('#dir-searchinput-text'), categoryInput = $('#dir-searchinput-category'), locationInput = $('#dir-searchinput-location'), geoInput = $('#dir-searchinput-geo'), geoRadiusInput = $('#dir-searchinput-geo-radius'); // find location before submit form for classic search // $('#dir-search-form').submit(function(event) { // if(geoInput.is(':checked')){ // mapDiv.gmap3({ // getgeoloc:{ // callback : function(latLng){ // if (latLng){ // $('#dir-searchinput-geo-lat').val(latLng.lat()); // $('#dir-searchinput-geo-lng').val(latLng.lng()); // } // $('#dir-search-form').submit(); // } // } // }); // if(!event.hasOwnProperty('isTrigger')) { // return false; // } // } // }); // set interactive search if(search.data('interactive') == 'yes'){ searchInput.typeWatch({ callback: function() { ajaxGetMarkers(true,false); }, wait: 500, highlight: false, captureLength: 0 }); categoryInput.on( "autocompleteselect", function( event, ui ) { ajaxGetMarkers(true,false,ui.item.value,false); }); locationInput.on( "autocompleteselect", function( event, ui ) { ajaxGetMarkers(true,false,false,ui.item.value); }); categoryInput.on( "autocompleteclose", function( event, ui ) { if($('#dir-searchinput-category-id').val() == '0'){ ajaxGetMarkers(true,false); } }); locationInput.on( "autocompleteclose", function( event, ui ) { if($('#dir-searchinput-location-id').val() == '0'){ ajaxGetMarkers(true,false); } }); } // ajax geolocation $('#dir-searchinput-geo').FancyCheckbox().bind("afterChangeIphone",function(event) { if($(this).is(':checked')){ mapDiv.gmap3({ getgeoloc:{ callback : function(latLng){ if (latLng){ $('#dir-searchinput-geo-lat').val(latLng.lat()); $('#dir-searchinput-geo-lng').val(latLng.lng()); if(search.data('interactive') == 'yes'){ ajaxGetMarkers(true,false); } } } } }); } else { if(search.data('interactive') == 'yes'){ ajaxGetMarkers(true,false); } } }); $('#dir-searchinput-settings .icon').click(function() { $('#dir-search-advanced').toggle(); }); $('#dir-search-advanced-close').click(function() { $('#dir-search-advanced').hide(); }); $('#dir-search-advanced .value-slider').slider({ value: $('#dir-searchinput-geo-radius').val(), min: 1, max: 300, step: 1, change: function( event, ui ) { if(search.data('interactive') == 'yes' && geoInput.is(':checked')){ ajaxGetMarkers(true,false); } }, slide: function( event, ui ) { $( "#dir-searchinput-geo-radius" ).val( ui.value ); } }); function ajaxGetMarkers(ajax,geoloc,rewriteCategory,rewriteLocation,reset) { //map.panTo(new google.maps.LatLng(0,0)); var topPosition = mapDiv.height() / 2; spinnerDiv.css('top',topPosition+'px').fadeIn(); radius = new Array(); var category = 0; var location = 0; var search = ''; if(ajax){ if(rewriteCategory){ category = rewriteCategory; } else { category = $('#dir-searchinput-category-id').val(); } if(rewriteLocation){ location = rewriteLocation; } else { location = $('#dir-searchinput-location-id').val(); } search = $('#dir-searchinput-text').val(); var ajaxGeo = $('#dir-searchinput-geo').attr("checked"); if(ajaxGeo && !reset){ var inputRadius = $('#dir-searchinput-geo-radius').val(); if(!isNaN(inputRadius)){ radius.push(parseInt(inputRadius)); } else { $('#dir-searchinput-geo-radius').val($('#dir-searchinput-geo-radius').data('default-value')); radius.push(parseInt($('#dir-searchinput-geo-radius').data('default-value'))); } radius.push(parseFloat($('#dir-searchinput-geo-lat').val())); radius.push(parseFloat($('#dir-searchinput-geo-lng').val())); } } else { if(reset){ category = parseInt(mapDiv.data('category')); location = parseInt(mapDiv.data('location')); search = mapDiv.data('search'); } else { if(geoloc){ radius.push(parseInt(100)); radius.push(geoloc.lat()); radius.push(geoloc.lng()); category = parseInt(mapDiv.data('category')); location = parseInt(mapDiv.data('location')); search = mapDiv.data('search'); } } } // get items from ajax $.post( // MyAjax defined in functions.php MyAjax.ajaxurl, { action : 'get_items', category : category, location : location, search : search, radius : radius }, function( response ) { // show reset ajax button if((!reset) && (!geoloc)){ $('#directory-search .reset-ajax').show(); } if(ajaxGeo && !reset){ var ajaxGeoObj = new google.maps.LatLng(parseFloat($('#dir-searchinput-geo-lat').val()),parseFloat($('#dir-searchinput-geo-lng').val())); generateMarkers(response,ajaxGeoObj,true); } else { generateMarkers(response,geoloc); } } ) .fail(function(e) { console.log("AJAX ERROR", e); }); } function generateMarkers(dataRaw,geoloc,ajaxGeo) { // clear map infobox.close(); mapDiv.gmap3({ clear: { } }); map.setZoom(10); var len = $.map(dataRaw, function(n, i) { return i; }).length; var i = 0; // prepare data var data = new Array(); for(var key in dataRaw){ if (!(dataRaw[key].optionsDir['gpsLatitude'] == "0" && dataRaw[key].optionsDir['gpsLongitude'] == "0")) { var rating = ''; if(dataRaw[key].rating){ rating += '
'; for (var j = 1; j
'; } rating += ''; } var thumbCode = (dataRaw[key].timthumbUrl) ? ' with-image">' : '">'; data[i] = { latLng: [dataRaw[key].optionsDir['gpsLatitude'],dataRaw[key].optionsDir['gpsLongitude']], options: { icon: dataRaw[key].marker, shadow: "http://aerosportsparks.com/wp-content/themes/businessfinder/design/img/map-icon/icon-shadow.png", }, data: '
'+dataRaw[key].post_title+'
'+rating+'
'+dataRaw[key].optionsDir["address"]+'
VIEW MORE
' }; i++; } } // show geoloc marker if(geoloc){ mapDiv.gmap3({ marker: { latLng: geoloc, options: { animation: google.maps.Animation.DROP, zIndex: 1000, icon: "http://aerosportsparks.com/wp-content/themes/businessfinder/design/img/geolocation-pin.png" } } }); } // generate markers in map var mapObj = { marker: { values: data, options:{ draggable: false }, cluster:{ radius: 25, // This style will be used for clusters with more than 0 markers 0: { content: "
CLUSTER_COUNT
", width: 90, height: 80 }, // This style will be used for clusters with more than 20 markers 20: { content: "
CLUSTER_COUNT
", width: 90, height: 80 }, // This style will be used for clusters with more than 50 markers 50: { content: "
CLUSTER_COUNT
", width: 90, height: 80 }, events: { click: function(cluster) { map.panTo(cluster.main.getPosition()); map.setZoom(map.getZoom() + 2); } } }, events: { click: function(marker, event, context){ map.panTo(marker.getPosition()); infobox.setContent(context.data); infobox.open(map,marker); // if map is small var iWidth = 260; var iHeight = 300; if((mapDiv.width() / 2)

No result found

'); } else { title = $('

Search result

'); } var html; if(length > 0){ html = $('
    '); } var limit = 30; if(limit > length) { limit = length; } var i = 0; for(var key in data){ var thumbnailHtml; if(data[key].timthumbUrlContent){ var thumbnailHtml = '
    Item thumbnail
    '+data[key].comment_count+'
    '; } else { thumbnailHtml = ''; } var rating = ''; if(data[key].rating){ rating += ''; for (var i = 1; i '; } rating += ''; } var descriptionHtml = '

    '+data[key].post_title+''+rating+'

    '+data[key].excerptDir+'
    '; html.append('
  • '+thumbnailHtml+descriptionHtml+'
  • '); if(i ').html(title).append(html); contentDiv.find('>').hide(); contentDiv.append(ajaxContent); } // reset search ajax values $('#directory-search .reset-ajax').click(function () { // get default values ajaxGetMarkers(false,false,false,false,true); $('#dir-searchinput-text').val(""); // for IE $('span.for-dir-searchinput-text label').show(); $('#dir-searchinput-location').val(""); $('#dir-searchinput-location-id').val("0"); // for IE $('span.for-dir-searchinput-category label').show(); $('#dir-searchinput-category').val(""); $('#dir-searchinput-category-id').val("0"); // for IE $('span.for-dir-searchinput-location label').show(); $('#dir-searchinput-geo').attr('checked',false); $('div.iphone-style[rel=dir-searchinput-geo]').removeClass('on').addClass('off'); //$('#dir-searchinput-geo-radius').val($('#dir-searchinput-geo-radius').data('default-value')); // hide close icon $(this).hide(); }); });

    Corona, CA

    You are here: Home  > United States  > Corona, CA
    • Item thumbnail

      Corona, CA

      Mckinley Crossroads, 280 Teller Street #120, Corona, CA 92879
      http://corona.aerosportsparks.com
    Copyright © 2014 Aerosports Trampoline Parks. All rights reserved.
    Designed and developed by XCEL Creative.
    • Home
    • Best Recreational Activities
    • US Locations
    • Canada Locations
    • Franchise
    • Contact