How to create google map with pulses animation
<html> <head> <title>Google Map</title> <style> @keyframes pulsate { 0% { transform: scale(0.1); opacity: 0; } 50% { opacity: 1; } 100% { transform: scale(1.2); opacity: 0; } } .pin { width: 10px; ...