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

Carbon fiber rods

Filters

Carbon fiber pole 2 m, telescopic

Original price €296,95 - Original price €296,95
Original price €296,95
€296,95
€296,95 - €296,95
Current price €296,95

Carbon fiber pole 2 m, telescopic Telescopic carbon fiber pole with snap and screw lock combination. Locking at 1.6 m, 1.8 m, and 2.0 m. The p...

View full details

Carbon fiber pole 2 m, telescopic GPS pole

Original price €297,95 - Original price €297,95
Original price €297,95
€297,95
€297,95 - €297,95
Current price €297,95

Carbon fiber pole 2 m, telescopic GPS pole Telescopic carbon fiber pole with snap and screw lock combination. Locking at 1.6 m, 1.8 m, and 2.0...

View full details

GPS pole extender 1 meter

Original price €162,95 - Original price €162,95
Original price €162,95
€162,95
€162,95 - €162,95
Current price €162,95

GPS pole extender 1 meter 5/8 female at the bottom and 5/8 male at the top means that it is easy to add more extensions one after the other. ...

View full details

Leica GLS30 Carbon fiber pole, telescopic

Original price €721,95 - Original price €721,95
Original price €721,95
€721,95
€721,95 - €721,95
Current price €721,95

Leica GLS30 Carbon fiber pole, telescopic GLS30 Fiberglass telescopic pole for GNSS 5/8 mount Carbon fiber pole with snap lock at 2.0m & 1....

View full details

GPS pole extension 1m carbon fiber

Original price €154,95 - Original price €154,95
Original price €154,95
€154,95
€154,95 - €154,95
Current price €154,95

GPS pole extension 1m carbon fiber Length: 1m Material: carbon fiber 5/8 female at the bottom and 5/8 male at the top Easy to add more ...

View full details

Carbon fiber pole 2 m, 2 sections

Original price €237,95 - Original price €237,95
Original price €237,95
€237,95
€237,95 - €237,95
Current price €237,95

Carbon fiber pole 2 m, 2 sections 2-part carbon fiber rod. The rod has a built-in spirit level and is made of carbon fiber, which is a light an...

View full details

GS-SURVEY Carbon Fiber Prism Pole

Original price €334,95 - Original price €580,95
Original price €334,95
€334,95 - €580,95
€334,95 - €580,95
Current price €334,95

GS-SURVEY Carbon Fiber Prism Pole - Lightweight and affordable pole Available in four versions: Article no: GS-PP220-CL Length 1.33-2.20...

View full details

Seco Carbon fiber pole GPS / GNSS / RTK, 1.34-2m, telescopic

Original price €493,95 - Original price €493,95
Original price €493,95
€493,95
€493,95 - €493,95
Current price €493,95

Seco Carbon fiber pole GPS / GNSS / RTK, 1.34-2m, telescopic One-piece design that is faster and more user-friendly Ideal for GPS RTK measureme...

View full details

Leica GLS31 Carbon fiber pole, SmartPole, telescopic

Original price €816,95 - Original price €816,95
Original price €816,95
€816,95
€816,95 - €816,95
Current price €816,95

Leica GLS31 Carbon fiber pole, SmartPole, telescopic Leica Original GLS31 carbon fiber telescopic pole for SmartPole Carbon fiber pole with sna...

View full details

Leica GAD32 carbon fiber pole GPS / GNSS, telescopic

Original price €145,95 - Original price €145,95
Original price €145,95
€145,95
€145,95 - €145,95
Current price €145,95

Leica GAD32 carbon fiber pole GPS / GNSS, telescopic Telescopic pole in carbon fiber with 5/8" screw. Fits in GVP603 backpack (art. no.: 6671...

View full details

LEICA GLS18 1M rod extension with 5/8" thread

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

LEICA GLS18 1M rod extension with 5/8" thread

Carbon fiber pole SECO GPS / GNSS, 2m, 2-part

Original price €488,95 - Original price €488,95
Original price
€488,95
€488,95 - €488,95
Current price €488,95

Carbon fiber pole SECO GPS / GNSS, 2m, 2-part 2-piece lightweight pole made of fiberglass, perfect for all GPS applications Rod mount: Mal...

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