Search for Sale or for Rent. Residential or Commercial.
Price
Beds
Baths
Save Search
Advanced Search


Luxury Proprety Solutions, LLC. (LPS)
Real Estate Brokerage
Luxury Assets Management & Acquisitions (LAMA)

info@lpslama.com
+1(866)577-5262

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Save
Ask
Tour
Hide
Share
$69,500,000
247 Days On Site

1260 N Lake Way
Palm Beach, FL 33480

For Sale|Single Family Residence|Active
5
Beds
8
Total Baths
7
Full Baths
1
Partial Bath
7,016
SqFt
$9,906
/SqFt
2024
Built
Subdivision:
BELLO LIDO
County:
Palm Beach
Call Now: (866)577-5262
Is this the listing for you? We can help make it yours.
(866)577-5262
1260 N Lake Way1260 N Lake Way1260 N Lake Way1260 N Lake Way
Save
Ask
Tour
Hide
Share

Mortgage Calculator

Monthly Payment (Est.)

$317,087
Calculator powered by Showcase IDX, a Constellation1 Company. Copyright ©2025 Information is deemed reliable but not guaranteed.

Completed new construction direct Intracoastal estate residence with concrete dockage. Stunning Art Deco styled residence with several ''flex'' rooms featuring walk-in closets and full baths allowing as many as 6 bedrooms/baths. Heavily landscaped grounds with multiple outdoor entertainment areas - courtyards and fountains. Motor court. HVAC oversized garage. Dramatic pool area - complete privacy from bike path. Steps to Palmo - Town Park and fantastic beach. Huge second story patios invite the best of indoor/outdoor living. Dream kitchen, dining seats 12-14 and dramatic visible wine storage. High elevation. Turn-key staged. Furniture available in whole or part, separately from stager.

Save
Ask
Tour
Hide
Share
Listing Snapshot
Price 
$69,500,000
Days On Site 
247 Days
Bedrooms 
5
Inside Area (SqFt) 
7,016 sqft
Total Baths 
8
Full Baths 
7
Partial Baths 
1
Lot Size 
21,279 Acres
Year Built 
2024
MLS® Number 
R11034933
Status 
Active
Property Tax 
$308,922
HOA/Condo/Coop Fees 
N/A
Sq Ft Source 
N/A
Friends & Family
Recent Activity
2 months agoPrice changed to $69,500,000
8 months agoListing updated with changes from the MLS®
8 months agoListing first seen on site
General Features
Attached Garage 
Yes
Garage 
Yes
Garage Spaces 
3
Number Of Stories 
2
Parking 
AttachedDrivewayGarageGarage Door Opener
Pets 
Yes
Property Condition 
New Construction
Property Sub Type 
Single Family Residence
Security 
Smoke Detector(s)
Sewer 
Public Sewer
SqFt Total 
10653
Utilities 
Cable AvailableElectricity AvailableNatural Gas AvailableSewer AvailableWater Available
Water Source 
Public
Zoning 
R-B(ci
Interior Features
Appliances 
DryerDishwasherDisposalGas RangeIce MakerMicrowaveRefrigeratorWasher
Cooling 
Central AirCeiling Fan(s)Zoned
Fireplace 
Yes
Flooring 
HardwoodMarbleWood
Furnished 
Negotiable
Heating 
CentralZoned
Interior 
Entrance FoyerEat-in KitchenElevatorPantryBarWalk-In Closet(s)
Save
Ask
Tour
Hide
Share
Exterior Features
Construction Details 
Block
Exterior 
Balcony
Frontage 
Waterfront
Lot Features 
Waterfront
Patio And Porch 
Patio
Pool Features 
Private
Private Pool 
Yes
Roof 
Barrel
View 
WaterPool
Waterfront 
Yes
Waterfront Features 
Intracoastal AccessNavigable WaterNo Fixed BridgesOcean AccessSeawall
Waterview 
WaterPool
Community Features
Association Amenities 
Other
Financing Terms Available 
Cash
MLS Area 
5001
Listing courtesy of The Corcoran Group



All listings featuring the BMLS logo are provided by BeachesMLS, Inc. This information is not verified for authenticity or accuracy and is not guaranteed. Copyright © 2025 BeachesMLS, Inc. (a Flex MLS feed)
Last checked: 2025-07-12 12:59 PM UTC

Neighborhood & Commute
Source: Walkscore
Community information and market data Powered by ATTOM Data Solutions. Copyright ©2019 ATTOM Data Solutions. Information is deemed reliable but not guaranteed.
Save
Ask
Tour
Hide
Share
Scroll to Top
Address

Luxury Property Solutions, LLC.
2200 N. Commerce Parkway
Suite 200
Weston, FL 33326

Phone
+1(866)577-5262

info@lpslama.com

© 2022 Luxury Property Solutions, LLC. All rights reserved

prefix . 'schools'; if ( $wpdb->get_var( "SHOW TABLES LIKE '$table'" ) != $table ) { $sql = "CREATE TABLE $table ( id mediumint(9) NOT NULL AUTO_INCREMENT, SCHOOL varchar(255) NOT NULL, OFFR_DISTRICT varchar(255), SCHOOL_NAME_LONG varchar(255), DISTRICT_NAME varchar(255), GRADE_CODE varchar(255), TYPE varchar(255), PHYSICAL_ADDRESS varchar(255), PHYSICAL_CITY varchar(255), PHYSICAL_STATE varchar(2), PHYSICAL_ZIP varchar(10), PHONE_NUMBER varchar(20), WEB_ADDRESS varchar(255), EMAIL_ADDRESS_PRI varchar(255), PRINCIPAL_TITLE varchar(10), PRINCIPAL_FIRST varchar(255), PRINCIPAL_LAST varchar(255), PRINCIPAL_MI varchar(10), MAGNET_STATUS varchar(10), MAGNET_SPECIALTY varchar(10), MAGNET_PURPOSE varchar(10), CS_SCHOOL_CHOICE varchar(10), CHARTER_SCHL_STAT varchar(10), PRIMARY_SERV_TYPE varchar(255), COMMENTS text, report_grade_2024 varchar(1), LATITUDE float, LONGITUDE float, PRIMARY KEY (id) );"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $sql ); } } } /** * Determine if plugin should load (only on SEF property listing pages). */ if ( ! function_exists( 'lps_should_load' ) ) { function lps_should_load() { $uri = esc_url_raw( $_SERVER['REQUEST_URI'] ?? '' ); return strpos( $uri, '/properties/listing/SEF/' ) !== false; } } /** * Calculate Haversine distance (miles) between two points. */ if ( ! function_exists( 'lps_haversine' ) ) { function lps_haversine( float $lat1, float $lon1, float $lat2, float $lon2 ): float { $R = 3958.8; $toRad = fn( $deg ) => $deg * M_PI / 180; $dLat = $toRad( $lat2 - $lat1 ); $dLon = $toRad( $lon2 - $lon1 ); $a = sin( $dLat / 2 ) ** 2 + cos( $toRad( $lat1 ) ) * cos( $toRad( $lat2 ) ) * sin( $dLon / 2 ) ** 2; return $R * 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) ); } } /** * Fetch subject property by MLS ID. */ if ( ! function_exists( 'lps_fetch_subject_property' ) ) { function lps_fetch_subject_property( string $listing_id ) { if ( empty( MIAMIRE_BRIDGE_API_TOKEN ) ) { return new WP_Error( 'no_token', 'API token not configured', [ 'status' => 500 ] ); } $listing_id = sanitize_text_field( $listing_id ); if ( ! preg_match( '/^[A-Za-z0-9]+$/', $listing_id ) ) { return new WP_Error( 'invalid_id', 'Invalid MLS ID format', [ 'status' => 400 ] ); } $token = MIAMIRE_BRIDGE_API_TOKEN; $endpoint = 'https://api.bridgedataoutput.com/api/v2/OData/miamire/Property'; $query = "?%24filter=ListingId eq '{$listing_id}'" . '&%24select=ListingId,ListPrice,ClosePrice,LivingArea,LotSizeSquareFeet,YearBuilt,' . 'BedroomsTotal,BathroomsTotalDecimal,Latitude,Longitude,DaysOnMarket,OnMarketDate,CloseDate,' . 'City,PostalCode,PropertyType,WaterfrontYN,PoolPrivateYN,ListOfficeName,ListAgentFullName' . "&%24top=1&access_token={$token}"; $response = wp_remote_get( $endpoint . $query, [ 'timeout' => 30 ] ); if ( is_wp_error( $response ) ) { return new WP_Error( 'subject_error', 'Subject fetch failed', [ 'status' => 500 ] ); } $code = wp_remote_retrieve_response_code( $response ); $body = wp_remote_retrieve_body( $response ); if ( 200 !== $code ) { return new WP_Error( 'subject_error', "Subject fetch failed: HTTP {$code}", [ 'status' => $code ] ); } $data = json_decode( $body, true ); if ( json_last_error() ) { return new WP_Error( 'subject_error', 'Invalid JSON from subject API', [ 'status' => 500 ] ); } if ( empty( $data['value'][0] ) ) { return new WP_Error( 'no_data', 'Subject not found', [ 'status' => 404 ] ); } return $data['value'][0]; } } /** * Fetch comparables (Active, Closed or Rental) with LivingArea ±20% and matching WaterfrontYN. */ if ( ! function_exists( 'lps_fetch_comparables' ) ) { function lps_fetch_comparables( string $status, string $listing_id ) { $subject = lps_fetch_subject_property( $listing_id ); if ( is_wp_error( $subject ) ) { return $subject; } if ( empty( MIAMIRE_BRIDGE_API_TOKEN ) ) { return new WP_Error( 'no_token', 'API token not configured', [ 'status' => 500 ] ); } $token = MIAMIRE_BRIDGE_API_TOKEN; $dataset = defined( 'MIAMIRE_DATASET' ) ? MIAMIRE_DATASET : 'miamire'; $radii = ( 'Rental' === $status ) ? [5,10,15,20] : [2,5,10,15]; $max_radius_miles = end($radii); $max_radius_m = $max_radius_miles * 1609.34; // convert to meters $point = "POINT({$subject['Longitude']} {$subject['Latitude']})"; // fetch 50, then client-side filter $endpoint = "https://api.bridgedataoutput.com/api/v2/OData/{$dataset}/Property"; $fields = 'ListingId,UnparsedAddress,ListPrice,ClosePrice,BedroomsTotal,BathroomsTotalDecimal,' . 'LivingArea,LotSizeSquareFeet,Latitude,Longitude,StandardStatus,' . 'Media,DaysOnMarket,OnMarketDate,CloseDate,ListOfficeName,ListAgentFullName,WaterfrontYN'; $url = "{$endpoint}?%24filter=StandardStatus%20eq%20'{$status}'%20and%20ListingId%20ne%20'{$listing_id}'" . "%20and%20PropertyType%20eq%20'{$subject['PropertyType']}'" . "%20and%20BedroomsTotal%20ge%20" . max(1, $subject['BedroomsTotal'] ?? 0) . "%20and%20geo.distance(Coordinates,{$point})%20le%20{$max_radius_m}" . "&%24orderby=" . ( $status==='Active'?'ListPrice desc':'CloseDate desc' ) . "&%24select={$fields}&%24top=50&access_token={$token}"; $resp = wp_remote_get( $url, [ 'timeout' => 30 ] ); if ( is_wp_error( $resp ) ) { return []; } $code = wp_remote_retrieve_response_code( $resp ); $body = wp_remote_retrieve_body( $resp ); if ( 200 !== $code ) { return []; } $data = json_decode( $body, true ); if ( json_last_error() || empty( $data['value'] ) ) { return []; } // client-side filter $comps = array_filter( $data['value'], function( $p ) use ( $subject ) { if ( empty( $p['LivingArea'] ) || ! isset( $p['WaterfrontYN'] ) ) { return false; } $areaOK = $p['LivingArea'] >= $subject['LivingArea'] * 0.8 && $p['LivingArea'] <= $subject['LivingArea'] * 1.2; $waterOK = $p['WaterfrontYN'] === $subject['WaterfrontYN']; // distOK removed since filtered in query return $areaOK && $waterOK; } ); // dedupe closed if ( 'Closed' === $status ) { $uniq = []; foreach ( $comps as $c ) { $addr = $c['UnparsedAddress'] ?? ''; if ( ! isset( $uniq[ $addr ] ) || strtotime($c['CloseDate']) > strtotime($uniq[$addr]['CloseDate']) ) { $uniq[ $addr ] = $c; } } $comps = array_values($uniq); } return array_values($comps); } } /** * Rentals endpoint: subset of comparables + zip filter */ if ( ! function_exists( 'lps_fetch_rentals' ) ) { function lps_fetch_rentals( WP_REST_Request $r ) { $listing_id = sanitize_text_field($r->get_param('listing_id')); $subject = lps_fetch_subject_property($listing_id); if ( is_wp_error($subject) ) { return $subject; } $all = lps_fetch_comparables('Rental', $listing_id); if ( is_wp_error($all) ) { return $all; } $zip = $subject['PostalCode'] ?? ''; if ( $zip ) { $filtered = array_filter($all, fn($p) => str_ends_with($p['UnparsedAddress'] ?? '', $zip)); return array_values($filtered); } return $all; } } /** * Compute estimate */ if ( ! function_exists( 'lps_compute_estimate' ) ) { function lps_compute_estimate( array $comps, float $area, array $activeComps ): array { if ( empty($comps) ) { $comps = $activeComps; } $pps = array_map(fn($c) => (( 'Closed'===$c['StandardStatus'] ) ? $c['ClosePrice'] : $c['ListPrice']) / max(1, $c['LivingArea']), $comps ); sort($pps); if ( empty($pps) ) { return ['low'=>0,'high'=>0,'ppsqft'=>0]; } $n = count($pps); $q1 = $pps[floor($n/4)]; $q3 = $pps[floor(3*$n/4)]; $iqr = $q3 - $q1; $filtered = array_filter($pps, fn($p) => $p >= ($q1-1.5*$iqr) && $p <= ($q3+1.5*$iqr)); $avg = array_sum($filtered)/max(1,count($filtered)); return [ 'low'=>round($avg*$area*0.9), 'high'=>round($avg*$area*1.1), 'ppsqft'=>round($avg,2) ]; } } /** * Get Bridge estimate for a listing. */ if ( ! function_exists( 'lps_get_bridge_estimate' ) ) { function lps_get_bridge_estimate( WP_REST_Request $r ) { $listing_id = sanitize_text_field( $r->get_param( 'listing_id' ) ); if ( empty( $listing_id ) ) { return new WP_Error( 'no_id', 'Listing ID required', [ 'status' => 400 ] ); } $subject = lps_fetch_subject_property( $listing_id ); if ( is_wp_error( $subject ) ) { return $subject; } $closed = lps_fetch_comparables( 'Closed', $listing_id ); if ( is_wp_error( $closed ) ) { return $closed; } $active = lps_fetch_comparables( 'Active', $listing_id ); if ( is_wp_error( $active ) ) { return $active; } $area = (float) ( $subject['LivingArea'] ?? 1 ); $estimate = lps_compute_estimate( $closed, $area, $active ); return $estimate; } } /** * Fetch schools */ if ( ! function_exists( 'fetch_schools' ) ) { function fetch_schools(WP_REST_Request $req) { global $wpdb; $lat = $req->get_param('lat'); $lon = $req->get_param('lon'); $limit = $req->get_param('limit'); $deg = 50 / 69; // Increased to 50 miles to match JS radius $min_lat = $lat - $deg; $max_lat = $lat + $deg; $min_lon = $lon - ($deg / cos(deg2rad($lat))); $max_lon = $lon + ($deg / cos(deg2rad($lat))); $table = $wpdb->prefix . 'schools'; // Changed to use WP prefix $sql = " SELECT id, SCHOOL, OFFR_DISTRICT, SCHOOL_NAME_LONG, DISTRICT_NAME, GRADE_CODE, TYPE, PHYSICAL_ADDRESS, PHYSICAL_CITY, PHYSICAL_STATE, PHYSICAL_ZIP, PHONE_NUMBER, WEB_ADDRESS, EMAIL_ADDRESS_PRI, PRINCIPAL_TITLE, PRINCIPAL_FIRST, PRINCIPAL_LAST, PRINCIPAL_MI, MAGNET_STATUS, MAGNET_SPECIALTY, MAGNET_PURPOSE, CS_SCHOOL_CHOICE, CHARTER_SCHL_STAT, PRIMARY_SERV_TYPE, COMMENTS,report_grade_2024, LATITUDE AS lat, LONGITUDE AS lon, (3958.8 * ACOS( COS(RADIANS(%f)) * COS(RADIANS(LATITUDE)) * COS(RADIANS(LONGITUDE) - RADIANS(%f)) + SIN(RADIANS(%f)) * SIN(RADIANS(LATITUDE)) )) AS dist FROM {$table} WHERE LATITUDE BETWEEN %f AND %f AND LONGITUDE BETWEEN %f AND %f HAVING dist <= 50 ORDER BY dist LIMIT %d "; $prepared = $wpdb->prepare($sql, $lat, $lon, $lat, $min_lat, $max_lat, $min_lon, $max_lon, $limit); $results = $wpdb->get_results($prepared, ARRAY_A); if ($wpdb->last_error) { error_log('School lookup error: ' . $wpdb->last_error . ' | Query: ' . $prepared); return new WP_Error('db_error', 'Database query failed: ' . $wpdb->last_error, ['status' => 500]); } if (empty($results)) { error_log('No schools found for lat: ' . $lat . ', lon: ' . $lon . ' | Query: ' . $prepared); } error_log('Schools API: Successfully fetched ' . count($results) . ' schools'); return rest_ensure_response(['schools' => $results]); } } /** * REST routes */ add_action('rest_api_init', function(){ register_rest_route('valuation/v1','/token',[ 'methods'=>'GET', 'permission_callback'=>fn()=>true, 'callback'=>fn()=> empty(MIAMIRE_BRIDGE_API_TOKEN) ? new WP_Error('no_token','API token not configured',['status'=>500]) : ['miamire_token'=>sanitize_text_field(MIAMIRE_BRIDGE_API_TOKEN)] ]); register_rest_route('valuation/v1','/subject/(?P[A-Za-z0-9]+)',[ 'methods'=>'GET','permission_callback'=>fn()=>true,'callback'=>'lps_fetch_subject_property' ]); register_rest_route('valuation/v1','/comps/(?PActive|Closed|Rental)/(?P[A-Za-z0-9]+)',[ 'methods'=>'GET','permission_callback'=>fn()=>true, 'callback'=>fn(WP_REST_Request $r)=>lps_fetch_comparables($r->get_param('status'),$r->get_param('listing_id')) ]); register_rest_route('valuation/v1','/rentals/(?P[A-Za-z0-9]+)',[ 'methods'=>'GET','permission_callback'=>fn()=>true,'callback'=>'lps_fetch_rentals' ]); register_rest_route('valuation/v1','/estimate',[ 'methods'=>'GET','permission_callback'=>fn()=>true,'callback'=>'lps_get_bridge_estimate' ]); register_rest_route('schools/v1', '/schools', [ 'methods' => WP_REST_Server::READABLE, 'callback' => 'fetch_schools', 'permission_callback' => '__return_true', 'args' => [ 'lat' => [ 'required' => true, 'validate_callback' => function($param) { return is_numeric($param) && $param >= -90 && $param <= 90; }, 'sanitize_callback' => function($param) { return floatval($param); } ], 'lon' => [ 'required' => true, 'validate_callback' => function($param) { return is_numeric($param) && $param >= -180 && $param <= 180; }, 'sanitize_callback' => function($param) { return floatval($param); } ], 'limit' => [ 'default' => 50, 'validate_callback' => function($param) { return is_numeric($param) && $param > 0 && $param <= 100; }, 'sanitize_callback' => function($param) { return absint($param); } ] ] ]); }); /** * Inject JS config into head */ add_action('wp_head', function(){ if (!lps_should_load()) return; echo ''; echo ''; }); /** * Enqueue assets */ add_action('wp_enqueue_scripts', function(){ if (!lps_should_load()) return; $base = plugin_dir_url(__FILE__) . 'assets/leaflet'; wp_enqueue_script('jquery', false, [], null, false); wp_enqueue_style('leaflet-css', "{$base}/leaflet.min.css", [], '1.9.4'); wp_enqueue_script('leaflet-js', "{$base}/leaflet.min.js", ['jquery'], '1.9.4', true); add_action('wp_footer', function() { echo ""; }); // Add the school search frontend in wp_footer add_action('wp_footer', 'lps_add_school_search_frontend'); }); /** * Add school search frontend HTML and JS */ if ( ! function_exists( 'lps_add_school_search_frontend' ) ) { function lps_add_school_search_frontend() { if (!lps_should_load()) return; ?>
School Search
Image of a school building