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

Railway equipment

Filters

Adapter 100mm with 5/8 female

Original price €35,95 - Original price €35,95
Original price €35,95
€35,95
€35,95 - €35,95
Current price €35,95

Adapter 100mm with 5/8 female 5/8 female at the bottom, 12mm Wild/Leica mount at the top Total height: 100mm Used, among other things, to...

View full details

Connector, stripped, Swedish Transport Administration

Original price €192,95 - Original price €192,95
Original price €192,95
€192,95
€192,95 - €192,95
Current price €192,95

Connector, stripped, including pliers L=1660. Swedish Transport Administration Short-circuit device to short-circuit the track line so that a...

View full details

GEOSP - Geodetic track center measurement, 1435mm

Original price €1.454,95 - Original price €1.454,95
Original price €1.454,95
€1.454,95
€1.454,95 - €1.454,95
Current price €1.454,95

GEOSP - Geodetic track center measurement for standard gauge, 1435mm Each Geosp comes with a certificate that shows that a control measurement h...

View full details

Obstacle board for rails SJ50 and UIC-60

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

Obstacle board for rails SJ50 and UIC-60 Obstacle board to be placed on rails to mark ongoing track work Fits SJ50 & UIC-60 tracks Ap...

View full details

SOLA passport track dimensions GW 80 incl. GWO 40

Original price €1.513,95 - Original price €1.513,95
Original price €1.513,95
€1.513,95
€1.513,95 - €1.513,95
Current price €1.513,95

SOLA passport track dimensions GW 80 incl. GWO 40 Combined gauge and cant gauge, SPV 1435 mm Measuring instrument for measuring railway tra...

View full details

Geosp - Transport box

Original price €774,95 - Original price €774,95
Original price €774,95
€774,95
€774,95 - €774,95
Current price €774,95

Geosp - Transport box A safe way to transport your Geosp. Dimensions: 157.5 x 32 x 28.5 cm Weight: 18.45 kg incl. Geosp Material: Wood...

View full details

Magnetisk spårvinkel med 5/8"-anslutning

Original price €228,95 - Original price €228,95
Original price €228,95
€228,95
€228,95 - €228,95
Current price €228,95

Kraftfulla magneter håller på ett tillförlitligt sätt vinkeln i den valda positionen, och nivellering utförs av en precisionsbubbelnivå.Sidospåret ...

View full details

Magnetisk spårvinkel med LEICA-anslutning

Original price €198,95 - Original price €198,95
Original price €198,95
€198,95
€198,95 - €198,95
Current price €198,95

Kraftfulla magneter håller på ett tillförlitligt sätt vinkeln i den valda positionen, och nivellering utförs av en precisionsbubbelnivå.Sidospåret ...

View full details

Signal lamp SL Subway: HP-11R2SR

Original price €399,95 - Original price €399,95
Original price
€399,95
€399,95 - €399,95
Current price €399,95

Signal lamp SL Subway: HP-11R2SR SL Subway: HP-11R2SR, Red/Yellow LED+White halogen Halo plus 2 Signal lamp, used for example for train sign...

View full details

Signal lamp Swedish Transport Administration, NSB: HP11R2VT

Original price €399,95 - Original price €399,95
Original price
€399,95
€399,95 - €399,95
Current price €399,95

Signal lamp Swedish Transport Administration, NSB: HP11R2VT Swedish Transport Administration, NSB: HP11R2VT, Red/True signal green 505nm+White ...

View full details

Rail elevation sign marked 0

Original price €1,95 - Original price €1,95
Original price €1,95
€1,95
€1,95 - €1,95
Current price €1,95

Rail elevation sign marked 0 <, 25X55 mm Rail cant sign marked 0 and < (upwards) Size: 25 x 55 mm Design: Black number/numbers on y...

View full details

GEOSP - Geodetic track center measurement for narrow gauge, 891mm

Original price €1.484,95 - Original price €1.484,95
Original price €1.484,95
€1.484,95
€1.484,95 - €1.484,95
Current price €1.484,95

GEOSP - Geodetic track center measurement for narrow gauge, 891mm Each Geosp comes with a certificate that shows that a control measurement has...

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