/install leaflet
Leaflet
Use this skill for practical 2D web map work with Leaflet.
Leaflet is best for lightweight interactive maps that need simple setup, raster or XYZ tile layers, GeoJSON overlays, and straightforward custom controls. It is usually the right choice when the user wants a dependable browser map without the heavier rendering model of WebGL-first stacks.
Workflow
- Confirm the runtime first:
- plain HTML
- Vite
- React
- Next.js or another SPA framework
- Confirm the actual map job:
- base map only
- markers and popups
- GeoJSON overlay
- choropleth or feature styling
- draw/edit interaction
- bug fixing or migration
- Start from the smallest visible map before adding controls, overlays, clustering, or plugins.
- Check container size and CSS before debugging data or tile logic.
- Keep data CRS assumptions explicit; Leaflet usually expects WGS84 longitude/latitude input for GeoJSON-style work.
Implementation Guardrails
- Ensure the map container has a real height before initializing the map.
- Use
L.map(...)once per container and clean it up in SPA teardown paths. - Fit bounds from real data instead of hardcoding zoom/center when the dataset is dynamic.
- Prefer
L.geoJSON(...)for lightweight vector overlays and feature-level styling. - Keep tile URLs configurable and attribute them correctly.
- Use clustering or canvas-based rendering when marker counts grow large.
- Treat plugins as optional dependencies; verify maintenance status and compatibility before adopting them.
Common Failure Checks
- Blank map: verify container height, CSS import, tile URL, and network access.
- Tiles not loading: verify URL template, attribution requirements, CORS behavior, and rate limits.
- Features in the wrong place: verify coordinate order and whether the source data is really WGS84 lon/lat.
- Map rendering oddly after resize or tab switch: call
map.invalidateSize()after the container becomes visible. - Memory leaks in React or SPA routes: remove the map instance and detach listeners on teardown.
- Slow interaction with many points: cluster points, simplify GeoJSON, or switch from DOM-heavy markers to canvas-friendly rendering.
Practical Patterns
Minimal map
- Create the map only after the container exists.
- Add one tile layer with attribution.
- Set a sane initial center/zoom or fit to bounds from data.
GeoJSON overlay
- Use
L.geoJSONwith explicit style andonEachFeature. - Keep popup content deterministic and escape or sanitize user-provided text.
- Fit to the resulting layer bounds when the overlay is the main subject.
Interactive app integration
- Store the map instance outside repeated render loops.
- Update layers incrementally instead of recreating the entire map on every state change.
- Separate base layer setup from data overlay updates.
Drawing and editing
- Use a maintained drawing plugin only when the user explicitly needs editing.
- Confirm output format, CRS assumptions, and persistence flow before wiring edit tools.
Task Boundaries
- Use this skill for Leaflet-specific implementation, debugging, and integration patterns.
- For CRS and reprojection decisions, use
projectorwgs84. - For China-specific CGCS2000 reasoning, use
cgcs2000. - For file-based GIS conversion or batch reprojection, use
qgis. - For Mapbox GL JS or vector-tile style expressions, use
mapbox. - For CesiumJS globe rendering, use
cesium.
What To Return
- A minimal working Leaflet setup or a targeted fix.
- The likely root cause when debugging a broken map.
- Clear notes on tile source assumptions, coordinate order, and CRS constraints.
- Any required cleanup or lifecycle handling for the framework in use.
- A smaller reproducible example first if the original integration is too noisy.
OpenClaw + ClawHub Notes
- Keep examples generic, portable, and safe to paste into local projects.
- Do not hardcode private tile servers, private tokens, or machine-specific paths.
- Prefer maintained public dependencies and standards-based examples.
- For clawhub.ai publication, keep examples reproducible and version/changelog updates semver-driven.
Reference Docs In This Skill
- Read
{baseDir}/references/patterns.mdwhen generating or fixing Leaflet code for vanilla HTML, Vite, React, or GeoJSON-heavy pages.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install leaflet - 安装完成后,直接呼叫该 Skill 的名称或使用
/leaflet触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
leaflet 是什么?
Build, debug, and integrate Leaflet web maps, including map setup, tile layers, markers, popups, GeoJSON overlays, bounds fitting, event handling, and plugin... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 156 次。
如何安装 leaflet?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install leaflet」即可一键安装,无需额外配置。
leaflet 是免费的吗?
是的,leaflet 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
leaflet 支持哪些平台?
leaflet 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 leaflet?
由 jvy(@jvy)开发并维护,当前版本 v1.0.0。