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

Other consoles

Filters

Instrument panel

Original price €125,95 - Original price €125,95
Original price €125,95
€125,95
€125,95 - €125,95
Current price €125,95

Instrument panel Material: aluminum 3 countersunk holes with diameter 10mm

Sleeve for polygon shovel

Original price €44,95 - Original price €44,95
Original price €44,95
€44,95
€44,95 - €44,95
Current price €44,95

Sleeve for polygon shovel Material: brass 0.2 m. Fits polygon shovel 1541. Also available in acid-resistant material. Contact us for more...

View full details

Fixed wall bracket 400mm

Original price €253,95 - Original price €253,95
Original price €253,95
€253,95
€253,95 - €253,95
Current price €253,95

Fixed wall bracket 400mm Wall bracket for measuring instruments, such as total stations Distance to wall 400mm Also available in 500, 600...

View full details

Tripod head / instrument plate in brass 5/8'' male

Original price €113,95 - Original price €113,95
Original price €113,95
€113,95
€113,95 - €113,95
Current price €113,95

Tripod head / instrument plate in brass 5/8'' male For embedding in concrete. Ø 160 mm x 20 mm, 5/8" thread. Choose with or without pro...

View full details

Centering bolt for 14A and 14B brass

Original price €12,95 - Original price €12,95
Original price €12,95
€12,95
€12,95 - €12,95
Current price €12,95

Centering bolt for 14A and 14B brass, 5/8" male thread, incl. M8x40 fixing screw Centering bolt for column head end plate 14A and 14B, brass, 5...

View full details

Polygon shovel with instrument plate

Original price €620,95 - Original price €620,95
Original price €620,95
€620,95
€620,95 - €620,95
Current price €620,95

Polygon shovel / Bolin shovel with instrument plate The polygon shovel or Bolin shovel is used in narrow passages in connection with road and...

View full details

Monitoring house

Original price €410,95 - Original price €410,95
Original price €410,95
€410,95
€410,95 - €410,95
Current price €410,95

Monitoring housing, Protective cover Height of housing: 530 mm Inner diameter of housing: 392 mm Weather and anti-vandal protection hood fo...

View full details

Pillar bracket with three brackets

Pillar bracket with three brackets Three brackets with external 5/8'' thread at the top Screws at the bottom ensure a firm, unshakable posi...

View full details

Instrument plate with steel tips

Original price €166,95 - Original price €166,95
Original price
€166,95
€166,95 - €166,95
Current price €166,95

Instrument plate with steel tips The plate has three sturdy steel spikes for fixing on flat surfaces.

Transport bag for 3 polygon shovels

Original price €303,95 - Original price €303,95
Original price €303,95
€303,95
€303,95 - €303,95
Current price €303,95

Transport bag for 3 polygon shovels Robust storage of polygon shovels

Column clamp Seco Heavy-Duty

Original price €682,95 - Original price €682,95
Original price €682,95
€682,95
€682,95 - €682,95
Current price €682,95

Column clamp Seco Heavy-Duty SECO's Heavy-Duty Pillar Clamp has a solid, stable design and works with all 5/8x11 instruments. The adjustabl...

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); })();