MR D.I.Y. TRADING (SINGAPORE) PTE. LTD. (2024)

search

StoresCountries

You can click on the "Accept Cookies" option to allow the use of analytics cookies specified in the Cookie Policy

' + // "

Uluru, also referred to as Ayers Rock, is a large " + // "sandstone rock formation in the southern part of the " + // "Northern Territory, central Australia. It lies 335km (208mi) " + // "south west of the nearest large town, Alice Springs; 450km " + // "(280mi) by road. Kata Tjuta and Uluru are the two major " + // "features of the Uluru - Kata Tjuta National Park. Uluru is " + // "sacred to the Pitjantjatjara and Yankunytjatjara, the " + // "Aboriginal people of the area. It has many springs, waterholes, " + // "rock caves and ancient paintings. Uluru is listed as a World " + // "Heritage Site.

" + // '

Attribution: Uluru, ' + // "https://en.wikipedia.org/w/index.php?title=Uluru " + // "(last visited June 22, 2009).

" + // "

${location[0]}

Address

${location[3] ? location[3] : '-' }

MR D.I.Y. TRADING (SINGAPORE) PTE. LTD. (1) MR D.I.Y. TRADING (SINGAPORE) PTE. LTD. (2)

Contact Number

${location[4] ? location[4] : '-' }

Business Hour

${location[5] ? location[5] : '-' }

`; marker.addListener("click", () => { $('.store').removeClass('active show'); $('.storelisting-' + i).addClass('active'); markers.forEach(function(marker) { marker.setIcon(defaultIcon); }) if ($(window).width() > 768) { infowindow.setContent(contentString) infowindow.open({ anchor: marker, map, }); } marker.setIcon(currentIcon); map.panTo(marker.getPosition()); map.setZoom(15); }); }); $(".store").on("click", function() { $('.store').removeClass('active show'); var laLatLng = new google.maps.LatLng($(this).data('lat'), $(this).data('lng')); markers.forEach(function(marker) { marker.setIcon(defaultIcon); }) map.setCenter(laLatLng); $(this).addClass('active show'); new google.maps.event.trigger(markers[$(this).data('id')], 'click'); markers[$(this).data('id')].setIcon(currentIcon); }); } function initBoundMarkers(map) { let bounds = map.getBounds(), count = 0, sortedClosestMarkers = find_closest_markers(); $('.store').removeClass('first show active').removeAttr('style'); for (let i = 0; i < sortedClosestMarkers.length; i++) { const marker = sortedClosestMarkers[i].marker, distance = sortedClosestMarkers[i].distance * 0.001, mapinfo = $('.storelisting-' + marker.index); marker.setIcon(defaultIcon); if (bounds.contains(marker.getPosition()) === true) { mapinfo.css('order', count).addClass('show'); //nearest marker add class first if (mapinfo.css('order') == 0) { mapinfo.addClass('first') } //set current marker markers[$('.store.show.first').data('id')].setIcon(currentIcon); mapinfo.show(); mapinfo.find('.distance').text(distance.toFixed(2)) count++; } else { mapinfo.hide() } } //nearest marker add class active //$('.store.show.first').addClass('active'); $('.store-count').text(count); new google.maps.event.trigger(markers[$('.store.show.first').data('id')], 'click'); } function updateBoundMarkers() { var bounds = map.getBounds(), count = 0, sortedClosestMarkers = find_closest_markers(); for (var i = 0; i < sortedClosestMarkers.length; i++) { const marker = sortedClosestMarkers[i].marker, distance = sortedClosestMarkers[i].distance * 0.001, mapinfo = $('.storelisting-' + marker.index); if (bounds.contains(marker.getPosition()) === true) { mapinfo.css('order', count).addClass('show'); mapinfo.show(); count++; mapinfo.find('.distance').text(distance.toFixed(2)) } else { mapinfo.hide(); } } $('.store-count').text(count); } // function calcDistance(fromLatLng, toLatLng) { // return (google.maps.geometry.spherical.computeDistanceBetween(fromLatLng, toLatLng) / 1000).toFixed(2); // } // function degreesToRadians(degrees) { // return degrees * Math.PI / 180; // } // function getDistanceBetweenPoints(lat1, lng1, lat2, lng2) { // // The radius of the planet earth in meters // let R = 6378137; // let dLat = degreesToRadians(lat2 - lat1); // let dLong = degreesToRadians(lng2 - lng1); // let a = Math.sin(dLat / 2) * // Math.sin(dLat / 2) + // Math.cos(degreesToRadians(lat1)) * // Math.cos(degreesToRadians(lat1)) * // Math.sin(dLong / 2) * // Math.sin(dLong / 2); // let c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); // let distance = R * c; // return distance * 0.001; // } function find_closest_markers(n) { var markers_distances = []; for (i = 0; i < markers.length; i++) { var d = google.maps.geometry.spherical.computeDistanceBetween(markers[i].position, curPos); markers_distances[i] = { distance: d, marker: markers[i] } } var closest_markers = markers_distances.sort((a, b) => { return a.distance - b.distance }).slice(0, n) return closest_markers.map((item) => { return item }) } function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition((position) => { if (curPosMarker) { curPosMarker.setMap(null); } userIcon = { url: 'https://www.mrdiy.com/sg/public/img/mrdiy/current-position.png', // This marker is 20 pixels wide by 32 pixels high. scaledSize: new google.maps.Size(42, 42), // The origin for this image is (0, 0). origin: new google.maps.Point(0, 0), // The anchor for this image is the base of the flagpole at (0, 32). anchor: new google.maps.Point(0, 42), }; const bounds = new google.maps.LatLngBounds(); var pos = { lat: position.coords.latitude, lng: position.coords.longitude }; curPosMarker = new google.maps.Marker({ position: pos, icon: userIcon, map }); curPos = new google.maps.LatLng(pos); //map.setZoom(15); //map.setCenter(pos); bounds.extend(curPos); bounds.extend(find_closest_markers(1)[0].marker.getPosition()); map.fitBounds(bounds); google.maps.event.addListenerOnce(map, 'idle', function() { initBoundMarkers(map); }); //map.panTo(find_closest_markers(1)[0].marker.getPosition()) }, () => { alert('Unable to locate your current location. Please allow your location settings and try again.') //handleLocationError(true, infoWindow, map.getCenter()); }); } else { alert('Unable to locate your current location. Please check your location settings and try again.') // Browser doesn't support Geolocation //handleLocationError(false, infoWindow, map.getCenter()); } } document.getElementById('search-location-btn').onclick = function() { var input = document.getElementById('search-input'); google.maps.event.trigger(input, 'focus', {}); google.maps.event.trigger(input, 'keydown', { keyCode: 13 }); google.maps.event.trigger(this, 'focus', {}); };

MR D.I.Y. TRADING (SINGAPORE) PTE. LTD. (2024)

FAQs

What is the unique selling point of Mr. DIY? ›

DIY ONLINE Unique Selling Propositions ] : 1) Enjoy FREE shipping for limited time only, the standard delivery lead time will be between 2-4 days. 2) MR. DIY Guarantee which allows 7 days exchange and refund.

What is the financial performance of Mr. DIY? ›

Mr D.I.Y. Group (M) Berhad reported earnings results for the first quarter ended March 31, 2024. For the first quarter, the company reported sales was MYR 1,143.05 million compared to MYR 1,046.4 million a year ago. Net income was MYR 144.88 million compared to MYR 127.77 million a year ago.

What is the capex for Mr. DIY? ›

The average MR DIY store has a capex of RM600k followed by an additional RM900k for inventories. Due to the traffic seen at Mid-Valley since reopening of the economy, we understand that payback for the DIY Plus store is likely at 12-18 months (vs the 24 months for other stores).

What is the nature of business of Mr. DIY? ›

D.I.Y., is a home improvement retailer owned by Malaysian company Mr D.I.Y. Group (M) Berhad, headquartered in Selangor, Malaysia. It offers home improvement products for do-it-yourself through its network of shops and online stores.

Why is Mr. DIY so successful? ›

So what makes Mr. DIY successful? They offer a wide range of high-quality products at a low price.

Who is the target audience of Mr DIY? ›

With its headquarters in Malaysia, the company has a strong presence not only in its home country but also in other Southeast Asian countries like Thailand, Indonesia, and Singapore. Mr D.I.Y. Group primarily caters to budget-conscious customers who seek affordable and quality products for their everyday needs.

Is Mr. DIY a good company? ›

Ratings distribution

MR. DIY has an employee rating of 3.5 out of 5 stars, based on 26 company reviews on Glassdoor which indicates that most employees have a good working experience there.

Is Mr. DIY profitable? ›

Mr DIY chalked in the first quarter ended March 31 (1Q24) revenue of RM1. 1bil and core net profit of RM144. 8mil. “This accounted for 22% of ours and 23% of consensus full year forecasts which we deem to be broadly in line,” Hong Leong Investment Bank Research said.

What is the strategy of Mr. DIY? ›

CGS-CIMB Research said MR DIY's private label strategy allowed it to expand its private label offerings and stock-keeping units into new product categories. “Its basket size increased from the pre-pandemic level of RM22. 2 in FY19 to RM25. 5 in the third quarter of 2023.

How big is the market of Mr DIY? ›

As of July 2024 Mr D.I.Y. Group has a market cap of $4.16 Billion. This makes Mr D.I.Y. Group the world's 3002th most valuable company by market cap according to our data.

Who is the investor of Mr DIY? ›

Shareholders: Mr D.I.Y. Group (M)
NameEquities%
Bee Family Ltd. 50.89 %4,809,544,15050.89 %
Employees Provident Fund 6.715 %634,679,0006.715 %
Platinum Alphabet Sdn. Bhd. 6.092 %575,763,6006.092 %
Yew Teik Tan 3.919 %370,417,1473.919 %
1 more row

What is the price earning ratio of Mr DIY? ›

According to Mr D.I.Y. Group's latest financial reports and stock price the company's current price-to-earnings ratio (TTM) is 37.7613. At the end of 2022 the company had a P/E ratio of 39.8.

Who is the sister company of Mr. DIY? ›

MR. DOLLAR - a subsidiary company of MR D.I.Y Group (M) Berhad - was inspired by the dollar-store concept which focus on a lower fixed price bracket that could helps people to get the best value for each penny.

Why invest in Mr. DIY? ›

The listed company will have a market capitalisation of RM10 billion at the offer price of RM1. 60. At this price, its shares are valued at 31.5 times trailing earnings. This is a rich price-to-earnings valuation by almost all yardsticks — sold on the premise of its considerable growth potential.

Who is the CEO of Mr. DIY? ›

CEO/Executive Director, MR DIY GROUP M BHD.

What is the unique selling point of a product? ›

A unique selling point (USP), also called a unique selling proposition, is the essence of what makes your product or service better than competitors. In online marketing, communicating your USP clearly and quickly is one of the keys to getting potential customers to convert on your site.

What is the unique selling point of myself? ›

What is a USP? It is a frequently used marketing term, used to describe the feature that makes a product, service, business or person different. Your USP will take the place of your personal statement, and its message should be short and precise, focused on who you are and what you offer.

What is the positioning of Mr DIY brand? ›

DIY BRAND is designed and carefully produced to cater to today's households. The products are specially made to produce in their highest quality at reasonable prices, accessible for all. With value for money in hand and staying true to our brand promise of 'Always Low Prices', MR.

What is the achievement of Mr DIY? ›

MALAYSIA'S home improvement retailer Mr DIY Group has won its fourth Frost & Sullivan Award in the Best Practices 2023 Malaysia Home Improvement Retail Industry Company of the Year category.

Top Articles
4 Ways to Save on Taxes When Selling Property | Entrepreneur
Abundance and Money Set Point | Karmic Ally Coaching
Joy Ride 2023 Showtimes Near Movie Tavern Little Rock
9294164879
Jin Wigs Thomaston Ga
Jimmy Johns Delivery Hours
Between Friends Comic Strip Today
Equinox 63Rd Street Class Schedule Pdf
Delta Air Lines - Login
Barbershops near me in Jupiter
Best Bread for Gut Health
La Fitness Oxford Valley Class Schedule
How To Get To Brazil In Slap Battles
Craigslist Shallotte
How Nora Fatehi Became A Dancing Sensation In Bollywood 
Saltburn | Rotten Tomatoes
Toothio Login
My Eschedule Greatpeople Me
Are Crazyjamjam Leaks Real or Fake?
Bx11
Sufficient Velocity Quests
Autotrader Ford Ranger
CHERIE FM en direct et gratuit | Radio en ligne
12 Best Junk Removal in Jackson, MS
Aleksandr: Name Meaning, Origin, History, And Popularity
Cato's Dozen Crossword
Eureka Mt Craigslist
Rugged Gentleman Barber Shop Martinsburg Wv
Kemono Party Only Fans
The Civil Rights Movement Crossword Review Answer Key
Perfect Coffee Shop Recipe Cool Math Games
How Much Is 10000 Nickels
Hanging Hyena 4X4
The 10 Craigslist Guys You’ll Live With in DC
Stellaris Resolution
4156303136
Osceola County Addresses Growth with Updated Mobility Fees
Miracle Child Brandon Lake Chords
Fuzz Bugs Factory Number Bonds
What Is Opm1 Treas 310 Deposit
Mathews Vertix Mod Chart
Lifetime Benefits Login
Mazda 6 GG/GG1; GY/GY1 2.3 MPS Test : MPSDriver
Sparkle Nails Phillipsburg
Nurselogic Testing And Remediation Beginner
Steel Punchings For Sale
Morphe Aventura Mall
Auctionzipauctions
Rs3 Master Hidey Holes
O'reilly's Covington Tennessee
Omaha World-Herald from Omaha, Nebraska
Latest Posts
Article information

Author: Aron Pacocha

Last Updated:

Views: 6023

Rating: 4.8 / 5 (48 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Aron Pacocha

Birthday: 1999-08-12

Address: 3808 Moen Corner, Gorczanyport, FL 67364-2074

Phone: +393457723392

Job: Retail Consultant

Hobby: Jewelry making, Cooking, Gaming, Reading, Juggling, Cabaret, Origami

Introduction: My name is Aron Pacocha, I am a happy, tasty, innocent, proud, talented, courageous, magnificent person who loves writing and wants to share my knowledge and understanding with you.