{"id":8,"date":"2021-02-13T11:32:05","date_gmt":"2021-02-13T03:32:05","guid":{"rendered":"https:\/\/lansonplace.com\/waterfrontsuites\/?page_id=8"},"modified":"2025-04-30T11:34:51","modified_gmt":"2025-04-30T03:34:51","slug":"contact-us","status":"publish","type":"page","link":"https:\/\/lansonplace.cn\/waterfrontsuites\/contact-us\/","title":{"rendered":"Get in Touch"},"content":{"rendered":"\n<div class=\"wp-block-client-inner content-block-inner\"><div class=\"content-block-inner-wrapper\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">Online Enquiry<\/h2>\n\n\n\n<p>We will get back to your online enquiry in a timely manner.<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-contact-form-7-contact-form-selector\"><script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_6' >\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_6'  action='\/waterfrontsuites\/wp-json\/wp\/v2\/pages\/8' data-formid='6' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_6' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_6_18\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-third gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-select is-large\"  ><label class='gfield_label gform-field-label' for='input_6_18'>Title<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_18' id='input_6_18' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Mr.' >Mr.<\/option><option value='Mrs.' >Mrs.<\/option><option value='Miss.' >Miss.<\/option><option value='Ms.' >Ms.<\/option><\/select><\/div><\/div><div id=\"field_6_16\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-text is-large\"  ><label class='gfield_label gform-field-label' for='input_6_16'>First Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_6_16' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_17\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-text is-large\"  ><label class='gfield_label gform-field-label' for='input_6_17'>Last Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_17' id='input_6_17' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_4\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-email is-large\"  ><label class='gfield_label gform-field-label' for='input_6_4'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_4' id='input_6_4' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_6_5\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-half field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-phone is-large\"  ><label class='gfield_label gform-field-label' for='input_6_5'>Phone<\/label><div class='ginput_container ginput_container_phone'><input name='input_5' id='input_6_5' type='tel' value='' class='large'    aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_6_3\" class=\"gfield gfield--type-textarea gfield--input-type-textarea field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-textarea is-medium\"  ><label class='gfield_label gform-field-label' for='input_6_3'>Message<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_3' id='input_6_3' class='textarea medium'   maxlength='600'   aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_6_9\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-html is-large\"  ><p>* Required<\/p><\/div><fieldset id=\"field_6_15\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-consent is-large\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Consent<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_15.1' id='input_6_15_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_6_15_1' ><div>I agree to the <font size=\"3px\"><a href=\"https:\/\/lansonplace.cn\/privacy-policy\/\">Privacy Policy<\/a><\/font> of Lanson Place and all of its locations.<\/div><\/label><input type='hidden' name='input_15.2' value='&lt;div&gt;I agree to the &lt;font size=&quot;3px&quot;&gt;&lt;a href=&quot;https:\/\/lansonplace.cn\/privacy-policy\/&quot;&gt;Privacy Policy&lt;\/a&gt;&lt;\/font&gt; of Lanson Place and all of its locations.&lt;\/div&gt;' class='gform_hidden' \/><input type='hidden' name='input_15.3' value='4' class='gform_hidden' \/><\/div><\/fieldset><div id=\"field_6_19\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_19'>Name<\/label><div class='gfield_description' id='gfield_description_6_19'>This field is for validation purposes and should be left unchanged.<\/div><div class='ginput_container'><input name='input_19' id='input_6_19' type='text' value='' autocomplete='new-password'\/><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_6' class='gform_button button gform-button--width-full' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit Enquiry'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_6' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_6' id='gform_theme_6' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_6' id='gform_style_settings_6' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_6' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='6' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_6' value='WyJ7XCIxOFwiOltcImQwODg4M2ExMTgzZWI2NTFmYzFmMjA5NWNhMWQxOWY1XCIsXCJmODhjYjliOWM0OWNmNjU3MjZjMTFiNDYxOGFhMjc4YVwiLFwiZjdlYTliMjNiMzI3N2FmNjQyZjIxYzhmMDk5ZmYxMDlcIixcImFkZWI2ODM1OGUxMmQzYzUyNzI3ZTBjYzVlNGQ1MThjXCJdLFwiMTUuMVwiOlwiMDc4MDVkM2I1OTgyYjFhMTBmODcyZmViYTU4OWE1NDRcIixcIjE1LjJcIjpcIjQwZmRlMDJkYmIyZGUzODMyZDlmZTNkMzU5ZTk0ZDg4XCIsXCIxNS4zXCI6XCI5NDZkY2YxMjY5YjI4MWZhN2ZiZjNhZGQ0YzE4NWQ1ZlwifSIsIjg3MTY0NzgxNTI1NzAxNDRkNWJiMTliYWJhNTY2ODg5Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_6' id='gform_target_page_number_6' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_6' id='gform_source_page_number_6' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 6, 'https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_6').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_6').val();gformInitSpinner( 6, 'https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_6').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"6\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_6\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_6\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_6\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 6, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n<\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Getting to Lanson Place Waterfront Suites<\/h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p>Start your Hong Kong adventure at Lanson Place Waterfront Suites. We are conveniently located in Sai Wan Ho and easily accessible via the subway, ferry, car or taxi. We look forward to welcoming you.<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<div class=\"wp-block-client-contact-card\">\n<p><strong><em>Lanson Place Waterfront Suites, Hong Kong<\/em><\/strong><br>1 Oi Tak Street, Shau Kei Wan, Hong Kong<\/p>\n\n\n\n<p>T: +852 2178 2288<br>F: +852 2178 2882<br>E: enquiry.wfhk@lansonplace.com<\/p>\n\n\n\n<p><a href=\"https:\/\/lansonplace.cn\/waterfrontsuites\/contact-us\/map-wfhk\/\" target=\"_blank\" rel=\"noreferrer noopener\">Location Map<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">MTR<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sai Wan Ho MTR station:<br>350m<\/li>\n\n\n\n<li>Shau Kei Wan MTR station:<br>550m<\/li>\n<\/ul>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Ferry<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sai Wan Ho Ferry Pier: 6 minutes<br>500m<\/li>\n\n\n\n<li>Kwun Tong: 30 minutes<\/li>\n<\/ul>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Car<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Quarry Bay: 5 minutes<\/li>\n\n\n\n<li>Causeway Bay: 15 minutes<\/li>\n\n\n\n<li>Admiralty\/Wanchai: 16 minutes<\/li>\n\n\n\n<li>Central: 20 minutes<\/li>\n<\/ul>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Hong Kong International Airport<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Taxi: 50 minutes<\/li>\n\n\n\n<li>Bus: 80\u201390 minutes<\/li>\n\n\n\n<li>MTR: 60 minutes<\/li>\n<\/ul>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-client-map mapbox mapbox-single\" data-latitude=\"22.2829055\" data-longitude=\"114.2259025\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to Hong Kong! Let us know how we can help you. Our team at Lanson Place Waterfront Suites is always ready to support you at any stage of your journey. Get in touch with us online or contact us directly at +852 2178 2288.<\/p>\n","protected":false},"author":5,"featured_media":632,"parent":0,"menu_order":60,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-8","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Get in Touch | Lanson Place Waterfront Suites<\/title>\n<meta name=\"description\" content=\"Get in touch with us online or contact us directly for any inquiries. Our Lanson Place team is here to support you before, during and after your stay with us.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lansonplace.cn\/waterfrontsuites\/contact-us\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get in Touch | Lanson Place Waterfront Suites\" \/>\n<meta property=\"og:description\" content=\"Get in touch with us online or contact us directly for any inquiries. Our Lanson Place team is here to support you before, during and after your stay with us.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lansonplace.cn\/waterfrontsuites\/contact-us\/\" \/>\n<meta property=\"og:site_name\" content=\"Lanson Place Waterfront Suites\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-30T03:34:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"626\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/\",\"url\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/\",\"name\":\"Get in Touch | Lanson Place Waterfront Suites\",\"isPartOf\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg\",\"datePublished\":\"2021-02-13T03:32:05+00:00\",\"dateModified\":\"2025-04-30T03:34:51+00:00\",\"description\":\"Get in touch with us online or contact us directly for any inquiries. Our Lanson Place team is here to support you before, during and after your stay with us.\",\"breadcrumb\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#primaryimage\",\"url\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg\",\"contentUrl\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg\",\"width\":2400,\"height\":626},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get in Touch\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/#website\",\"url\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/\",\"name\":\"Lanson Place Waterfront Suites\",\"description\":\"Lanson Place Waterfront Suites | Hong Kong Island Serviced Apartments\",\"publisher\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/#organization\",\"name\":\"Lanson Place Waterfront Suites\",\"url\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/\",\"logo\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#local-main-organization-logo\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#local-main-organization-logo\",\"url\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/logo-wfhk.svg\",\"contentUrl\":\"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/logo-wfhk.svg\",\"width\":143,\"height\":64,\"caption\":\"Lanson Place Waterfront Suites\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get in Touch | Lanson Place Waterfront Suites","description":"Get in touch with us online or contact us directly for any inquiries. Our Lanson Place team is here to support you before, during and after your stay with us.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lansonplace.cn\/waterfrontsuites\/contact-us\/","og_locale":"en_GB","og_type":"article","og_title":"Get in Touch | Lanson Place Waterfront Suites","og_description":"Get in touch with us online or contact us directly for any inquiries. Our Lanson Place team is here to support you before, during and after your stay with us.","og_url":"https:\/\/lansonplace.cn\/waterfrontsuites\/contact-us\/","og_site_name":"Lanson Place Waterfront Suites","article_modified_time":"2025-04-30T03:34:51+00:00","og_image":[{"width":2400,"height":626,"url":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/","url":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/","name":"Get in Touch | Lanson Place Waterfront Suites","isPartOf":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#primaryimage"},"image":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#primaryimage"},"thumbnailUrl":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg","datePublished":"2021-02-13T03:32:05+00:00","dateModified":"2025-04-30T03:34:51+00:00","description":"Get in touch with us online or contact us directly for any inquiries. Our Lanson Place team is here to support you before, during and after your stay with us.","breadcrumb":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#primaryimage","url":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg","contentUrl":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/waterfront-suites_panorama-1.jpg","width":2400,"height":626},{"@type":"BreadcrumbList","@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/lansonplace.cn\/waterfrontsuites\/"},{"@type":"ListItem","position":2,"name":"Get in Touch"}]},{"@type":"WebSite","@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/#website","url":"https:\/\/lansonplace.cn\/waterfrontsuites\/","name":"Lanson Place Waterfront Suites","description":"Lanson Place Waterfront Suites | Hong Kong Island Serviced Apartments","publisher":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lansonplace.cn\/waterfrontsuites\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Organization","Place"],"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/#organization","name":"Lanson Place Waterfront Suites","url":"https:\/\/lansonplace.cn\/waterfrontsuites\/","logo":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#local-main-organization-logo"},"image":{"@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#local-main-organization-logo"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"opens":"09:00","closes":"17:00"}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/lansonplace.cn\/waterfrontsuites\/sc\/contact-us\/#local-main-organization-logo","url":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/logo-wfhk.svg","contentUrl":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-content\/uploads\/sites\/2\/logo-wfhk.svg","width":143,"height":64,"caption":"Lanson Place Waterfront Suites"}]}},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/pages\/8","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/comments?post=8"}],"version-history":[{"count":3,"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/pages\/8\/revisions"}],"predecessor-version":[{"id":1649,"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/pages\/8\/revisions\/1649"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/media\/632"}],"wp:attachment":[{"href":"https:\/\/lansonplace.cn\/waterfrontsuites\/wp-json\/wp\/v2\/media?parent=8"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}