syncfusion-angular-maps
Implement Syncfusion Angular Maps component for geographical data visualization. Use this when users need to display maps, visualize geographical data with markers and bubbles, integrate map providers like Bing or OpenStreetMap, render GeoJSON shapes, or create choropleth maps with color-coded regions. Supports interactive features like zooming, panning, layers, legends, tooltips, color mapping, and accessibility.
What this skill does
# Implementing Syncfusion Angular Maps
Comprehensive guide for implementing the Syncfusion Angular Maps component to visualize geographical data with interactive features, multiple layers, and rich customization options.
## When to Use This Skill
Use this skill when you need to:
- **Visualize geographical data** - Display statistical data on world maps, country maps, regional maps, or custom geographic shapes
- **Create interactive maps** - Build maps with zoom, pan, selection, highlighting, and tooltip interactions
- **Plot locations** - Add markers, bubbles, or annotations to highlight specific geographic points
- **Display map layers** - Work with multiple overlapping layers using GeoJSON data or map providers (Bing, OpenStreetMap, Azure)
- **Color-code regions** - Apply color mapping based on data values for choropleth/heat map visualizations
- **Custom map visualizations** - Create non-geographic visualizations like seat layouts, floor plans, or stadium maps
- **Navigation and routing** - Draw navigation lines or routes between markers
- **Export and print maps** - Generate printable or exportable map visualizations
- **Build dashboards** - Integrate maps into Angular applications for business intelligence or analytics
## Component Overview
The Syncfusion Angular Maps component (`@syncfusion/ej2-angular-maps`) is a powerful data visualization tool that renders geographical data using Scalable Vector Graphics (SVG). It supports:
- **Multiple layers and sublayers** for complex visualizations
- **GeoJSON data binding** for custom shapes and regions
- **Map providers** (Bing Maps, OpenStreetMap, Azure Maps) as base layers
- **Six projection types** (Mercator, Equirectangular, Miller, Eckert3, Eckert5, Eckert6, Winkel3, AitOff)
- **Rich visualization elements** - markers, bubbles, data labels, legends, navigation lines, annotations
- **Interactive features** - zooming, panning, tooltips, selection, highlighting
- **Responsive and accessible** design with WCAG compliance
## Documentation and Navigation Guide
### Getting Started
๐ **Read:** [references/getting-started.md](references/getting-started.md)
When implementing Maps for the first time or setting up a new Angular project:
- Installing dependencies (@syncfusion/ej2-angular-maps package)
- Setting up Angular environment and importing MapsModule
- Creating first basic map with world map data
- Understanding module injection for features (MarkerService, BubbleService, etc.)
- Adding CSS themes and styling
- Running the application
### Layers and Data Binding
๐ **Read:** [references/layers-and-data.md](references/layers-and-data.md)
For working with map layers, shape data, and data source binding:
- Understanding layer structure and configuration
- Loading GeoJSON shape data (shapeData property)
- Binding external data sources (dataSource, shapeDataPath, shapePropertyPath)
- Creating multiple layers and sublayers
- Layer types (base layer vs sublayer)
- Switching between layers (baseLayerIndex)
- Rendering custom shapes for non-geographic visualizations
- GeometryType options (Geographic vs Normal)
### Markers
๐ **Read:** [references/markers.md](references/markers.md)
For adding and customizing location markers:
- Adding markers with latitude/longitude data
- Marker shapes (Balloon, Circle, Cross, Diamond, Image, Rectangle, Star, Triangle)
- Custom marker templates
- Marker styling (size, color, border, opacity)
- Dynamic markers with data binding
- Marker clustering
- Marker animations and transitions
- Marker tooltips and events
- Creating routes between markers
### Data Visualization Features
๐ **Read:** [references/data-visualization.md](references/data-visualization.md)
For visualizing data with bubbles, colors, labels, and legends:
- **Bubbles** - Size-based visualization for quantitative data
- **Color mapping** - Range color mapping, equal color mapping, desaturation color mapping
- **Data labels** - Displaying shape names or data values on the map
- **Legends** - Adding legends for color mapping and bubbles
- **Navigation lines** - Drawing lines between locations
- **Annotations** - Adding custom HTML content at specific positions
- Combining multiple visualization features
### User Interactions
๐ **Read:** [references/user-interactions.md](references/user-interactions.md)
For implementing interactive map behaviors:
- **Zooming** - Mouse wheel zoom, pinch zoom, double-click zoom, zoom toolbar
- **Panning** - Mouse drag and touch panning
- **Tooltips** - Layer tooltips, marker tooltips, bubble tooltips
- **Selection** - Shape selection, marker selection, bubble selection
- **Highlighting** - Hover highlight effects
- **Interactive legend** - Clicking legend items to show/hide shapes
- Event handling (click, hover, zoom, pan events)
- Touch and mobile support
### Map Providers
๐ **Read:** [references/map-providers.md](references/map-providers.md)
For integrating external map services:
- Overview of map provider support
- **Bing Maps** integration and API key configuration
- **OpenStreetMap** (OSM) integration
- **Azure Maps** integration
- Provider-specific features and limitations
- Combining map providers with shape layers
- URL templates and tile services
- Zoom level configuration
### Polygon Shapes
๐ **Read:** [references/polygon-shapes.md](references/polygon-shapes.md)
For drawing and customizing polygons:
- Adding polygon overlays to maps
- Polygon configuration and data structure
- Styling polygons (fill, border, opacity)
- Polygon events (click, hover)
- Use cases (highlighting regions, boundaries, zones)
- Dynamic polygon rendering
### Customization and Styling
๐ **Read:** [references/customization.md](references/customization.md)
For theming and visual customization:
- CSS customization and theme overrides
- Shape styling (fill, border, color schemes)
- Responsive design patterns
- **Map projections** - Choosing and configuring projection types
- Background customization (colors, images)
- Title and subtitle styling
- Border and margin configuration
### Localization and Internationalization
๐ **Read:** [references/localization.md](references/localization.md)
For globalizing map content:
- Internationalization (i18n) setup
- Localization (l10n) for different languages
- Right-to-left (RTL) support
- Number formatting for different locales
- Currency formatting in tooltips/labels
- Date and time formatting
- Culture-specific rendering
### Advanced Features
๐ **Read:** [references/advanced-features.md](references/advanced-features.md)
For advanced capabilities and APIs:
- **Print and Export** - Printing maps, exporting to PNG/JPEG/SVG/PDF
- **State persistence** - Saving and restoring map state
- **Public methods** - Programmatic control (refresh, print, export, etc.)
- **Events reference** - Complete list of available events
- **Creating routes** - Drawing navigation routes between markers
- **Custom path rendering** - Advanced path and line customization
- **Drilldown navigation** - Creating hierarchical map navigation
### Accessibility
๐ **Read:** [references/accessibility.md](references/accessibility.md)
For accessible map implementations:
- WCAG 2.1 compliance guidelines
- Keyboard navigation support
- ARIA attributes and roles
- Screen reader compatibility
- High contrast theme support
- Focus indicators and management
- Alternative text for shapes and markers
## Quick Start
### Installation
```bash
# Install the Maps package
npm install @syncfusion/ej2-angular-maps --save
```
### Basic Implementation
```typescript
import { Component } from '@angular/core';
import { MapsModule } from '@syncfusion/ej2-angular-maps';
import { world_map } from './world-map'; // GeoJSON data
@Component({
selector: 'app-root',
standalone: true,
imports: [MapsModule],
template: `
<ejs-maps id='maps-container'>
<e-layers>
<e-layer [shapeData]='shapeData'></e-layer>
</e-layers>
</ejs-maps>
`
})
export clasRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context โ no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes โ information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development โ guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.