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

Thermal cameras / IR thermometers

Filters

FTI 500 Thermal Camera

Original price €1.416,95 - Original price €1.416,95
Original price
€1.416,95
€1.416,95 - €1.416,95
Current price €1.416,95

FTI 500 Thermal Camera Professional thermal camera with high resolution, 256 x 192 pixel IR sensor. 3.5-inch touchscreen. Temperature range fro...

View full details

FTI 400 Thermal Camera

Original price €901,95 - Original price €901,95
Original price
€901,95
€901,95 - €901,95
Current price €901,95

FTI 400 Thermal Camera Professional thermal camera with IR sensor resolution of 120 x 160 pixels. 2.8-inch display, temperature range from -20 ...

View full details

FTI 300 Thermal Camera

Original price €617,95 - Original price €617,95
Original price
€617,95
€617,95 - €617,95
Current price €617,95

FTI 300 Thermal Camera Thermal camera for non-contact measurement of surface temperature. Heating and ventilation installations, building in...

View full details

Seek Shot Bag

Original price €51,95 - Original price €51,95
Original price
€51,95
€51,95 - €51,95
Current price €51,95

Seek Shot Bag Bag for Seek Shot Thermal Camera

Seek Reveal Bag

Original price €51,95 - Original price €51,95
Original price
€51,95
€51,95 - €51,95
Current price €51,95

Seek Reveal Bag Bag for Seek Reveal Thermal Camera

Seek Shot Thermal Camera

Original price €848,95 - Original price €848,95
Original price
€848,95
€848,95 - €848,95
Current price €848,95

Seek Shot Thermal Camera High resolution WiFi stream what you see to your mobile directly Touch Screen -40 to +330C 32136 pixels

Seek Shot Pro Thermal Camera

Original price €1.234,95 - Original price €1.234,95
Original price
€1.234,95
€1.234,95 - €1.234,95
Current price €1.234,95

Seek Shot Pro Thermal Camera Very high resolution WiFi stream what you see to your mobile directly Touch Screen -40 to +330C 76800 pi...

View full details

Seek Reveal Pro Thermal Camera

Original price €1.079,95 - Original price €1.079,95
Original price €1.079,95
€1.079,95
€1.079,95 - €1.079,95
Current price €1.079,95

Seek Reveal Pro Thermal Camera Robust thermal camera with high resolution. Works both for house inspections and in the forest. Has a built-in f...

View full details

Geo-Fennel Firt 550 IR thermometer

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

Geo-Fennel Firt 550 IR thermometer Battery-powered IR thermometer that measures temperatures between -50 to +550 C. Measurement is completely c...

View full details

Geo-Fennel Firt 1600 IR thermometer

Original price €454,95 - Original price €454,95
Original price
€454,95
€454,95 - €454,95
Current price €454,95

Geo-Fennel Firt 1600 IR thermometer Geo Fennel FIRT 1600 is an IR thermometer that measures temperatures between -50°C to +1600°C completely no...

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