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

Cradles / Holders

Filters

Leica GHT66 holder for CS20

Original price €172,95 - Original price €172,95
Original price €172,95
€172,95
€172,95 - €172,95
Current price €172,95

Leica GHT66 holder for CS20 Description: Adjustable holder/cradle for CS20 handheld computer

Cradle & rod holder, complete set

Original price €118,95 - Original price €118,95
Original price €118,95
€118,95
€118,95 - €118,95
Current price €118,95

Cradle & rod holder, complete set This set includes a cradle and rod holder. Fits the Nautiz X8. Rod holder: 25mm - 39mm Cradle: Width...

View full details

Adapter CS10/15/20 with 1.5" ball

Original price €91,95 - Original price €91,95
Original price €91,95
€91,95
€91,95 - €91,95
Current price €91,95

Adapter CS10/15/20 with 1.5" ball Combines with the following Leica GHT holders to fit, for example, Sacci carrying solutions with RAM ball: ...

View full details

Cradle to TSC3

Original price €141,95 - Original price €141,95
Original price €141,95
€141,95
€141,95 - €141,95
Current price €141,95

Cradle to TSC3 The Claw™ is a new and improved clamping system with an innovative clamping device that holds your expensive hardware/handset ti...

View full details

Leica GHT39 Holder

Original price €62,95 - Original price €62,95
Original price
€62,95
€62,95 - €62,95
Current price €62,95

Leica GHT39 Holder Handset 1200 Leica Original GHT39 Holder for handheld unit 1200. For attaching to GHT63 Rod mount on 25 mm plumb rods.

Cradle for Topcon GMS-2

Original price €100,95 - Original price €100,95
Original price €100,95
€100,95
€100,95 - €100,95
Current price €100,95

Cradle for Topcon GMS-2 Topcon GMS-2 handheld attachment

Offset rod holder kit

Original price €269,95 - Original price €269,95
Original price €269,95
€269,95
€269,95 - €269,95
Current price €269,95

Offset rod holder kit With the Seco Survey Offset Pole Holder Kit (#5198-157), you can perform difficult measurements and/or stay out of da...

View full details

Leica GHT62 holder for CS10 & CS15

Original price €256,95 - Original price €256,95
Original price
€256,95
€256,95 - €256,95
Current price €256,95

Leica GHT62 holder for CS10 & CS15 Description: Leica GHT62 Holder/cradle for the CS10 and CS15 field controller.

RAM X-Grip Holder Universal for 12" Tablets

Original price €171,95 - Original price €171,95
Original price €171,95
€171,95
€171,95 - €171,95
Current price €171,95

RAM X-Grip Holder Universal for 12" Tablets Spring-loaded X-design Great holding power without hiding your tablet Fits most 12" tablets ...

View full details

Cradle for Juniper Archer

Original price €135,95 - Original price €135,95
Original price
€135,95
€135,95 - €135,95
Current price €135,95

Cradle for Juniper Archer A new and improved clamping system that holds your handheld securely to the pole without crushing it. Made of durable...

View full details

GHT64 holder for GFU/GSM on a plumb line

Original price €194,95 - Original price €194,95
Original price
€194,95
€194,95 - €194,95
Current price €194,95

GHT64 holder for GFU/GSM on a plumb line Holds GFU or GSM modem with strong Velcro fastening. Mounts on all GMSS poles.

Cradle for Ranger/TSCE/Q100

Original price €108,95 - Original price €108,95
Original price
€108,95
€108,95 - €108,95
Current price €108,95

Cradle for Ranger/TSCE/Q100 A bracket/cradle to attach to the handset in combination with series 5198... Made of black anodized aluminum. Wi...

View full details
*/ (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); })();