1-Bedroom Apartment Opposite Albert Park Lake Positioned in the premier Queens Domain building, this one-bedroom apartment presents an opportunity to experience a sophisticated city-edge way of life. Inside this spacious and well-thought-out apartment, you will find: – Spacious bedroom with built-in robes – Stunning and functional Italian kitchen with European appliances – Large balcony – Security video entry system along with keyless entry Residents will love the resort style building facilities which include a rooftop garden, heated indoor swimming pool, gymnasium, concierge and a residents' lounge with free Wi-Fi and kitchen facilities. Step out the front door to St Kilda Road trams, stroll to Fawkner Park, Albert Park Lake or even the beach and enjoy a host of amenities including the Arts Precinct, CBD, Chapel Street, South Yarra, St Kilda or even South Melbourne all available within minutes. Features Balcony Built In Robes Ground pool Gym Unfurnished 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_6a6a80c001d9a', { 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.84071680, 144.97477810], markerOptions); markerGroup.addLayer(marker); map.fitBounds(markerGroup.getBounds()); // Only set the default Zoom if there is only one marker map.setZoom(17);