Skip to content
GEOFIX NYA WEBBSHOP ÄR HÄR - klicka hĂ€r för att fĂ„ information om hur du som redan Ă€r Geofix kund kommer Ă„t ditt webbkonto
GEOFIX NYA WEBBSHOP ÄR HÄR - klicka hĂ€r för att fĂ„ information om hur du som redan Ă€r Geofix kund kommer Ă„t ditt webbkonto

Batteries for instruments

Filters

Leica GEB212 Battery

Original price €274,95 - Original price €274,95
Original price €274,95
€274,95
€274,95 - €274,95
Current price €274,95

Leica GEB212 Battery Leica Original GEB212 (replaces GEB211) High-quality battery with more capacity for control unit (handset) and GNSS rec...

View full details

Leica GEB334 Battery

Original price €327,95 - Original price €327,95
Original price €327,95
€327,95
€327,95 - €327,95
Current price €327,95

Leica GEB334 Battery Has replaced GEB331 and GEB333 which have been discontinued Original Li-Ion battery for field computer Leica CS20 L...

View full details

Leica GEB111 Battery

Original price €231,95 - Original price €231,95
Original price €231,95
€231,95
€231,95 - €231,95
Current price €231,95

Leica GEB111 Battery Leica Original GEB111 NiMH battery Low maintenance battery for TPS400/800 and DNA instruments NiMh 6.0V / 2.1Ah.

Leica GEB242 Battery

Original price €518,95 - Original price €518,95
Original price €518,95
€578,95
€578,95 - €578,95
Current price €578,95

Leica GEB242 Battery Leica Original GEB242 Li-Ion Battery High quality battery for TS60 and MS60 Instruments, 14.8V / 5.8Ah

GEB121 Battery NiMH

Original price €333,95 - Original price €333,95
Original price €333,95
€333,95
€333,95 - €333,95
Current price €333,95

Leica GEB121 GEB 121 NiMH camcorder battery for TPS 400, 700, 800,1100, RCS 1100, GPS500, GS50, DNA03/10 Leica GEB121 NiMH, built-in battery 6...

View full details

Leica GEB373 Battery

Original price €906,95 - Original price €906,95
Original price €906,95
€906,95
€906,95 - €906,95
Current price €906,95

Leica GEB373 Battery Leica GEB373 External battery for longer-term establishment. Technical specification Voltage: 14.4 Volts Energy ...

View full details

Replacement battery for NEDO LumiScale,

Original price €507,95 - Original price €507,95
Original price €507,95
€507,95
€507,95 - €507,95
Current price €507,95

Replacement battery for NEDO LumiScale, NiMH 14.4V, 2,500 mAh

Leica GEB63 Battery Box

Original price €1.466,95 - Original price €1.466,95
Original price
€1.466,95
€1.466,95 - €1.466,95
Current price €1.466,95

Leica GEB63 Battery Box Battery box for eyepiece and eyepiece lamp for automatic cooling. Leica GOA2 Autocollimation eyepiece and 394787 GEB...

View full details

GEB364 Battery int Li-Ion 10.8V/6900mAh

Original price €500,95 - Original price €500,95
Original price
€500,95
€500,95 - €500,95
Current price €500,95

GEB364 Battery int Li-Ion 10.8V/6900mAh

GEB363 Battery int Li-Ion 10.8V/6900mAh

Original price €357,95 - Original price €357,95
Original price
€357,95
€357,95 - €357,95
Current price €357,95

GEB363 Battery int Li-Ion 10.8V/6900mAh Li-Ion battery for RTC360 scanner and Flexline total stations 10.8 V/6900MAH (905307)

Leica GEB361 Battery

Original price €310,95 - Original price €310,95
Original price €310,95
€310,95
€310,95 - €310,95
Current price €310,95

Leica GEB361 Battery Low maintenance battery for FlexLine Series total stations Li-Ion 11.1V/5600mAh

*/ (function () { window.dataLayer = window.dataLayer || []; const CONFIG = { CURRENCY: "SEK", // LĂ€gg gĂ€rna till/justera selektorer om ditt tema anvĂ€nder andra element CHECKOUT_BUTTON_SELECTORS: [ 'button[name="checkout"]', 'input[name="checkout"]', 'form[action*="/checkout"] [type="submit"]', 'a[href*="/checkout"]' ] }; function fetchCart() { return fetch('/cart.js', { credentials: 'same-origin' }) .then(r => r.json()) .catch(() => null); } function mapItems(cart) { if (!cart || !Array.isArray(cart.items)) return []; return cart.items.map((it, idx) => ({ item_id: String(it.variant_id || it.id || it.sku || ''), item_name: it.product_title || it.title || '', item_brand: 'Geofix AB', item_variant: it.variant_title || '', price: (typeof it.final_price === 'number' ? it.final_price : it.price || 0) / 100, quantity: it.quantity || 1, index: idx + 1 })); } function totalValue(items) { return items.reduce((s, i) => s + (Number(i.price) || 0) * (Number(i.quantity) || 0), 0); } function isCheckoutClick(target) { if (!target) return false; // trĂ€ff pĂ„ definierade selektorer for (const sel of CONFIG.CHECKOUT_BUTTON_SELECTORS) { if (target.closest(sel)) return true; } // fallback: formulĂ€r som postar till /checkout const form = target.closest('form'); if (form && /\/checkout/i.test(form.action || '')) return true; return false; } // Lyssna brett i capture-fasen sĂ„ vi hinner hĂ€mta vagnen innan redirect document.addEventListener('click', function (e) { const el = e.target; if (!isCheckoutClick(el)) return; // HĂ€mta /cart.js och pusha begin_checkout snabbt innan sidan lĂ€mnas fetchCart().then(cart => { const items = mapItems(cart); const value = totalValue(items); window.dataLayer.push({ event: 'begin_checkout', ecommerce: { currency: CONFIG.CURRENCY, value: value, items: items } }); }); // Ingen preventDefault – lĂ„t redirect ske normalt }, true); // Extra sĂ€kerhet: lyssna Ă€ven pĂ„ submit (t.ex. enter-tryck i formulĂ€r) document.addEventListener('submit', function (e) { const form = e.target; if (!form) return; if (!/\/checkout/i.test(form.action || '')) return; fetchCart().then(cart => { const items = mapItems(cart); const value = totalValue(items); window.dataLayer.push({ event: 'begin_checkout', ecommerce: { currency: CONFIG.CURRENCY, value: value, items: items } }); }); }, true); })();