Shadow Ridge Apartments homes for sale and rent


'; //result += ' '; result += '

' + tmpE + tmpM + tmpH + '

'; result += '

'; //alert(result); if('#nearbySchools'){ //document.getElementById('nearbySchools').innerHTML = tmpAll; $('#nearbySchools').html(tmpAll); } if('#schoolsDetail'){ //document.getElementById('schoolsDetail').innerHTML = result; $('#schoolsDetail').html(result); } } }else{ $('#schools').hide(); $('#nearbySchoolsDiv').hide(); } } }); } function doPlaceLink(lnk,e){ e.preventDefault(); window.open(lnk); } var placeList = ''; var ROOTURL = 'http://www.har.com/'; function loadPlaces(loc,cat){ var resultstr = ''; var tmpary = cat.split(',');; var tmpdiv = tmpary[0]; if(document.getElementById(tmpdiv).innerHTML.trim().length == 0){ $.ajax({ url: '/texasrealestate/getPlaces/?loc='+loc+'&cat='+ cat + '&zip=75025 ', dataType: 'json' , success: function(data){ // go through data and display cities; placeList = data; //console.log(data); var maxcount = data.length; if(maxcount > 12) maxcount = 12; for(var x=0; x '; addrurl = tmpobj.venue.location.address + ','; }else addrurl = tmpobj.venue.name +','; if(tmpobj.venue.location.city){ addr += tmpobj.venue.location.city + ', ' ; addrurl += tmpobj.venue.location.city + ', ' ; } if(tmpobj.venue.location.state){ addr += tmpobj.venue.location.state + ', ' ; addrurl += tmpobj.venue.location.state + ', ' ; } if(tmpobj.venue.location.postalCode){ addr += tmpobj.venue.location.postalCode ; addrurl += tmpobj.venue.location.postalCode ; } var addr_url = addr.replace(' ','+'); var url = 'http://google.com/maps/place/' + addrurl; if(tmpobj.venue.url) url = tmpobj.venue.url; var tmptype = ''; if(tmpobj.venue.categories[0]) tmptype = tmpobj.venue.categories[0].name; var tmprate = ''//'not available'; if(tmpobj.venue.rating) { tmprate = tmpobj.venue.rating; tmprate_px = (tmpobj.venue.rating / 10) * 94; } var tmpphone = ''; if(tmpobj.venue.contact.formattedPhone) tmpphone = tmpobj.venue.contact.formattedPhone; resultstr += '
'; resultstr += '
'; //style="height:170px; overflow:hidden;" resultstr += '
'; // onMouseOver="window.status='+"'"+ url + "'"+';" resultstr += '

'+ tmpobj.venue.name +'

'; resultstr += '

'+ tmptype + '

'; resultstr += ' '+ (isNaN(tmprate)?tmprate:'') + '
'; //' ('+ tmpobj.venue.ratingSignals +') resultstr += '

'+ addr +'

'; //resultstr += '

Rating:

'+ (isNaN(tmprate)?tmprate:'') + '
'; //' ('+ tmpobj.venue.ratingSignals +') resultstr += ' '+ tmpphone + ''; resultstr += '
'; resultstr += '
'; resultstr += ' '; resultstr += '
'; } document.getElementById(tmpdiv).innerHTML = resultstr ; jQuery('.nav-pills li').removeClass('active'); jQuery('#li_places'+tmpdiv).addClass('active'); } }) } } function loadCityDetail(cname,cindex){ var tmpobj = cityList[cindex]; //console.log(tmpobj); /* var str ='
'; str +='
'; str +=' '; str +='
'; str +='
'; str +='

ForSale

'; str +='
'; str +=' '; str +='
'; str +=' '; str +='

For Sale Listings

'; str +='
'; str +='

'; str +='

Average List Price

'; str +=' $ '+tmpobj.AVG_PRICE_SALE+'
'; str +='
Average List Price/sqft

'; str +=' $ ' + tmpobj.AVG_PRICESQFT_SALE ; str +=' '; str +='
'; str +='
'; str +='
'; str +='

ForRent

'; str +='
'; str +=' '; str +='
'; str +=' '; str +='

Rental Listings

'; str +='
'; str +='

'; str +='

Average Rent

'; str +=' $ ' + tmpobj.AVG_PRICE_RENT+'
'; str +='
Average List Price/sqft

'; str +=' $ ' + tmpobj.AVG_PRICESQFT_RENT; str +=' '; str +='
'; str +='
'; str +='
'; str +='

HomeSize

'; str +='
'; str +=' '; str +='
'; str +=' '; str +='

+

'; str +='

Beds

'; str +='
'; str +='

'; str +='

Average SqFt

'; str +=' ' + tmpobj.AVG_SQFT + '
'; str +=' Average Year Built
'; str +=' ' + tmpobj.AVG_YEAR_BUILT; str +=' '; str +='
'; str +='
'; str +='
'; str +='
'; str +='
'; document.getElementById('cityDetail').innerHTML = str; */ //$('#collapseCity').addClass('collapse'); $('#collapseCity').toggle(); $('#collapseRegion').hide(); document.getElementById('cityName').innerHTML = cname; var tmp_sale = new Number(tmpobj.NUM_SALES); var tmp_rent = new Number(tmpobj.NUM_LEASE); var tmp_bed = new Number(tmpobj.AVG_BED); document.getElementById('num_anim_active_list').innerHTML = tmp_sale; document.getElementById('mktAvgPriceSale').innerHTML = '$' + formatMoney(tmpobj.AVG_PRICE_SALE,2,',','.'); document.getElementById('mktAvgPriceSqftSale').innerHTML = '$ ' + formatMoney(tmpobj.AVG_PRICESQFT_SALE,2,',','.'); document.getElementById('num_anim_for_rent').innerHTML = tmp_rent; document.getElementById('mktAvgPriceRent').innerHTML = '$ ' + formatMoney(tmpobj.AVG_PRICE_RENT,2,',','.'); document.getElementById('mktAvgPriceSqftRent').innerHTML = '$ ' + formatMoney(tmpobj.AVG_PRICESQFT_RENT,2,',','.'); document.getElementById('num_anim_home_size').innerHTML = tmp_bed ; document.getElementById('mktAvgSqft').innerHTML = formatMoney(tmpobj.AVG_SQFT,2,',','.'); document.getElementById('mktAvgYearBuilt').innerHTML = tmpobj.AVG_YEAR_BUILT; // links document.getElementById('lnk_sale').href= ROOTURL + 'search/dosearch/?city='+tmpobj.CITY+'&for_sale=1'; document.getElementById('lnk_rent').href= ROOTURL + 'search/dosearch/?city='+tmpobj.CITY+'&for_sale=0'; document.getElementById('lnk_open').href= ROOTURL + 'search/dosearch/?city='+tmpobj.CITY+'&for_sale=1&open_houses=1'; document.getElementById('lnk_apt').href= ROOTURL + 'apartments/search/?city='+tmpobj.CITY; document.getElementById('lnk_sold').href= ROOTURL + 'search/soldsearch/?city='+tmpobj.CITY+'&for_sale=1'; document.getElementById('divMarketOverview').style.display=''; $('#num_anim_active_list').data('stop',tmp_sale) ; $('#num_anim_for_rent').data('stop',tmp_rent) ; $('#num_anim_home_size').data('stop',tmp_bed) ; har_animateNumbers(); } $(document).ready(function(){ if(document.getElementById('scity')){ harahead.init("scity","/typeappapi/city_zip_finder",10,true); } });
'+ ''+ ''+ '
'+ 'image'+ //Image ''+ '
').modal('show'); } else { $('#imageCanvas').attr('src', $(this).find('img')[0].src.replace('small', 'medium')); $('#photo_owner').html(photoCache.photos[index].owner_name); $('#owner_link').attr('href', photoCache.photos[index].owner_url); $('#photo_link').attr('href', photoCache.photos[index].photo_url); $('.bs-lightbox').modal('show'); } }); $(document).on('click', '.galleryLeft, .galleryRight', function() { var dir = $(this).hasClass('galleryLeft')?-1:1; var index = $('[data-lightbox=gallery]').index(currentLink); var pos = (index + dir) % ($('[data-lightbox=gallery]').length); currentLink = $('[data-lightbox=gallery]').get(pos); $('#imageCanvas').attr('src', $(currentLink).attr('href').replace('small', 'medium')); $('#photo_owner').html(photoCache.photos[pos].owner_name); $('#owner_link').attr('href', photoCache.photos[pos].owner_url); $('#photo_link').attr('href', photoCache.photos[pos].photo_url); }); } function getPhotos() { var bounds = shape.getBounds(); $.ajax({ //url: 'http://search.har.com/iphone2/jsonp_neighborhoods.cfm?callback=?&action=getPanoramioPhotos&key='+Math.random()+'&minlat='+bounds.getSouthWest().lng()+'&maxlat='+bounds.getNorthEast().lng()+'&minlng='+bounds.getSouthWest().lat()+'&maxlng='+bounds.getNorthEast().lat()+"&size=small", url: 'http://www.panoramio.com/map/get_panoramas.php?set=public&from=0&to=20&minx='+bounds.getSouthWest().lng()+'&miny='+bounds.getSouthWest().lat()+'&maxx='+bounds.getNorthEast().lng()+'&maxy='+bounds.getNorthEast().lat()+'&size=small', success: function(res){ window.photoCache = {photos:[]}; var tmpstr = ''; var maxcount =res.photos.length; if(res.photos.length > 20) maxcount = 20 for(i = 0; i
image
'; photoCache.photos.push(res.photos[i]); } } //Render using the photos obj if(tmpstr != ''){ $('#photos').html(tmpstr); $('#gallery').finalTilesGallery({ gridCellSize: 5, minTileWidth: 100, maxTileWidth: 600, enableTwitter: false, enableFacebook: false, enableGplus: false, enablePinterest: false, imageSizeFactor: 1.0 }); $('#gallery').show(); initLightBox(); } }, jsonpCallback: 'callback', dataType: 'jsonp', cache: 'true' }); } /*function getPhotos() { //console.log('inside photo'); var bounds = shape.getBounds(); $.ajax({url: 'http://search.har.com/iphone2/jsonp_neighborhoods.cfm?callback=?&action=getPanoramioPhotos&key='+Math.random()+'&minlat='+bounds.getSouthWest().lng()+'&maxlat='+bounds.getNorthEast().lng()+'&minlng='+bounds.getSouthWest().lat()+'&maxlng='+bounds.getNorthEast().lat()+"&size=small", success: function(res){ //console.log(arguments); //tempArr = []; var tmpstr = ''; var maxcount =res.photos.length; if(res.photos.length > 20) maxcount = 20 for(i = 0; i
image
'; } } //Render using the photos obj if(tmpstr != ''){ $('#photos').html(tmpstr); $('#gallery').finalTilesGallery({ gridCellSize: 5, minTileWidth: 100, maxTileWidth: 600, enableTwitter: false, enableFacebook: false, enableGplus: false, enablePinterest: false, imageSizeFactor: 1.0 }); initLightBox(); } }, jsonpCallback: 'callback', dataType: 'jsonp', cache: 'true' }); }//*/ $(document).ready(function(e) { HAR.initialize({ //center: {latitude: lat, longitude: lng}, domElement: 'myMap', loadParcels: false, callback: function() { window.shape = HAR.drawPolyFromMVCArray(HAR.polyFromWKT('POLYGON((-96.713562 33.07445,-96.713743 33.074835,-96.71343 33.074813,-96.713651 33.075289,-96.711419 33.075058,-96.71132 33.075122,-96.711413 33.075222,-96.710566 33.075739,-96.710527 33.075631,-96.710311 33.07516,-96.710024 33.074393,-96.709899 33.073954,-96.709732 33.073059,-96.709671 33.072952,-96.711825 33.073009,-96.714731 33.073174,-96.714816 33.073172,-96.714815 33.073601,-96.714105 33.073847,-96.714241 33.074355,-96.713996 33.074313,-96.713898 33.074574,-96.713562 33.07445))', true), {polyConfig: {clickable: true}}); HAR.map.fitBounds(shape.getBounds());getPhotos();google.maps.event.addListener(window.shape,'click',function(){window.location='http://www.har.com/mapsearch/?nid=14596';}); } }); loadSchools_new(33.0743455,-96.7122435,''); });

Advertisement

Shadow Ridge Apartments Map Boundary

View Homes

Source: Maponic

Schools Nearby Shadow Ridge Apartments

  Advertisement

'; // resultstr += ' '+ (isNaN(tmprate)?tmprate:'') + '
'; //' ('+ tmpobj.venue.ratingSignals +') resultstr += ' '+ (isNaN(tmprate)?tmprate:'')+ '
'; resultstr += '

'+ addr +'

'; //resultstr += '

Rating:

'+ (isNaN(tmprate)?tmprate:'') + '
'; //' ('+ tmpobj.venue.ratingSignals +') resultstr += ' '+ tmpphone + ''; resultstr += '
'; resultstr += '

Comments

Popular posts from this blog

Parents of Student Murdered by Maintenance Man Sue Apartment Complex

“Blacklist” star Megan Boone lists West Village apartment for $2.4M

Charlotte affordable housing forum raises possible solutions