Your real estate agent for Lübeck - VON POLL IMMOBILIEN (2024)

Your real estate agent for Lübeck - VON POLL IMMOBILIEN (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); });

In the northernmost state of Germany, in Schleswig-Holstein, lies the Hanseatic city of Lübeck. The silhouette of the city is determined by seven church towers, therefore Lübeck bears the nickname 'city of seven towers'. The landmark of Lübeck is the Holsten Gate, a city gate in the center of the city, built in late Gothic style. In the immediate vicinity of the Holsten Gate are the former salt warehouses. They testify to Lübeck's past as an important center of the salt trade.

Today, the Hanseatic city is also known as a manufacturing site of marzipan. Lübeck is also the hometown of the German writer Thomas Mann and the main setting of the novel 'The Buddenbrooks'. The Buddenbrookhaus houses a museum dedicated to the literary work and the Mann family. The historic old town, dominated by traditional brick architecture, parts of which were added to the UNESCO World Heritage List in 1987, offers everything that makes modern city life possible: numerous cafes and bistros, markets and specialty stores, as well as a wide range of cultural activities.

The river Trave flows through the city, which flows into the Baltic Sea half an hour away from Lübeck -in Travemünde. With its white beach and maritime flair, the Baltic resort of Travemünde is a popular destination.

For you in the best locations - your competent real estate agent in Lübeck will be happy to advise you!



Awards

Capital Broker Compass 2023: 5-star broker award

In the Capital Broker Compass 2023, VON POLL IMMOBILIEN once again receives the highest score - a total of 134 locations are awarded the rating of 5-star broker. Thus VON POLL IMMOBILIEN stands out once again as the brokerage with the most awarded locations among all analyzed real estate service providers. Also VON POLL IMMOBILIEN Lübeck belongs to the distinguished locations and thus to the best brokers of the region.

In a two-stage test procedure Capital evaluated already for the tenth time - together with Scope Fund Analysis and the IIB Institut - the achievements of 20,127 real estate agents in 161 German cities. The criteria assessed were qualification, process quality, exposé and contract as well as customer service.

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.


Your real estate agent for Lübeck - VON POLL IMMOBILIEN (2024)

References

Top Articles
John Collison Fiance
Eldiablo_Ent
Jail Inquiry | Polk County Sheriff's Office
Bild Poster Ikea
123Movies Encanto
Busted Newspaper Zapata Tx
Atvs For Sale By Owner Craigslist
Professor Qwertyson
Dr Doe's Chemistry Quiz Answer Key
Puretalkusa.com/Amac
Crazybowie_15 tit*
Heska Ulite
Which aspects are important in sales |#1 Prospection
The Wicked Lady | Rotten Tomatoes
What Does Dwb Mean In Instagram
Buying risk?
Help with Choosing Parts
Craigslist Pets Athens Ohio
Patrick Bateman Notebook
Mzinchaleft
Parent Resources - Padua Franciscan High School
Urban Airship Expands its Mobile Platform to Transform Customer Communications
China’s UberEats - Meituan Dianping, Abandons Bike Sharing And Ride Hailing - Digital Crew
If you bought Canned or Pouched Tuna between June 1, 2011 and July 1, 2015, you may qualify to get cash from class action settlements totaling $152.2 million
라이키 유출
Living Shard Calamity
Low Tide In Twilight Ch 52
Danielle Ranslow Obituary
Devotion Showtimes Near Regency Buenaventura 6
Dove Cremation Services Topeka Ks
Egusd Lunch Menu
Section 408 Allegiant Stadium
Dl.high Stakes Sweeps Download
Die wichtigsten E-Nummern
Mrstryst
Everstart Jump Starter Manual Pdf
Cross-Border Share Swaps Made Easier Through Amendments to India’s Foreign Exchange Regulations - Transatlantic Law International
Omnistorm Necro Diablo 4
ATM Near Me | Find The Nearest ATM Location | ATM Locator NL
Htb Forums
B.C. lightkeepers' jobs in jeopardy as coast guard plans to automate 2 stations
Stewartville Star Obituaries
Walmart Pharmacy Hours: What Time Does The Pharmacy Open and Close?
Arigreyfr
Joey Gentile Lpsg
Tattoo Shops In Ocean City Nj
Espn Top 300 Non Ppr
Mail2World Sign Up
Doelpuntenteller Robert Mühren eindigt op 38: "Afsluiten in stijl toch?"
Wild Fork Foods Login
Noelleleyva Leaks
How Did Natalie Earnheart Lose Weight
Latest Posts
Article information

Author: Clemencia Bogisich Ret

Last Updated:

Views: 6199

Rating: 5 / 5 (80 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Clemencia Bogisich Ret

Birthday: 2001-07-17

Address: Suite 794 53887 Geri Spring, West Cristentown, KY 54855

Phone: +5934435460663

Job: Central Hospitality Director

Hobby: Yoga, Electronics, Rafting, Lockpicking, Inline skating, Puzzles, scrapbook

Introduction: My name is Clemencia Bogisich Ret, I am a super, outstanding, graceful, friendly, vast, comfortable, agreeable person who loves writing and wants to share my knowledge and understanding with you.