$(document).ready(function() {
$('.thumbs').on('click', '.remaining:not(".open-video")', function(event) {
event.preventDefault();
setTimeout(function () {
MagicZoom.expand('zoom');
}, 300);
setTimeout(function () {
MagicZoom.switchTo('zoom',8);
}, 1000);
});
});
Caratteristiche del prodotto:
Robusto e affidabile - Ideale per l'uso esterno
Ideale per l'uso all'aperto grazie a un robusto alloggiamento con protezione da polvere e spruzzi d'acqua (IP 54)
Lente luminosa per un'eccellente lettura del personale di misura
Trasporto sicuro grazie al dispositivo di bloccaggio del compensatore
Collimatore target per un allineamento approssimativo. Pentaprisma per una buona leggibilità della livella circolare
Immagine verticale
Ampia manopola di messa a fuoco per un facile allineamento
Lente luminosa per un'immagine nitida del bersaglio (asta di misura)
Regolazione infinita dei gradi/angoli r Frizione scorrevole
Dati tecnici:
Unità di misura 360 gradi
Ingrandimento 20 x
Precisione di livellamento 3 mm a 30 m
Campo di lavoro fino a 60 m
Protezione da polvere e spruzzi d'acqua IP 54
Temperatura di esercizio -10 - 50°C
Temperatura di stoccaggio -20 - 70°C
Peso, circa 1,5 kg
Contenuto della fornitura:
1x strumento di livellamento ottico Bosch GOL 20 D Professional
1x mandrino di regolazione
1x chiave a brugola
1x valigetta di trasporto (1 600 A00 0LF)
1x protezione per lenti
1x piombino
- Manufacturer
- Robert Bosch Power Tools GmbH
-
Max-Lang-Str. 40-46,
70771 Leinfelden-Echterdingen,
Deutschland
- https://www.bosch-pt.com
- 0711/8110
GOL 20 D Bosch Strumento di livellamento ottico professionale in set con valigetta da artigiano

160,99 €
Ceres::Template.crossPriceRRP
-34%
inkl. MwSt., ggf. zzgl. Versandkosten
Ceres::Template.singleItemContent
1
const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "31764e32e8a74cde83431c5c5e0c13f7");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "31764e32e8a74cde83431c5c5e0c13f7");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
- EXPRESS mit UPS NEXT DAY möglich Bei Bestellung mit Zahlungseingang vor 12 Uhr, Aufpreis: 9,99€ (Zustellung Mo.-Fr.)
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});