EN PL ES
Reservar Visita
Plot

Plot in Benahavís

Benahavís Centro, Benahavís , Malaga

1,200,000€

Listed: 17 February 2026

Plot in Benahavís
+2 fotos

Descripción

Excellent comercial building plot in a unique strategic place at the entrance of town.
Located at the entrance of the well known mountain village of benahavis, unbeatable position.

Technical Detalles

0 m²

Área

0

Bedhabitaciones

0

Bathhabitaciones

7000 m²

Plot

Amenities

Ubicación

Mortgage Calculator

Deposit amount:
Monthly payment:

Interested?

Contacto us to get more information about this property.

Teléfono

+44 20 1234 5678

Correo Electrónico

info@tripinvestuk.co.uk

function updateDepositAmount() { const propertyPrice = 1200000.00; const depositPercent = parseFloat(document.getElementById('deposit_percent').value) / 100; const depositAmount = propertyPrice * depositPercent; const displaySpan = document.getElementById('deposit_amount_display'); displaySpan.textContent = depositAmount.toLocaleString() + ' EUR'; } function calculateMortgage() { const propertyPrice = 1200000.00; const depositPercent = parseFloat(document.getElementById('deposit_percent').value) / 100; const loanAmount = propertyPrice * (1 - depositPercent); const years = parseInt(document.getElementById('loan_years').value); const annualRate = parseFloat(document.getElementById('interest_rate').value); const monthlyRate = annualRate / 12; const numPayments = years * 12; const monthlyPayment = loanAmount * (monthlyRate * Math.pow(1 + monthlyRate, numPayments)) / (Math.pow(1 + monthlyRate, numPayments) - 1); const resultDiv = document.getElementById('monthly_payment_result'); const amountSpan = document.getElementById('monthly_amount'); amountSpan.textContent = Math.round(monthlyPayment).toLocaleString() + ' EUR/month'; resultDiv.style.display = 'block'; // Update deposit amount display updateDepositAmount(); } // Dynamiczne obliczanie przy zmianie wartości document.addEventListener('DOMContentLoaded', function() { const loanYearsSelect = document.getElementById('loan_years'); const interestRateSelect = document.getElementById('interest_rate'); const depositPercentSelect = document.getElementById('deposit_percent'); if (loanYearsSelect && interestRateSelect && depositPercentSelect) { loanYearsSelect.addEventListener('change', calculateMortgage); interestRateSelect.addEventListener('change', calculateMortgage); depositPercentSelect.addEventListener('input', calculateMortgage); // Oblicz przy ładowaniu strony updateDepositAmount(); calculateMortgage(); } });