Телефони

Працюємо щодня з 8:00 до 20:00

Адреса

Україна, Кропивницький
Героїв Маріуполя (Генерала Родимцева) 87В

Показати на карті

Електронна пошта

info@maxipole.com

Відповідаємо протягом 24 годин

Соціальні мережі

Як нас знайти

Наша адреса

Україна, Кропивницький
Героїв Маріуполя (Генерала Родимцева) 87В

Відкрити в Google Maps
// Initialize Google Maps function initMap() { // Coordinates for Kropyvnytskyi, Ukraine const kropyvnytskyi = { lat: 48.5106, lng: 32.2667 }; const map = new google.maps.Map(document.getElementById('map'), { zoom: 15, center: kropyvnytskyi, mapTypeId: 'roadmap', styles: [ { featureType: 'all', elementType: 'geometry.fill', stylers: [{ weight: '2.00' }] }, { featureType: 'all', elementType: 'geometry.stroke', stylers: [{ color: '#9c9c9c' }] }, { featureType: 'all', elementType: 'labels.text', stylers: [{ visibility: 'on' }] }, { featureType: 'landscape', elementType: 'all', stylers: [{ color: '#f2f2f2' }] }, { featureType: 'landscape', elementType: 'geometry.fill', stylers: [{ color: '#ffffff' }] }, { featureType: 'landscape.man_made', elementType: 'geometry.fill', stylers: [{ color: '#ffffff' }] }, { featureType: 'poi', elementType: 'all', stylers: [{ visibility: 'off' }] }, { featureType: 'road', elementType: 'all', stylers: [{ saturation: -100 }, { lightness: 45 }] }, { featureType: 'road', elementType: 'geometry.fill', stylers: [{ color: '#eeeeee' }] }, { featureType: 'road', elementType: 'labels.text.fill', stylers: [{ color: '#7b7b7b' }] }, { featureType: 'road', elementType: 'labels.text.stroke', stylers: [{ color: '#ffffff' }] }, { featureType: 'road.highway', elementType: 'all', stylers: [{ visibility: 'simplified' }] }, { featureType: 'road.arterial', elementType: 'labels.icon', stylers: [{ visibility: 'off' }] }, { featureType: 'transit', elementType: 'all', stylers: [{ visibility: 'off' }] }, { featureType: 'water', elementType: 'all', stylers: [{ color: '#46bcec' }, { visibility: 'on' }] }, { featureType: 'water', elementType: 'geometry.fill', stylers: [{ color: '#c8d7d4' }] }, { featureType: 'water', elementType: 'labels.text.fill', stylers: [{ color: '#070707' }] }, { featureType: 'water', elementType: 'labels.text.stroke', stylers: [{ color: '#ffffff' }] } ] }); // Add marker const marker = new google.maps.Marker({ position: kropyvnytskyi, map: map, title: 'МАКСІПОЛЕ - Кропивницький', icon: { url: 'data:image/svg+xml;charset=UTF-8,' + encodeURIComponent(` 🌾 `), scaledSize: new google.maps.Size(40, 40), anchor: new google.maps.Point(20, 20) } }); // Add info window const infoWindow = new google.maps.InfoWindow({ content: `

🌾 МАКСІПОЛЕ

Україна, Кропивницький
Героїв Маріуполя 87В

` }); marker.addListener('click', () => { infoWindow.open(map, marker); }); } // Load Google Maps API function loadGoogleMaps() { if (typeof google === 'undefined') { const script = document.createElement('script'); script.src = 'https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap'; script.async = true; script.defer = true; document.head.appendChild(script); } else { initMap(); } } // Global variables for map let map = null; let marker = null; let mapLoaded = false; // Load map when page is ready document.addEventListener('DOMContentLoaded', function() { // Show placeholder initially showMapPlaceholder(); }); // Show map placeholder function showMapPlaceholder() { const mapContainer = document.getElementById('map'); if (mapContainer) { mapContainer.innerHTML = `

Інтерактивна карта

Кропивницький, Героїв Маріуполя 87В
Відкрити в Google Maps
`; } } // Load Google Map function loadGoogleMap() { if (mapLoaded) return; const loadBtn = document.getElementById('loadMapBtn'); if (loadBtn) { loadBtn.innerHTML = ' Завантаження...'; loadBtn.disabled = true; } // Check if Google Maps API is available if (typeof google === 'undefined') { // Load Google Maps API const script = document.createElement('script'); script.src = 'https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap'; script.async = true; script.defer = true; script.onerror = function() { showMapError(); }; document.head.appendChild(script); } else { initMap(); } } // Initialize Google Maps function initMap() { try { // Coordinates for Kropyvnytskyi, Ukraine const kropyvnytskyi = { lat: 48.5106, lng: 32.2667 }; const mapContainer = document.getElementById('map'); if (!mapContainer) return; // Clear placeholder mapContainer.innerHTML = ''; map = new google.maps.Map(mapContainer, { zoom: 15, center: kropyvnytskyi, mapTypeId: 'roadmap', styles: [ { featureType: 'all', elementType: 'geometry.fill', stylers: [{ weight: '2.00' }] }, { featureType: 'all', elementType: 'geometry.stroke', stylers: [{ color: '#9c9c9c' }] }, { featureType: 'all', elementType: 'labels.text', stylers: [{ visibility: 'on' }] }, { featureType: 'landscape', elementType: 'all', stylers: [{ color: '#f2f2f2' }] }, { featureType: 'landscape', elementType: 'geometry.fill', stylers: [{ color: '#ffffff' }] }, { featureType: 'landscape.man_made', elementType: 'geometry.fill', stylers: [{ color: '#ffffff' }] }, { featureType: 'poi', elementType: 'all', stylers: [{ visibility: 'off' }] }, { featureType: 'road', elementType: 'all', stylers: [{ saturation: -100 }, { lightness: 45 }] }, { featureType: 'road', elementType: 'geometry.fill', stylers: [{ color: '#eeeeee' }] }, { featureType: 'road', elementType: 'labels.text.fill', stylers: [{ color: '#7b7b7b' }] }, { featureType: 'road', elementType: 'labels.text.stroke', stylers: [{ color: '#ffffff' }] }, { featureType: 'road.highway', elementType: 'all', stylers: [{ visibility: 'simplified' }] }, { featureType: 'road.arterial', elementType: 'labels.icon', stylers: [{ visibility: 'off' }] }, { featureType: 'transit', elementType: 'all', stylers: [{ visibility: 'off' }] }, { featureType: 'water', elementType: 'all', stylers: [{ color: '#46bcec' }, { visibility: 'on' }] }, { featureType: 'water', elementType: 'geometry.fill', stylers: [{ color: '#c8d7d4' }] }, { featureType: 'water', elementType: 'labels.text.fill', stylers: [{ color: '#070707' }] }, { featureType: 'water', elementType: 'labels.text.stroke', stylers: [{ color: '#ffffff' }] } ] }); // Add marker marker = new google.maps.Marker({ position: kropyvnytskyi, map: map, title: 'МАКСІПОЛЕ - Кропивницький', icon: { url: 'data:image/svg+xml;charset=UTF-8,' + encodeURIComponent(` 🌾 `), scaledSize: new google.maps.Size(40, 40), anchor: new google.maps.Point(20, 20) } }); // Add info window const infoWindow = new google.maps.InfoWindow({ content: `

🌾 МАКСІПОЛЕ

Україна, Кропивницький
Героїв Маріуполя 87В

` }); marker.addListener('click', () => { infoWindow.open(map, marker); }); // Hide load button and show success const loadBtn = document.getElementById('loadMapBtn'); if (loadBtn) { loadBtn.innerHTML = ' Карта завантажена'; loadBtn.style.background = '#10b981'; loadBtn.disabled = true; } mapLoaded = true; } catch (error) { showMapError(); } } // Show map error function showMapError() { const mapContainer = document.getElementById('map'); if (mapContainer) { mapContainer.innerHTML = `

Помилка завантаження карти

Перевірте підключення до інтернету
Відкрити в Google Maps
`; } const loadBtn = document.getElementById('loadMapBtn'); if (loadBtn) { loadBtn.innerHTML = ' Спробувати знову'; loadBtn.disabled = false; } }