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

Magnetic mount with 5/8 thread or Leica mount

SKU 46-1300
Original price €49,95 - Original price €91,95
Original price €49,95
€49,95
€49,95 - €91,95
Current price €49,95

Magnetfot 50mm och 80mm med 5/8-gänga eller Leica-fäste.

Choose length and attachment: 50mm - 5/8

Standard shipping

Approximately 7-10 days delivery time

Magnetic mount with 5/8 thread or Leica mount

  • These magnetic mounts can be used with prisms or GPS antennas on any magnetic surface.
  • For use on moving vehicles we recommend a magnetic mount with 80mm diameter or a magnetic mount with 3 separate magnets (art. no. ktss-208 ). See also Geo-Fennel's strong magnetic base with several magnets in a circle (art. no. 262000-16 ).

  • Static magnetic mount Leica / Wild:
    • 46-1300w: diameter is 50mm with fixed brass Leica mount.
    • 46-2016w: diameter is 80mm with fixed brass Leica mount.

  • Flexible magnetic mount 5/8:
    • 46-1300: diameter is 50mm with external 5/8 thread.
    • 46-2016: diameter is 80mm with external 5/8 thread.

  • Feel free to purchase a Leica measuring arm 61mm (art. no . 2080-00 ) or why not combine it with a GPS extender (art. no.: 5145-00-FLY ) if you want a flexible magnetic mount that you can use in different ways.

Sökord: Magnetfäste, 5/8, Leica, magnetfot, magnet,

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