3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
1/10
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
3 in 1 Infrared Laser Tape Measuring Instrument
1/10

3 in 1 Infrared Laser Tape Measuring Instrument

$59.99
$89.99
Save $30.00
Laser measuring ranges
Please select a laser measuring ranges
Tape measure working ranges
Please select a tape measure working ranges
Color
Please select a color
Quantity
Barcode:

  • TIPS: All goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!!!
  • 😊If you are not satisfied with the goods you received, please contact us within 15 days after receiving, we will give you the best help!
  • 🚢 Shipping>>Worldwide express shipping available.
  • 🔥98.9% of customers buy 2 or more

Imagine effortlessly measuring high ceilings and other hard-to-reach areas with just the touch of a button.

undefined

3 in1 Measurement

The 3-in-1 design includes a laser ranging meter, 5m tape measure, and laser cross-marking tool, making it the perfect tool for any DIY or professional project.

undefined

The backlight feature ensures that you can clearly see the measurements even in dimly lit areas, and with the historical data memory function, you can easily store up to 20 groups of data for future reference.

undefined

All-in-One Tape Measure

Plastic Protective Soft Shell: with high elasticity and toughness, skid resistance, ABS+TPR housing, anti-slip and drop resistance, effective dust-proof, can provide long service time. Ruler belt automatically lock after pulling out, to prevent accidentally injured finger to press the unlock button automatically rebound.

undefined
Whether you're working on pipeline and road engineering or housing and construction projects, this digital measuring tape is perfect for any job. 

undefined

Across Projects

A second speed to get the ranging new way: The measuring tape is used for short distance measurement(5m), laser ranging meter is designed for long-distance measurement up to 60m, and with laser cross-marking function, which provides a nice reference of horizontal and vertical lines for the renovation project.

undefined
Measurement Functions: Single/continuous measurement, area measurement, -volume measurement, and Pythagorean measurement

Specifications

Material: ABS + TPR + Coated Manganese Steel
Battery: 2 * 1.5V AAA Battery (Not included)
Laser Measuring Ranges: 40m, 60m (optional)
Resolution: ±2mm
Measurement Unit: m/in/ft
Laser Type: 635nm≤1mW
Automatic Laser Shutdown Time: 30 seconds
Automatic Shutdown Time: 180 seconds
Data Store: 20 groups
Tape Measure Working Ranges: 0-5m
Minimum Scale: 1mm
Tape Width: 19mm
Unit: Imperial system and metric scale
Ruler Belt Material: 65 Manganese Steel
Working Temperature: 0-40℃
Store Temperature: -10℃ to 50℃

undefined

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.