Your real estate agent for Aachen, Heinsberg, Jülich, Eschweiler (2024)

Table of Contents
Awards Client testimonials

Your real estate agent for Aachen, Heinsberg, Jülich, Eschweiler (1)

')); vpAutocompletePlugin.mapbox.geocoder.addTo('#mapbox-geocoder'); $('#mapbox-geocoder').remove(); vpAutocompletePlugin.popup.init = function() { if(vpAutocompletePlugin.popup.isRunning) { return false; } vpAutocompletePlugin.popup.isRunning = true; $('#search_input').on('input', function() { vpAutocompletePlugin.popup.destroy(); if($.trim($('#search_input').val()).length > 2) { if(vpAutocompletePlugin.popup.debounce.autocompleteTimer) { window.clearTimeout(vpAutocompletePlugin.popup.debounce.autocompleteTimer); } vpAutocompletePlugin.popup.debounce.autocompleteTimer = window.setTimeout(function() { vpAutocompletePlugin.popup.status = 'active'; let userInputTxt = $.trim($('#search_input').val()); if(['Tenerif', 'Teneriff', 'Teneriffa'].includes(userInputTxt)) { // bugfix for searching city "Teneriffa" vpAutocompletePlugin.run_time_data.placePredictions = [{ bbox: [-17.1464829, 28.2925823, -17.1464829, 28.2925823], center: [-17.1464829, 28.2925823], geometry: { coordinates: [-17.1464829, 28.2925823], type: 'Point' }, id: '', language: 'de', 'language_de-DE': 'de', 'matching_place_name': 'Teneriffa, Spanien', 'place_name': 'Teneriffa, Spanien', 'place_name_de-DE': 'Teneriffa, Spanien', }]; vpAutocompletePlugin.popup.open(vpAutocompletePlugin.run_time_data.placePredictions, userInputTxt.length); }else { vpAutocompletePlugin.mapbox.geocoder._geocode(userInputTxt).then(results => { if(results.body.features.length > 0) { vpAutocompletePlugin.run_time_data.placePredictions = []; for(let i = 0; i < results.body.features.length; ++i) { /** * Removing non-existent address * locality.225913414 (Marbella, Luque, Córdoba, Spanien) * locality.225921606 (Marbella, Sanlúcar de Barrameda, Provinz Cádiz, Spanien) */ if(!['locality.225913414', 'locality.225921606'].includes($.trim(results.body.features[i].id))) { vpAutocompletePlugin.run_time_data.placePredictions.push(results.body.features[i]); } } vpAutocompletePlugin.popup.open(vpAutocompletePlugin.run_time_data.placePredictions, userInputTxt.length); } }).catch(vpAutocompletePlugin.popup.failureCallback); } $("#search_input").click(function() { $("#search_input").val(''); $("#loc_lat").val(''); $("#loc_long").val(''); }); /* $("#search_input").blur(function(e) { if((typeof(e.relatedTarget) === 'undefined' || e.relatedTarget === null) || (e.relatedTarget !== null && typeof(e.relatedTarget) !== 'undefined' && e.relatedTarget.className !== 'popup-result-itm')){ vpAutocompletePlugin.popup.clickOnePrediction(0); } }); */ }, 500); } /*else if(vpAutocompletePlugin.popup.status == 'active') { $('#search_input').replaceWith($('#search_input').clone()); let content = $('#search_input').val(); $('#search_input').focus().val('').val(content); window.searchBox = null; vpAutocompletePlugin.popup.init(); vpAutocompletePlugin.popup.status = 'inactive'; }*/ }); } vpAutocompletePlugin.popup.failureCallback = function() {} vpAutocompletePlugin.popup.open = function(res, l) { let p = res; if(p.length > 0) { vpAutocompletePlugin.popup.indexMax = p.length - 1; vpAutocompletePlugin.popup.html = '

'; for(let i = 0; i < p.length; ++i) { vpAutocompletePlugin.popup.html += ''; vpAutocompletePlugin.popup.html += ''; vpAutocompletePlugin.popup.html += p[i].place_name.substring(0,l); vpAutocompletePlugin.popup.html += ''; vpAutocompletePlugin.popup.html += p[i].place_name.substring(l,p[i].place_name.length); vpAutocompletePlugin.popup.html += ''; } vpAutocompletePlugin.popup.html += '

'; $('#search-area-1 form#searchForm #search-form-wrapper #searchbox_wrapper').append(vpAutocompletePlugin.popup.html); $('#expose-search-layer-for-mobile-wrapper #search-form-wrapper #searchbox_wrapper').append(vpAutocompletePlugin.popup.html.replace(/vp-custom-autocomplete-dropdown desktop/g, 'vp-custom-autocomplete-dropdown mobile')); } } vpAutocompletePlugin.popup.clickOnePrediction = function(idx) { if(idx == '-1') { idx = 0; } if($('#search_input').val() !== '') { vpAutocompletePlugin.popup.resultClick = true; let placePrediction = vpAutocompletePlugin.run_time_data.placePredictions[idx]; $("#loc_lat").val(placePrediction.geometry.coordinates[1]); $("#loc_long").val(placePrediction.geometry.coordinates[0]); $('#search_input').val(placePrediction.place_name); vpAutocompletePlugin.popup.destroy(); } } vpAutocompletePlugin.popup.destroy = function() { $('#apple-dropdown.vp-custom-autocomplete-dropdown.desktop').remove(); $('.vp-custom-autocomplete-dropdown.mobile').remove(); } vpAutocompletePlugin.popup.stop = function() { $('#search_input').replaceWith($('#search_input').clone()); vpAutocompletePlugin.popup.isRunning = false; } vpAutocompletePlugin.popup.isRunning = false; vpAutocompletePlugin.popup.indexSelected = -1; vpAutocompletePlugin.popup.indexMax = 4; vpAutocompletePlugin.popup.indexMin = 0; vpAutocompletePlugin.popup.setKeyEvent = function() { $('#search_input').keyup(function(e){ if(e.keyCode == 38) { // key up if(vpAutocompletePlugin.popup.indexSelected > vpAutocompletePlugin.popup.indexMin) { vpAutocompletePlugin.popup.indexSelected--; }else { vpAutocompletePlugin.popup.indexSelected = vpAutocompletePlugin.popup.indexMin; } }else if(e.keyCode == 40) { // key down if(vpAutocompletePlugin.popup.indexSelected < vpAutocompletePlugin.popup.indexMax) { vpAutocompletePlugin.popup.indexSelected++; }else { vpAutocompletePlugin.popup.indexSelected = vpAutocompletePlugin.popup.indexMax; } }else if(e.keyCode == 13) { // key enter if(vpAutocompletePlugin.popup.indexSelected < 0) { vpAutocompletePlugin.popup.indexSelected = 0; } vpAutocompletePlugin.popup.clickOnePrediction(vpAutocompletePlugin.popup.indexSelected); $('#searchForm').submit(); } // change the background color of option if(e.keyCode == 38 || e.keyCode == 40) { //console.log(vpAutocompletePlugin.popup.indexSelected); $('#apple-dropdown.desktop a.popup-result-itm').each(function(i, elm){ if(i === vpAutocompletePlugin.popup.indexSelected) { //console.log(elm); $(elm).addClass('active'); }else { $(elm).removeClass('active'); } }); } }); } vpAutocompletePlugin.popup.setKeyEvent(); $("#search_input").blur(function(e) { if((typeof(e.relatedTarget) === 'undefined' || e.relatedTarget === null) || (e.relatedTarget !== null && typeof(e.relatedTarget) !== 'undefined' && e.relatedTarget.className !== 'popup-result-itm')){ vpAutocompletePlugin.popup.clickOnePrediction(vpAutocompletePlugin.popup.indexSelected); } }); window.searchBox = null; //addSearchBox("search_input"); vpAutocompletePlugin.popup.init(); //$('#searchForm').on('submit', onSubmit); }) .fail(function( jqxhr, settings, exception ) { console.log('mapbox-gl-geocoder.min.js failing to load.'); }); }) .fail(function( jqxhr, settings, exception ) { console.log('mapbox-gl.js failing to load.'); }); } $(document).ready(function(){ setTimeout(function(){ importMapboxLibrary(); }, 500); });

Aachen, the imperial city in the heart of Europe, is the westernmost major city in Germany and part of the border triangle of Germany, the Netherlands and Belgium. Even the Romans recognized the locational advantages of its central European location, scenic beauty and cultural diversity.

The history of Aachen, shaped by Charlemagne, who is commemorated every year by the awarding of the Charlemagne Prize, the scientific University of Aachen and the varied regional cultural offerings ensure a high quality of life. The historic old town with its town hall and cathedral attracts many visitors every year. Renowned large companies such as Zentis, Generali, Lambertz, Lindt and Grünenthal use the advantages of this location for themselves and their employees.

There are good transport connections thanks to the A 46 Düsseldorf - Liège and A 4 Cologne - Maastricht freeways, the ICE Cologne - Brussels line and Aachen-Maastricht Airport.

Would you like to buy a house or apartment in Aachen? Or are you planning to sell your property through a competent estate agent? As real estate consultants and experts for the real estate market in Aachen, we are your reliable partner for real estate brokerage in Aachen - locally and nationwide. We are also available to you as real estate agents in Heinsberg, Jülich, Eschweiler, Stolberg, Hückelhoven and the surrounding area. We offer owners a free property valuation.

For you in the best locations - your competent real estate agent for Aachen will be happy to advise you!



Awards

ImmoScout24 Gold Partner

We are proud to be a Gold Partner of ImmoScout24. This seal stands for our outstanding quality and reliability in the real estate sector. As a Gold Partner, we benefit from exclusive advantages such as preferential placement and special marketing tools that enable us to market your property faster and more effectively. You can rely on our many years of experience and our commitment to your success.

F.A.Z. Institute: "Germany's most desirable employers 2024"

VON POLL IMMOBILIEN receives the "Germany's most desirable employer 2024" award from the F.A.Z. Institute, part of the renowned Frankfurter Allgemeine Zeitung. With the highest score of 100 points, VON POLL IMMOBILIEN emerged as the winner in the "Real Estate Agents" category. Among other things, job security, salary structure, development and training opportunities as well as additional benefits were examined.



Client testimonials

Nachdem ich schon vor etwa 3Jahren sehrgute Erfahrungen mit Mitarbeiterinnen der Immobilienmaklerfirma von Poll gemacht hatte, habe ich mich Anfang dieses Jahres erneutfür von Poll entschieden. Dieses Mal hatte ich ein Anliegen, dasvon der Aachener Niederlassung bearbeitet wurde. Und wieder einmal war ich restlos zufrieden:Professionalität, Verlässlichkeit und Sachlichkeit - alles stimmte!Die Aachener Mitarbeiterin,Frau Angelina Esser, hat mich überzeugt mit ihrer Kompetenz und darüber hinausmit ihrercharmanten und sympathischen Art jedes Treffen und alle E-Mail-Kontakte zu einer angenehmen Begenung gemacht.

Elisabeth N.

Herr Lehnen hat unsere Immobilie zu unserer vollsten Zufriedenheit angeboten. Durch sein kompetentes Verkaufsverhalten und nach Abschluss der Verhandlungen, danken wir ihn sehr, durch seine Bemühungen, uns bei unseren Fragen und Entscheidungen behilflich gewesen zu sein.

Marita K.

Wir wurden vor, während und vor allem auch nach dem Hausverkauf in allen Belangen professionell und freundlich beraten und unterstützt. Dabei wurden unsere Erwartungen übertroffen! Es wurde alles (für Laien) verständlich erläutert, sodass der Prozess nachvollziehbar war. Das hat uns in unseren Entscheidungen große Sicherheit gegeben. Auch über den eigentlichen Verkauf hinaus wurden wir unterstützt! Wir bedanken uns vor allem ganz herzlich bei Herr Ceelen und können seine Person nur weiterempfehlen!

Jennifer E.

Ehrliche, freundliche, professionelle Beratung und schnelle Umsetzung. Die kurzen Kommunikationswege waren sehr erleichternd und angenehm. Ich kann Von Poll Immobilien nur wärmstens empfehlen, wirklich hervorragende Arbeit, gerade im Vergleich zu Mitbewerbern. Herzlichen Dank!

Vanessa D.

Das Maklerbüro Von Poll und die Maklerin Frau Hochschon zeigten eine überzeugende Marktkenntnis und eine gute überregionale Vernetzung. Die Besichtigungstermine wurden professionell vorbereitet und durchgeführt. Wir würden von Poll jederzeit wieder beauftragen.

Stefan K.

Wir bedanken uns bei Herrn Goldbeck, für die kompetente Abwicklung des Verkaufes. er hat wieder einmal bewiesen, dass wir unsVon Poll Immobilien anvertrauen können. Alle Fragen und Termine wurden sofort aufgenommen und beantwortet. Herzlichen Dank!

Annemarie B.

Your real estate agent for Aachen, Heinsberg, Jülich, Eschweiler (2024)
Top Articles
The 16 BEST Things to Do in Red Deer
Dafont.com English
Thor Majestic 23A Floor Plan
Horoscopes and Astrology by Yasmin Boland - Yahoo Lifestyle
Watch Mashle 2nd Season Anime Free on Gogoanime
San Diego Terminal 2 Parking Promo Code
Pj Ferry Schedule
Gameday Red Sox
Midway Antique Mall Consignor Access
Ncaaf Reference
Gina's Pizza Port Charlotte Fl
Epaper Pudari
Elle Daily Horoscope Virgo
What is a basic financial statement?
Craigslist Greenville Craigslist
Mid90S Common Sense Media
Wordscape 5832
Assets | HIVO Support
Med First James City
Trini Sandwich Crossword Clue
Radio Aleluya Dialogo Pastoral
Games Like Mythic Manor
Munich residents spend the most online for food
Les Rainwater Auto Sales
Pricelinerewardsvisa Com Activate
Wal-Mart 140 Supercenter Products
Wicked Local Plymouth Police Log 2022
Der Megatrend Urbanisierung
Convert 2024.33 Usd
Yakimacraigslist
Graphic Look Inside Jeffrey Dahmer
Today Was A Good Day With Lyrics
Like Some Annoyed Drivers Wsj Crossword
Sandals Travel Agent Login
Airg Com Chat
The Rise of "t33n leaks": Understanding the Impact and Implications - The Digital Weekly
Khatrimmaza
Autotrader Bmw X5
Adecco Check Stubs
404-459-1280
Trebuchet Gizmo Answer Key
What Are Digital Kitchens & How Can They Work for Foodservice
Nobodyhome.tv Reddit
Bones And All Showtimes Near Johnstown Movieplex
Taylor University Baseball Roster
The Conners Season 5 Wiki
Energy Management and Control System Expert (f/m/d) for Battery Storage Systems | StudySmarter - Talents
Winta Zesu Net Worth
Powerspec G512
FedEx Authorized ShipCenter - Edouard Pack And Ship at Cape Coral, FL - 2301 Del Prado Blvd Ste 690 33990
Christie Ileto Wedding
18 Seriously Good Camping Meals (healthy, easy, minimal prep! )
Latest Posts
Article information

Author: Twana Towne Ret

Last Updated:

Views: 6247

Rating: 4.3 / 5 (64 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Twana Towne Ret

Birthday: 1994-03-19

Address: Apt. 990 97439 Corwin Motorway, Port Eliseoburgh, NM 99144-2618

Phone: +5958753152963

Job: National Specialist

Hobby: Kayaking, Photography, Skydiving, Embroidery, Leather crafting, Orienteering, Cooking

Introduction: My name is Twana Towne Ret, I am a famous, talented, joyous, perfect, powerful, inquisitive, lovely person who loves writing and wants to share my knowledge and understanding with you.