Mapbox Google Maps Migration Skill Comprehensive guidance for migrating from Google Maps Platform to Mapbox GL JS. Provides API equivalents, pattern translations, and strategies for successful migration. Core Philosophy Differences Google Maps: Imperative & Object-Oriented - Create objects (Marker, Polygon, etc.) - Add to map with - Update properties with setters - Heavy reliance on object instances Mapbox GL JS: Declarative & Data-Driven - Add data sources - Define layers (visual representation) - Style with JSON - Update data, not object properties Key Insight: Mapbox treats everything as d…