Creekwood 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=75075 ', 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.71533 33.005718,-96.715352 33.006152,-96.715576 33.008791,-96.71139 33.008882,-96.711402 33.00868,-96.711534 33.008428,-96.711978 33.008218,-96.712043 33.008042,-96.711863 33.007405,-96.711937 33.007191,-96.71233 33.006926,-96.712408 33.006727,-96.712692 33.006577,-96.713588 33.005711,-96.713585 33.005423,-96.713087 33.004931,-96.713152 33.004574,-96.71571 33.004587,-96.715543 33.00487,-96.715449 33.005111,-96.715377 33.005377,-96.71533 33.005718))', 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=14911';}); } }); loadSchools_new(33.006728,-96.71355,''); });

Advertisement

Creekwood Apartments Map Boundary

View Homes

Source: Maponic

Schools Nearby Creekwood 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

Bond Set at $300K For Man Accused Of Molesting Girl At Apartment Pool « CBS Miami

Rent this apartment, and you'll get cashmere-lined closets

New Assisted Living And Memory Care Community To Celebrate Its Grand Opening In West Yarmouth