GPSMAP® 8410 con mapa base mundial
Disponibilidad: Agotado
$67,093.66
Especificaciones del Producto
Peso:
2.4 kg
Dimensiones:
Alto: 26 cm,
Ancho: 8 cm,
Largo: 21 cm
Categoría:
Equipos para Pesca Comercial y Recreativa / Soluciones Marinas / Radiocomunicación
GPSMAP® 8410
Caracteristicas:
- Pantalla táctil IPS Full HD de 10'
- Conectividad NMEA 2000® y Red náutica Garmin.
- Conectividad Bluetooth®, tecnología ANT® y conexión de red Wi-Fi®
- Guías de asistencia.
- compatible con sondas Panoptix
Incluye:
- GPSMAP 8410
- Cable de alimentación
- Cable de caída NMEA 2000®
- Conector en T NMEA 2000
- Arco de montaje para barcos con perillas
- Kit de montaje empotrado
- Cubierta protectora solar
- Cubiertas a presión para el borde
- Documentación
Dimensiones: 25,9 cm x 20,5 cm x 7,5 cm (10,25' x 8,0625' x 2.95')
Peso: 2,4 kg (5,2 lb)
Mapas y memoria | |
| ACEPTA TARJETAS DE DATOS | 2 tarjetas SD™ (en la parte posterior de la unidad) |
|---|---|
| WAYPOINTS | 5000 |
| PUNTOS DE TRACK | 50,000 |
| PISTAS | 50 saved tracks |
| RUTAS | 100 (250 cada punto intermedio) |
Sensores | |
| GPS | SI |
|---|---|
| GLONASS | SI |
| GALILEO | SI |
| CON RECEPTOR INTEGRADO | SI |
| RECEPTOR | GPS/GLONASS/Galileo de 10 Hz |
| COMPATIBLE CON NMEA 2000® | SI |
| COMPATIBLE CON NMEA 0183 | SI |
| COMPATIBLE CON WAAS | SI |
Soporte de mapa opcional | |
| BLUECHART G3 | SI |
|---|---|
| BLUECHART G3 VISION | SI |
| LAKEVÜ G3 | SI |
| LAKEVÜ G3 ULTRA | SI |
| GARMIN NAVIONICS+™ | SI |
| GARMIN NAVIONICS VISION+™ | SI |
| TOPO 100K | SI |
| MAPAS ESTÁNDAR | SI |
| GARMIN QUICKDRAW CONTOURS | SI |
| SOPORTE PARA MAPAS DE TRAMAS | SI |
Funciones del plotter | |
| GARMIN SMARTMODE | SI |
|---|---|
| ADMITE AIS (RASTREA LA POSICIÓN DE LOS BARCOS OBJETIVO) | { thumb.classList.remove('active'); }); // Agregar clase activa a la miniatura seleccionada element.classList.add('active'); // Quitar zoom si estaba activo document.getElementById('mainImageContainer').classList.remove('zoomed'); } // Alternar zoom al hacer clic en la imagen principal document.getElementById('mainImageContainer').addEventListener('click', function() { this.classList.toggle('zoomed'); }); // Actualizar cantidad function updateQuantity(change) { const input = document.getElementById('quantity'); let value = parseInt(input.value) || 1; const max = parseInt(input.max) || 1; value += change; if (value < 1) value = 1; if (value > max) value = max; input.value = value; } // Mostrar alerta personalizada function showAlert(message, isSuccess = true) { const alertMsg = $('#alertMessage'); alertMsg.text(message); alertMsg.css('background-color', isSuccess ? '#28a745' : '#dc3545'); // Cambiar icono según el tipo de mensaje const icon = isSuccess ? 'fa-check-circle' : 'fa-exclamation-circle'; alertMsg.html(`${message}`); alertMsg.fadeIn(); setTimeout(() => { alertMsg.fadeOut(); }, 3000); } // Añadir al carrito con loader y mensaje function addToCart(productId, quantity, checkout = false) { quantity = parseInt(quantity) || 1; if (quantity < 1) quantity = 1; // Mostrar loader $('#loaderOverlay').fadeIn(); $.post('controller/carro/functions.php', { ppo: 'add', id: productId, cant: quantity }, function(response) { // Ocultar loader $('#loaderOverlay').fadeOut(); try { const data = typeof response === 'object' ? response : JSON.parse(response); if (data.success) { updateCartCount(); showAlert('Producto agregado correctamente'); if (checkout) { setTimeout(() => { window.location.href = 'envio.php' }, 500); } } else { showAlert(data.message || 'Error al agregar el producto', false); } } catch (e) { updateCartCount(); showAlert('Producto agregado correctamente'); if (checkout) { setTimeout(() => { window.location.href = 'envios.php' }, 500); } } }).fail(function(xhr, status, error) { $('#loaderOverlay').fadeOut(); showAlert('Error de conexión al servidor', false); console.error('Error al agregar al carrito:', error); }); } // Actualizar contador del carrito function updateCartCount() { $.post('controller/carro/functions.php', { ppo: 'count' }, function(count) { $('.cart-count').text(count); }); } // Scroll to top document.querySelector('.scroll-to-top').addEventListener('click', function(e) { e.preventDefault(); window.scrollTo({ top: 0, behavior: 'smooth' }); }); // Mostrar/ocultar botón de scroll window.addEventListener('scroll', function() { const scrollBtn = document.querySelector('.scroll-to-top'); if (window.scrollY > 300) { scrollBtn.style.display = 'flex'; } else { scrollBtn.style.display = 'none'; } }); // Inicializar contador del carrito $(document).ready(function() { updateCartCount(); }); |