SOARING VICTORIA POINT LUXURY WITH SPECTACULAR PANORAMIC VIEWS An unforgettable lifestyle opportunity awaits at 3308/100 Harbour Esplanade, Docklands! Elevated high within the prestigious Victoria Point building, this beautifully appointed corner residence captures breathtaking panoramic views stretching across Marvel Stadium, the CBD skyline, Victoria Harbour and Port Phillip Bay. Showcasing an expansive design, abundant natural light and a coveted winter garden, this exceptional apartment is perfectly suited to discerning owner-occupiers, professionals and investors seeking premium waterfront living. Floor-to-ceiling glazing frames the ever-changing cityscape from the spacious open-plan living and dining domain, while the enclosed winter garden creates a versatile space to entertain or simply unwind above the city. The sleek stone kitchen is beautifully appointed with quality appliances and generous storage, complementing two well-proportioned bedrooms, including a privately zoned main suite with ensuite. A second stylish bathroom, secure car accommodation and an intelligent floorplan complete a residence that effortlessly combines sophistication with everyday functionality. Please contact Serena Su on 0499 083 362 or Ricky Li on 0487 888 873 to discuss this property further. Location .leaflet-pane, .leaflet-map-pane { z-index: 40; } .leaflet-top, .leaflet-bottom { z-index: 80; } // The default zoom control location is top-left, but the legacy React component had it top-right // There is no simple way to 'move' the default zoom control here, so initilizing map without it // and then adding new controls to top-right var map = L.map('map_6a5a96da6fedc', { zoomControl: false }); map.addControl( L.control.zoom({position: 'topright'}) ) map.scrollWheelZoom.disable(); // Stadiamaps as the provider L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png', { maxZoom: 20, }).addTo(map); // Create a feature group to hold the markers var markerGroup = new L.FeatureGroup(); map.addLayer(markerGroup); // Custom icon that matches legacy React component and allows for colouring const markerHtmlStyles = `background-color: #08282e; width: 3rem; height: 3rem; display: block; left: -1.5rem; top: -1.5rem; position: relative; border-radius: 3rem 3rem 0; transform: rotate(45deg); border: 1px solid #FFFFFF`; const icon = L.divIcon({ className: "my-custom-pin", iconAnchor: [0, 24], labelAnchor: [-6, 0], popupAnchor: [0, -36], html: `<span style="${markerHtmlStyles}" />` }); // add the markers var markerOptions = { icon: icon } var marker = L.marker([-37.81823715, 144.94705166], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);