File size: 2,746 Bytes
a0a0034 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | // data.js - Mock JSON Database for AI Recommendations
const propertiesDatabase = [
{
id: 1,
title: "شقة فاخرة في تاج سيتي",
type: "Apartment",
price: "٤٬٥٠٠٬٠٠٠",
status: "للبيع",
matchScore: 98,
lat: 30.0682,
lng: 31.3653,
image: "https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=600",
description: "شقة رائعة بالقرب من المدارس الدولية بمساحة 180 متر مربع."
},
{
id: 2,
title: "فيلا في التجمع الخامس",
type: "Villa",
price: "١٢٬٠٠٠٬٠٠٠",
status: "للبيع",
matchScore: 85,
lat: 30.0125,
lng: 31.4552,
image: "https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=600",
description: "فيلا مستقلة بحمام سباحة وحديقة خاصة في شارع التسعين."
},
{
id: 3,
title: "تاون هاوس الشيخ زايد",
type: "Townhouse",
price: "٨٬٢٠٠٬٠٠٠",
status: "للبيع",
matchScore: 82,
lat: 30.0469,
lng: 30.9850,
image: "https://images.unsplash.com/photo-1600607687931-cebf5871f585?w=600",
description: "تاون هاوس حديث بتشطيب الترا سوبر لوكس داخل كمبوند."
},
{
id: 4,
title: "شقة مفروشة في مدينتي",
type: "Apartment",
price: "٣٥٬٠٠٠ / شهر",
status: "للإيجار",
matchScore: 75,
lat: 30.0934,
lng: 31.6222,
image: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=600",
description: "شقة مفروشة بالكامل تطل على الوايد جاردن."
},
{
id: 5,
title: "توين هاوس بالساحل الشمالي",
type: "Twin House",
price: "١٥٬٠٠٠٬٠٠٠",
status: "للبيع",
matchScore: 68,
lat: 30.8250,
lng: 28.9500,
image: "https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=600",
description: "صف أول على البحر بقرية مراسي."
},
{
id: 6,
title: "مكتب إداري بالعاصمة الإدارية",
type: "Commercial",
price: "٣٬١٠٠٬٠٠٠",
status: "للبيع",
matchScore: 60,
lat: 30.0055,
lng: 31.7251,
image: "https://images.unsplash.com/photo-1497366216548-37526070297c?w=600",
description: "مكتب مجهز بالكامل في منطقة الأعمال المركزية."
}
];
|