function eplGalleryResizePlayer(ratio) {
var iframes = jQuery('.pswp__container').find('iframe');
var width = 0;
ratio = ratio || 9 / 16;
if( iframes.length > 0 ) {
jQuery('.pswp__container').find('.pswp__item').each( function() {
if( null != jQuery(this).find('.pswp__img').width() ) {
width = jQuery(this).find('.pswp__img').width();
}
});
iframes.each(function () {
var current = jQuery(this);
var height = width * ratio;
console.log([width,height]);
current.width(width).height(height);
});
}
}
function eplgallery_init_opts(index = 0) {
window.eplGallery = document.querySelectorAll('.pswp')[0];
window.eplGalleryItems = [{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/175880025680938071-rsd.jpg","w":1152,"h":868,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/175880025680938071-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/176100797471466158-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/176100797471466158-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/176100796414187745-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/176100796414187745-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/175284069966735136-rsd.jpg","w":1588,"h":964,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/175284069966735136-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/175284069917778851-rsd.jpg","w":1632,"h":991,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/175284069917778851-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407592398156076-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407592398156076-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166299650390-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166299650390-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166397718279-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166397718279-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166505866931-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166505866931-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166144264026-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166144264026-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166437488858-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407166437488858-rsd.jpg","title":"","type":"image"},{"src":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407592305575148-rsd.jpg","w":1920,"h":1280,"thumb":"https:\/\/domainpropertygroup.com.au\/wp-content\/uploads\/2025\/12\/174407592305575148-rsd.jpg","title":"","type":"image"}];
window.eplGalleryOptions = {
// optionName: 'option value'
// for example:
index: index // start at first slide
};
window.eplGallery = new PhotoSwipe(eplGallery, PhotoSwipeUI_Default, eplGalleryItems, eplGalleryOptions);
eplGallery.init();
eplGallery.listen('afterInit', function () {
eplGalleryResizePlayer(9/16);
});
eplGallery.listen('beforeChange', function () {
var currItem = jQuery(eplGallery.currItem.container);
jQuery('.pswp__video').removeClass('active');
var currItemIframe = currItem.find('.pswp__video').addClass('active');
jQuery('.pswp__video').each(function () {
if (!jQuery(this).hasClass('active')) {
jQuery(this).find('iframe').each(function() {
var src = jQuery(this).attr('src');
src = src.replace(/[\?&]autoplay=1/g, '');
jQuery(this).attr('src', src);
});
}
});
eplGalleryResizePlayer(9/16);
});
eplGallery.listen('close', function () {
jQuery('.pswp__video').each(function () {
jQuery(this).find('iframe').each(function() {
var src = jQuery(this).attr('src');
src = src.replace(/[\?&]autoplay=1/g, '');
src = src + '?autoplay=0';
jQuery(this).attr('src', src );
console.log(src);
});
});
console.log('closed');
});
}
function trigger_autoplay_event() {
jQuery(document).on('click', '.epl-gallery-overlay', function(e) {
let slide = jQuery(this).closest('.pswp__zoom-wrap').find('.pswp__video');
let iframe = slide.find("iframe")[0];
let src = iframe.src;
if (src.indexOf('autoplay=') !== -1) {
src = src.replace(/autoplay=\d/g, function(match) {
return match === 'autoplay=0' ? 'autoplay=1' : 'autoplay=0';
});
} else {
src += (src.includes('?') ? '&' : '?') + 'autoplay=1';
}
iframe.src = src;
console.log('trigerred video');
});
}
jQuery('document').ready( function() {
trigger_autoplay_event();
eplGalleryResizePlayer(9 / 16);
jQuery(window).bind("load", handle_resize);
jQuery(window).bind("resize", handle_resize);
jQuery(window).bind("orientationchange", handle_resize);
function handle_resize() {
eplGalleryResizePlayer(9 / 16);
console.log( 'resized');
}
});
Experience elevated luxe living in this stunning 2 bedroom, 2 bathroom apartment with allocated secure car parking space, set within the prestigious Vue Mer development.
Boasting impressive water views and a sleek, modern design, this residence offers a luxurious lifestyle in the heart of Gosford city. Enjoy world-class amenities and a front-row seat to the natural beauty that defines this sought-after location.
Apartment Highlights:
Open Plan Living: A spacious, free-flowing layout seamlessly connects the kitchen, dining, and living areas, ...
Read More
Experience elevated luxe living in this stunning 2 bedroom, 2 bathroom apartment with allocated secure car parking space, set within the prestigious Vue Mer development.
Boasting impressive water views and a sleek, modern design, this residence offers a luxurious lifestyle in the heart of Gosford city. Enjoy world-class amenities and a front-row seat to the natural beauty that defines this sought-after location.
Apartment Highlights:
Open Plan Living: A spacious, free-flowing layout seamlessly connects the kitchen, dining, and living areas, ideal for entertaining or relaxing.
Stunning Views: Floor-to-ceiling windows showcase panoramic views of Brisbane Waters to the south and untouched bushland to the north
Gourmet Kitchen: Featuring natural stone benchtops, engineered timber floors, and premium 900mm Franke appliances including gas stove and integrated dishwasher, this stylish and functional kitchen is a culinary centrepiece.
Serene Bedrooms: Enjoy peaceful retreats with plush carpet, cosy furnishings, and some bedrooms opening onto private balconies with spectacular views.
Exclusive Resident Amenities:
> Indoor heated pool and sauna for year-round relaxation
> State-of-the-art gym and shared workspace for convenience
> Rooftop yoga space, bar, dining area, and cinema for unparalleled leisure and entertainment
Prime Location:
> 100m to Shopping Centre
> 100m to Bus Stop
> 350m to Gosford Train Station
> 700m to Gosford Hospital
> 900m to Gosford Waterfront
Investment Potential:
Gosford is a thriving hub with significant government investment in health, education, and infrastructure. With growing employment opportunities in key sectors like healthcare and public services, this is a smart investment for future growth.
Seize the opportunity to own a luxurious yet affordable apartment in Vue Mer.
DISPLAY SUITE ON SITE: Contact us today to arrange an inspection.
Disclaimer: We have obtained all information herein from sources we believe to be reliable; however, we cannot guarantee its accuracy. Prospective purchasers are advised to carry out their own investigations.
Read Less