|
|
 |
|
 |
 |
|
| DETACHED 1 FAMILY |
| Single Family Home In Flatbush, Brooklyn, NY 11230 |
|
 |
 |
 |
 |
| Web ID: 101130 |
$1,200,000 |
|
 |
 |
 |
 |
 |
| Josephine Liascas Podolsky |
| Office |
718-253-4040 |
| Cell |
917-692-8969 |
 |
 |
|
 |
| John Reinhardt |
| Office |
718-907-1103 |
 |
 |
|
|
 |
 |
|
| |
|
Fabulous one-of-a-kind Landmark Status Victorian home located in the Ditmas Park/Fiske Terrace area of Brooklyn. The home has 7 lg. bedrooms, 2 full baths, 5 partial baths, lg. formal living room (with fireplace area), dining room, great size EIK, beautiful parquet floors throughout the entire 2,949 s/f of space. The basement is completely finished and has 4 rooms including a family room. laundry room, boiler room, additional office type room and a 1/2 bath. There are many closets and surely enough storage space for a large family. There are cedar walls in some of the rooms that give a wonderful warm feeling. The kitchen has been completely up-dated with new cabinets, counters and state-of-the-art appliances. The 70x100 property has a 2 car detached garage, private driveway with parking for at least 3 cars and a spacious back yard. Truly a gorgeous property for that very special buyer. Property is located 4 blocks from Brooklyn College, all Houses of Worship. shopping and 2 blocks from the Q Train. There will be no offers presented unless there is a Bank pre-approval. Call Josie for all appts and please give 24 hrs. notice to show.
|
|
 |
 |
 |
 |
| Bedrooms |
7 |
| Bathrooms |
2 |
| Partial Baths |
5 |
| Total Rooms |
17 |
| # Units |
1 |
| # Floors |
3 |
| X-Street |
Glenwood Rd & Ave. H |
| Property Name |
Ditmas Park/Fiske Terrace 1 family |
| Style |
Victorian |
| Construction |
Detached |
| Exterior |
Vinyl |
| Roof |
Other |
| Basement |
Finished |
| Lot Size |
70 x 100 |
| Building Size |
27 x 40 |
| Electric |
Circuit Breakers |
| Sq Feet |
2,949 |
| Zoning |
R-2 |
| Heat |
Gas |
| Heat Delivery |
Hot Water |
| Hot Water |
Gas |
| Parking |
Detached Garage 3 Spaces |
| RE Tax |
$6,223 |
| Fuel Cost |
$2,800 |
| Insurance |
$2,900 |
|
 |
 |
|
 |
 |
| Front and back yard, front wrap around porch. |
|
 |
 |
 |
 |
| Washer & dryer, 2 stoves, 2 dishwashers, 2 refrigerators, laundry area, fireplace area, parquet floors. |
|
 |
 |
 |
 |
| 1st flr has 4 total rooms, and 1/2 bath: 2nd flr has 4 total rooms, 4 bedrooms and 4 baths: 3rd flr has 3 total rooms, 3 bedrooms and 1 bath. |
|
 |
 |
|
var panorama;
function getCoordsbyAddress()
{
// alert('start');
if (GBrowserIsCompatible()) {
var geocoder = new GClientGeocoder();
geocoder.getLatLng(addr,
function(point){
if (!point) {
// Address is not found, throw an error
// alert('Address not found');
handlePanoError();
} else {
// alert('lat: '+point.y);
// alert('lng: '+point.x);
geopoints[0][1]=point.x;
geopoints[0][0]=point.y;
// alert(geopoints[0][0] + ' , ' + geopoints[0][1]);
// var myHouse = new GLatLng(geopoints[0][0],geopoints[0][1]);
var client = new GStreetviewClient();
client.getNearestPanorama(point,NearestPan);
}
});
}
}
function handlePanoError()
{
togglestate('mapBTN','none');
togglestate('mapBTNNone','block');
loadMap(document.getElementById('pano'));
}
function NearestPan(panoData) {
if (panoData != null&&panoData.code=='200') {
togglestate('mapBTN','block');
panorama = new GStreetviewPanorama(document.getElementById("pano"));
var center_lat_long=new GLatLng(geopoints[0][0],geopoints[0][1]);
// alert(center_lat_long);
if(typeof(panoData.Location.lat)!='undefined')latv=panoData.Location.lat;
if(typeof(panoData.Location.lng)!='undefined')lngv=panoData.Location.lng;
var current_POV=new GLatLng(latv,lngv);
// alert(current_POV);
// alert(center_lat_long+'---'+current_POV);
var B = computeAngle(center_lat_long, panoData.location.latlng);
my_POV={yaw: B,pitch: -10};
panorama.setLocationAndPOV(panoData.location.latlng, {yaw: B});
GEvent.addListener(panorama, "error", handlePanoError);
}
else handlePanoError();
}
function computeAngle(endLatLng, startLatLng) {
var DEGREE_PER_RADIAN = 57.2957795;
var RADIAN_PER_DEGREE = 0.017453;
// alert(startLatLng.lng());
var dlat = endLatLng.lat() - startLatLng.lat();
var dlng = endLatLng.lng() - startLatLng.lng();
// We multiply dlng with cos(endLat), since the two points are very closeby,
// so we assume their cos values are approximately equal.
var yaw = Math.atan2(dlng * Math.cos(endLatLng.lat() * RADIAN_PER_DEGREE), dlat)
* DEGREE_PER_RADIAN;
return wrapAngle(yaw);
}
function wrapAngle(angle) {
if (angle >= 360) {
angle -= 360;
} else if (angle < 0) {
angle += 360;
}
return angle;
};
function loadPano() {
document.getElementById("G_STREET").className = "google_street_on";
document.getElementById("G_MAP").className = "google_map_off";
initPano();
}
function initPano() {
if(Hide_Street=='1')HideStreet();
else
{
document.getElementById("G_STREET").className = "google_street_on";
document.getElementById("G_MAP").className = "google_map_off";
if(geopoints[0][0]=='0' && geopoints[0][1]=='0' && addr!='')getCoordsbyAddress();
else
{
var myHouse = new GLatLng(geopoints[0][0],geopoints[0][1]);
var client = new GStreetviewClient();
client.getNearestPanorama(myHouse,NearestPan);
}
}
}
function HideStreet() {
loadMap(document.getElementById('pano'));
}
|
|
|
|
 |
|
|