[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-mapbox-mapbox-style-quality":3,"mdc-f62nu9-key":36,"related-repo-mapbox-mapbox-style-quality":1273,"related-org-mapbox-mapbox-style-quality":1379},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"mapbox-style-quality","validate and optimize Mapbox styles","Expert guidance on validating, optimizing, and ensuring quality of Mapbox styles through validation, accessibility checks, and optimization. Use when preparing styles for production, debugging issues, or ensuring map quality standards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"mapbox","Mapbox","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmapbox.png",[12,16,19,22,23],{"name":13,"slug":14,"type":15},"Performance","performance","tag",{"name":17,"slug":18,"type":15},"Accessibility","accessibility",{"name":20,"slug":21,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Design","design",69,"https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmapbox-agent-skills","2026-04-06T18:28:43.785802",null,10,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmapbox-agent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fmapbox-style-quality","---\nname: mapbox-style-quality\ndescription: Expert guidance on validating, optimizing, and ensuring quality of Mapbox styles through validation, accessibility checks, and optimization. Use when preparing styles for production, debugging issues, or ensuring map quality standards.\n---\n\n# Mapbox Style Quality Skill\n\nThis skill provides expert guidance on ensuring Mapbox style quality through validation, accessibility, and optimization tools.\n\n## When to Use Quality Tools\n\n### Pre-Production Checklist\n\nBefore deploying any Mapbox style to production:\n\n1. **Validate all expressions** - Catch syntax errors before runtime\n2. **Check color contrast** - Ensure text is readable (WCAG compliance)\n3. **Validate GeoJSON sources** - Ensure data integrity\n4. **Optimize style** - Reduce file size and improve performance\n5. **Compare versions** - Understand what changed\n6. **Remove empty layers** - Delete layers with no visible paint properties as a final cleanup step\n7. **Simplify redundant boolean expressions** - Clean up filters with unnecessary boolean logic (e.g., `[\"all\", expr]` → `expr`, `[\"any\", false, expr]` → `expr`)\n\n### During Development\n\n**When adding GeoJSON data:**\n\n- Always validate external GeoJSON with `validate_geojson_tool` before using as a source\n\n**When writing expressions:**\n\n- Validate expressions with `validate_expression_tool` as you write them\n- Catch type mismatches early (e.g., using string operator on number)\n- Verify operator availability in your Mapbox GL JS version\n- Test expressions with expected data types\n\n**When styling text\u002Flabels:**\n\n- Check foreground\u002Fbackground contrast with `check_color_contrast_tool`\n- Aim for WCAG AA minimum (4.5:1 for normal text, 3:1 for large text)\n- Use AAA standard (7:1 for normal text) for better accessibility\n- Consider different background scenarios (map tiles, overlays)\n\n### Before Committing Changes\n\n**Compare style versions:**\n\n- Use `compare_styles_tool` to generate a diff report\n- Review all layer changes, source modifications, and expression updates\n- Understand the impact of your changes\n- Document significant changes in commit messages\n\n### Before Deployment\n\n**Optimize the style:**\n\n- Run `optimize_style_tool` to reduce file size\n- Remove unused sources that reference deleted layers\n- Eliminate duplicate layers with identical properties\n- Simplify redundant boolean expressions in filters (e.g., collapse `[\"all\", expr]` to `expr`, remove tautological conditions)\n- Remove empty layers (layers with no visible paint properties) as a final cleanup step\n\n## Validation Best Practices\n\n### GeoJSON Validation\n\n**Always validate when:**\n\n- Loading GeoJSON from user uploads\n- Fetching GeoJSON from external APIs\n- Processing GeoJSON from third-party sources\n- Converting between data formats\n\n**Common GeoJSON errors:**\n\n- Invalid coordinate ranges (longitude > 180 or \u003C -180)\n- Unclosed polygon rings (first and last coordinates must match)\n- Wrong coordinate order (should be [longitude, latitude], not [latitude, longitude])\n- Missing required properties (type, coordinates, geometry)\n- Invalid geometry types or nesting\n\n**Example workflow:**\n\n```\n1. Receive GeoJSON data\n2. Validate with validate_geojson_tool\n3. If valid: Add as source to style\n4. If invalid: Fix errors, re-validate\n```\n\n### Expression Validation\n\n**Validate expressions for:**\n\n- Filter conditions (`filter` property on layers)\n- Data-driven styling (`paint` and `layout` properties)\n- Feature state expressions\n- Dynamic property calculations\n\n**Common expression errors:**\n\n- Type mismatches (string operators on numbers)\n- Invalid operator names or wrong syntax\n- Wrong number of arguments for operators\n- Nested expression errors\n- Using unavailable operators for your GL JS version\n\n**Prevention strategies:**\n\n- Validate as you write expressions, not at runtime\n- Test expressions with representative data\n- Use type checking (expectedType parameter)\n- Validate in context (layer, filter, paint, layout)\n\n### Accessibility Validation\n\n**WCAG Levels:**\n\n- **AA** (minimum): 4.5:1 for normal text, 3:1 for large text\n- **AAA** (enhanced): 7:1 for normal text, 4.5:1 for large text\n\n**Text size categories:**\n\n- **Normal**: \u003C 18pt or \u003C 14pt bold\n- **Large**: ≥ 18pt or ≥ 14pt bold\n\n**Common scenarios to check:**\n\n- Text labels on map tiles\n- POI labels with background colors\n- Custom markers with text\n- UI overlays on maps\n- Legend text and symbols\n- Attribution text\n\n**Testing strategy:**\n\n- Test against both light and dark map tiles\n- Consider overlay backgrounds (popups, modals)\n- Test in different lighting conditions (mobile outdoor use)\n- Verify contrast at different zoom levels\n\n## Quality Workflow Examples\n\n### Basic Quality Check\n\n```\n1. Validate expressions in style\n2. Check color contrast for text layers\n3. Optimize if needed\n```\n\n### Full Pre-Production Workflow\n\n```\n1. Validate all GeoJSON sources\n2. Validate all expressions (filters, paint, layout)\n3. Check color contrast for all text layers\n4. Compare with previous production version\n5. Optimize style\n6. Test optimized style\n7. Deploy\n```\n\n### Troubleshooting Workflow\n\n```\n1. Compare working vs. broken style\n2. Identify differences\n3. Validate suspicious expressions\n4. Check GeoJSON data if source-related\n5. Verify color contrast if visibility issue\n```\n\n## Common Issues and Solutions\n\n### Runtime Expression Errors\n\n**Problem:** Map throws expression errors at runtime\n**Solution:** Validate expressions with `validate_expression_tool` during development\n**Prevention:** Add expression validation to pre-commit hooks or CI\u002FCD\n\n### Poor Text Readability\n\n**Problem:** Text labels are hard to read on map\n**Solution:** Check contrast with `check_color_contrast_tool`, adjust colors to meet WCAG AA\n**Prevention:** Test text on both light and dark backgrounds, check at different zoom levels\n\n### Large Style File Size\n\n**Problem:** Style takes long to load or transfer\n**Solution:** Run `optimize_style_tool` to remove redundancies and simplify\n**Prevention:** Regularly optimize during development, remove unused sources immediately\n\n### Invalid GeoJSON Source\n\n**Problem:** GeoJSON source fails to load or render\n**Solution:** Validate with `validate_geojson_tool`, fix coordinate issues, verify structure\n**Prevention:** Validate all external GeoJSON before adding to style\n\n### Unexpected Style Changes\n\n**Problem:** Style changed but unsure what modified\n**Solution:** Use `compare_styles_tool` to generate diff report\n**Prevention:** Compare before\u002Fafter for all significant changes, document modifications\n\n## Tool Quick Reference\n\n| Tool                        | Use When               | Output                     |\n| --------------------------- | ---------------------- | -------------------------- |\n| `validate_geojson_tool`     | Adding GeoJSON sources | Valid\u002Finvalid + error list |\n| `validate_expression_tool`  | Writing expressions    | Valid\u002Finvalid + error list |\n| `check_color_contrast_tool` | Styling text labels    | Passes\u002Ffails + WCAG levels |\n| `compare_styles_tool`       | Reviewing changes      | Diff report with paths     |\n| `optimize_style_tool`       | Before deployment      | Optimized style + savings  |\n\n## Reference Files\n\nFor detailed guidance on specific topics, load the relevant reference:\n\n- **`references\u002Foptimization.md`** — Optimization types, strategies, recommended order, and maintenance best practices\n- **`references\u002Fcomparison.md`** — Style comparison workflows, ignoreMetadata usage, and refactoring workflow\n- **`references\u002Fci-integration.md`** — Git pre-commit hooks, CI\u002FCD pipeline steps, and code review checklist\n\n> **Load instruction:** Read the reference file when the user needs in-depth guidance on that topic.\n\n## Additional Resources\n\n- [Mapbox Style Specification](https:\u002F\u002Fdocs.mapbox.com\u002Fmapbox-gl-js\u002Fstyle-spec\u002F)\n- [WCAG 2.1 Guidelines](https:\u002F\u002Fwww.w3.org\u002FWAI\u002FWCAG21\u002Fquickref\u002F)\n- [GeoJSON Specification (RFC 7946)](https:\u002F\u002Ftools.ietf.org\u002Fhtml\u002Frfc7946)\n- [Mapbox Expression Reference](https:\u002F\u002Fdocs.mapbox.com\u002Fmapbox-gl-js\u002Fstyle-spec\u002Fexpressions\u002F)\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,63,70,75,182,188,196,213,221,252,260,289,295,303,334,340,348,398,404,410,418,441,449,491,499,511,517,525,572,580,608,616,639,645,653,676,684,707,715,748,756,779,785,791,800,806,815,821,830,836,842,873,879,907,913,941,947,975,981,1009,1015,1152,1158,1163,1208,1222,1228],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"mapbox-style-quality-skill",[47],{"type":48,"value":49},"text","Mapbox Style Quality Skill",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"This skill provides expert guidance on ensuring Mapbox style quality through validation, accessibility, and optimization tools.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"when-to-use-quality-tools",[61],{"type":48,"value":62},"When to Use Quality Tools",{"type":42,"tag":64,"props":65,"children":67},"h3",{"id":66},"pre-production-checklist",[68],{"type":48,"value":69},"Pre-Production Checklist",{"type":42,"tag":51,"props":71,"children":72},{},[73],{"type":48,"value":74},"Before deploying any Mapbox style to production:",{"type":42,"tag":76,"props":77,"children":78},"ol",{},[79,91,101,111,121,131,141],{"type":42,"tag":80,"props":81,"children":82},"li",{},[83,89],{"type":42,"tag":84,"props":85,"children":86},"strong",{},[87],{"type":48,"value":88},"Validate all expressions",{"type":48,"value":90}," - Catch syntax errors before runtime",{"type":42,"tag":80,"props":92,"children":93},{},[94,99],{"type":42,"tag":84,"props":95,"children":96},{},[97],{"type":48,"value":98},"Check color contrast",{"type":48,"value":100}," - Ensure text is readable (WCAG compliance)",{"type":42,"tag":80,"props":102,"children":103},{},[104,109],{"type":42,"tag":84,"props":105,"children":106},{},[107],{"type":48,"value":108},"Validate GeoJSON sources",{"type":48,"value":110}," - Ensure data integrity",{"type":42,"tag":80,"props":112,"children":113},{},[114,119],{"type":42,"tag":84,"props":115,"children":116},{},[117],{"type":48,"value":118},"Optimize style",{"type":48,"value":120}," - Reduce file size and improve performance",{"type":42,"tag":80,"props":122,"children":123},{},[124,129],{"type":42,"tag":84,"props":125,"children":126},{},[127],{"type":48,"value":128},"Compare versions",{"type":48,"value":130}," - Understand what changed",{"type":42,"tag":80,"props":132,"children":133},{},[134,139],{"type":42,"tag":84,"props":135,"children":136},{},[137],{"type":48,"value":138},"Remove empty layers",{"type":48,"value":140}," - Delete layers with no visible paint properties as a final cleanup step",{"type":42,"tag":80,"props":142,"children":143},{},[144,149,151,158,160,166,168,174,175,180],{"type":42,"tag":84,"props":145,"children":146},{},[147],{"type":48,"value":148},"Simplify redundant boolean expressions",{"type":48,"value":150}," - Clean up filters with unnecessary boolean logic (e.g., ",{"type":42,"tag":152,"props":153,"children":155},"code",{"className":154},[],[156],{"type":48,"value":157},"[\"all\", expr]",{"type":48,"value":159}," → ",{"type":42,"tag":152,"props":161,"children":163},{"className":162},[],[164],{"type":48,"value":165},"expr",{"type":48,"value":167},", ",{"type":42,"tag":152,"props":169,"children":171},{"className":170},[],[172],{"type":48,"value":173},"[\"any\", false, expr]",{"type":48,"value":159},{"type":42,"tag":152,"props":176,"children":178},{"className":177},[],[179],{"type":48,"value":165},{"type":48,"value":181},")",{"type":42,"tag":64,"props":183,"children":185},{"id":184},"during-development",[186],{"type":48,"value":187},"During Development",{"type":42,"tag":51,"props":189,"children":190},{},[191],{"type":42,"tag":84,"props":192,"children":193},{},[194],{"type":48,"value":195},"When adding GeoJSON data:",{"type":42,"tag":197,"props":198,"children":199},"ul",{},[200],{"type":42,"tag":80,"props":201,"children":202},{},[203,205,211],{"type":48,"value":204},"Always validate external GeoJSON with ",{"type":42,"tag":152,"props":206,"children":208},{"className":207},[],[209],{"type":48,"value":210},"validate_geojson_tool",{"type":48,"value":212}," before using as a source",{"type":42,"tag":51,"props":214,"children":215},{},[216],{"type":42,"tag":84,"props":217,"children":218},{},[219],{"type":48,"value":220},"When writing expressions:",{"type":42,"tag":197,"props":222,"children":223},{},[224,237,242,247],{"type":42,"tag":80,"props":225,"children":226},{},[227,229,235],{"type":48,"value":228},"Validate expressions with ",{"type":42,"tag":152,"props":230,"children":232},{"className":231},[],[233],{"type":48,"value":234},"validate_expression_tool",{"type":48,"value":236}," as you write them",{"type":42,"tag":80,"props":238,"children":239},{},[240],{"type":48,"value":241},"Catch type mismatches early (e.g., using string operator on number)",{"type":42,"tag":80,"props":243,"children":244},{},[245],{"type":48,"value":246},"Verify operator availability in your Mapbox GL JS version",{"type":42,"tag":80,"props":248,"children":249},{},[250],{"type":48,"value":251},"Test expressions with expected data types",{"type":42,"tag":51,"props":253,"children":254},{},[255],{"type":42,"tag":84,"props":256,"children":257},{},[258],{"type":48,"value":259},"When styling text\u002Flabels:",{"type":42,"tag":197,"props":261,"children":262},{},[263,274,279,284],{"type":42,"tag":80,"props":264,"children":265},{},[266,268],{"type":48,"value":267},"Check foreground\u002Fbackground contrast with ",{"type":42,"tag":152,"props":269,"children":271},{"className":270},[],[272],{"type":48,"value":273},"check_color_contrast_tool",{"type":42,"tag":80,"props":275,"children":276},{},[277],{"type":48,"value":278},"Aim for WCAG AA minimum (4.5:1 for normal text, 3:1 for large text)",{"type":42,"tag":80,"props":280,"children":281},{},[282],{"type":48,"value":283},"Use AAA standard (7:1 for normal text) for better accessibility",{"type":42,"tag":80,"props":285,"children":286},{},[287],{"type":48,"value":288},"Consider different background scenarios (map tiles, overlays)",{"type":42,"tag":64,"props":290,"children":292},{"id":291},"before-committing-changes",[293],{"type":48,"value":294},"Before Committing Changes",{"type":42,"tag":51,"props":296,"children":297},{},[298],{"type":42,"tag":84,"props":299,"children":300},{},[301],{"type":48,"value":302},"Compare style versions:",{"type":42,"tag":197,"props":304,"children":305},{},[306,319,324,329],{"type":42,"tag":80,"props":307,"children":308},{},[309,311,317],{"type":48,"value":310},"Use ",{"type":42,"tag":152,"props":312,"children":314},{"className":313},[],[315],{"type":48,"value":316},"compare_styles_tool",{"type":48,"value":318}," to generate a diff report",{"type":42,"tag":80,"props":320,"children":321},{},[322],{"type":48,"value":323},"Review all layer changes, source modifications, and expression updates",{"type":42,"tag":80,"props":325,"children":326},{},[327],{"type":48,"value":328},"Understand the impact of your changes",{"type":42,"tag":80,"props":330,"children":331},{},[332],{"type":48,"value":333},"Document significant changes in commit messages",{"type":42,"tag":64,"props":335,"children":337},{"id":336},"before-deployment",[338],{"type":48,"value":339},"Before Deployment",{"type":42,"tag":51,"props":341,"children":342},{},[343],{"type":42,"tag":84,"props":344,"children":345},{},[346],{"type":48,"value":347},"Optimize the style:",{"type":42,"tag":197,"props":349,"children":350},{},[351,364,369,374,393],{"type":42,"tag":80,"props":352,"children":353},{},[354,356,362],{"type":48,"value":355},"Run ",{"type":42,"tag":152,"props":357,"children":359},{"className":358},[],[360],{"type":48,"value":361},"optimize_style_tool",{"type":48,"value":363}," to reduce file size",{"type":42,"tag":80,"props":365,"children":366},{},[367],{"type":48,"value":368},"Remove unused sources that reference deleted layers",{"type":42,"tag":80,"props":370,"children":371},{},[372],{"type":48,"value":373},"Eliminate duplicate layers with identical properties",{"type":42,"tag":80,"props":375,"children":376},{},[377,379,384,386,391],{"type":48,"value":378},"Simplify redundant boolean expressions in filters (e.g., collapse ",{"type":42,"tag":152,"props":380,"children":382},{"className":381},[],[383],{"type":48,"value":157},{"type":48,"value":385}," to ",{"type":42,"tag":152,"props":387,"children":389},{"className":388},[],[390],{"type":48,"value":165},{"type":48,"value":392},", remove tautological conditions)",{"type":42,"tag":80,"props":394,"children":395},{},[396],{"type":48,"value":397},"Remove empty layers (layers with no visible paint properties) as a final cleanup step",{"type":42,"tag":57,"props":399,"children":401},{"id":400},"validation-best-practices",[402],{"type":48,"value":403},"Validation Best Practices",{"type":42,"tag":64,"props":405,"children":407},{"id":406},"geojson-validation",[408],{"type":48,"value":409},"GeoJSON Validation",{"type":42,"tag":51,"props":411,"children":412},{},[413],{"type":42,"tag":84,"props":414,"children":415},{},[416],{"type":48,"value":417},"Always validate when:",{"type":42,"tag":197,"props":419,"children":420},{},[421,426,431,436],{"type":42,"tag":80,"props":422,"children":423},{},[424],{"type":48,"value":425},"Loading GeoJSON from user uploads",{"type":42,"tag":80,"props":427,"children":428},{},[429],{"type":48,"value":430},"Fetching GeoJSON from external APIs",{"type":42,"tag":80,"props":432,"children":433},{},[434],{"type":48,"value":435},"Processing GeoJSON from third-party sources",{"type":42,"tag":80,"props":437,"children":438},{},[439],{"type":48,"value":440},"Converting between data formats",{"type":42,"tag":51,"props":442,"children":443},{},[444],{"type":42,"tag":84,"props":445,"children":446},{},[447],{"type":48,"value":448},"Common GeoJSON errors:",{"type":42,"tag":197,"props":450,"children":451},{},[452,457,462,481,486],{"type":42,"tag":80,"props":453,"children":454},{},[455],{"type":48,"value":456},"Invalid coordinate ranges (longitude > 180 or \u003C -180)",{"type":42,"tag":80,"props":458,"children":459},{},[460],{"type":48,"value":461},"Unclosed polygon rings (first and last coordinates must match)",{"type":42,"tag":80,"props":463,"children":464},{},[465,467,473,475,480],{"type":48,"value":466},"Wrong coordinate order (should be ",{"type":42,"tag":468,"props":469,"children":470},"span",{},[471],{"type":48,"value":472},"longitude, latitude",{"type":48,"value":474},", not ",{"type":42,"tag":468,"props":476,"children":477},{},[478],{"type":48,"value":479},"latitude, longitude",{"type":48,"value":181},{"type":42,"tag":80,"props":482,"children":483},{},[484],{"type":48,"value":485},"Missing required properties (type, coordinates, geometry)",{"type":42,"tag":80,"props":487,"children":488},{},[489],{"type":48,"value":490},"Invalid geometry types or nesting",{"type":42,"tag":51,"props":492,"children":493},{},[494],{"type":42,"tag":84,"props":495,"children":496},{},[497],{"type":48,"value":498},"Example workflow:",{"type":42,"tag":500,"props":501,"children":505},"pre",{"className":502,"code":504,"language":48},[503],"language-text","1. Receive GeoJSON data\n2. Validate with validate_geojson_tool\n3. If valid: Add as source to style\n4. If invalid: Fix errors, re-validate\n",[506],{"type":42,"tag":152,"props":507,"children":509},{"__ignoreMap":508},"",[510],{"type":48,"value":504},{"type":42,"tag":64,"props":512,"children":514},{"id":513},"expression-validation",[515],{"type":48,"value":516},"Expression Validation",{"type":42,"tag":51,"props":518,"children":519},{},[520],{"type":42,"tag":84,"props":521,"children":522},{},[523],{"type":48,"value":524},"Validate expressions for:",{"type":42,"tag":197,"props":526,"children":527},{},[528,541,562,567],{"type":42,"tag":80,"props":529,"children":530},{},[531,533,539],{"type":48,"value":532},"Filter conditions (",{"type":42,"tag":152,"props":534,"children":536},{"className":535},[],[537],{"type":48,"value":538},"filter",{"type":48,"value":540}," property on layers)",{"type":42,"tag":80,"props":542,"children":543},{},[544,546,552,554,560],{"type":48,"value":545},"Data-driven styling (",{"type":42,"tag":152,"props":547,"children":549},{"className":548},[],[550],{"type":48,"value":551},"paint",{"type":48,"value":553}," and ",{"type":42,"tag":152,"props":555,"children":557},{"className":556},[],[558],{"type":48,"value":559},"layout",{"type":48,"value":561}," properties)",{"type":42,"tag":80,"props":563,"children":564},{},[565],{"type":48,"value":566},"Feature state expressions",{"type":42,"tag":80,"props":568,"children":569},{},[570],{"type":48,"value":571},"Dynamic property calculations",{"type":42,"tag":51,"props":573,"children":574},{},[575],{"type":42,"tag":84,"props":576,"children":577},{},[578],{"type":48,"value":579},"Common expression errors:",{"type":42,"tag":197,"props":581,"children":582},{},[583,588,593,598,603],{"type":42,"tag":80,"props":584,"children":585},{},[586],{"type":48,"value":587},"Type mismatches (string operators on numbers)",{"type":42,"tag":80,"props":589,"children":590},{},[591],{"type":48,"value":592},"Invalid operator names or wrong syntax",{"type":42,"tag":80,"props":594,"children":595},{},[596],{"type":48,"value":597},"Wrong number of arguments for operators",{"type":42,"tag":80,"props":599,"children":600},{},[601],{"type":48,"value":602},"Nested expression errors",{"type":42,"tag":80,"props":604,"children":605},{},[606],{"type":48,"value":607},"Using unavailable operators for your GL JS version",{"type":42,"tag":51,"props":609,"children":610},{},[611],{"type":42,"tag":84,"props":612,"children":613},{},[614],{"type":48,"value":615},"Prevention strategies:",{"type":42,"tag":197,"props":617,"children":618},{},[619,624,629,634],{"type":42,"tag":80,"props":620,"children":621},{},[622],{"type":48,"value":623},"Validate as you write expressions, not at runtime",{"type":42,"tag":80,"props":625,"children":626},{},[627],{"type":48,"value":628},"Test expressions with representative data",{"type":42,"tag":80,"props":630,"children":631},{},[632],{"type":48,"value":633},"Use type checking (expectedType parameter)",{"type":42,"tag":80,"props":635,"children":636},{},[637],{"type":48,"value":638},"Validate in context (layer, filter, paint, layout)",{"type":42,"tag":64,"props":640,"children":642},{"id":641},"accessibility-validation",[643],{"type":48,"value":644},"Accessibility Validation",{"type":42,"tag":51,"props":646,"children":647},{},[648],{"type":42,"tag":84,"props":649,"children":650},{},[651],{"type":48,"value":652},"WCAG Levels:",{"type":42,"tag":197,"props":654,"children":655},{},[656,666],{"type":42,"tag":80,"props":657,"children":658},{},[659,664],{"type":42,"tag":84,"props":660,"children":661},{},[662],{"type":48,"value":663},"AA",{"type":48,"value":665}," (minimum): 4.5:1 for normal text, 3:1 for large text",{"type":42,"tag":80,"props":667,"children":668},{},[669,674],{"type":42,"tag":84,"props":670,"children":671},{},[672],{"type":48,"value":673},"AAA",{"type":48,"value":675}," (enhanced): 7:1 for normal text, 4.5:1 for large text",{"type":42,"tag":51,"props":677,"children":678},{},[679],{"type":42,"tag":84,"props":680,"children":681},{},[682],{"type":48,"value":683},"Text size categories:",{"type":42,"tag":197,"props":685,"children":686},{},[687,697],{"type":42,"tag":80,"props":688,"children":689},{},[690,695],{"type":42,"tag":84,"props":691,"children":692},{},[693],{"type":48,"value":694},"Normal",{"type":48,"value":696},": \u003C 18pt or \u003C 14pt bold",{"type":42,"tag":80,"props":698,"children":699},{},[700,705],{"type":42,"tag":84,"props":701,"children":702},{},[703],{"type":48,"value":704},"Large",{"type":48,"value":706},": ≥ 18pt or ≥ 14pt bold",{"type":42,"tag":51,"props":708,"children":709},{},[710],{"type":42,"tag":84,"props":711,"children":712},{},[713],{"type":48,"value":714},"Common scenarios to check:",{"type":42,"tag":197,"props":716,"children":717},{},[718,723,728,733,738,743],{"type":42,"tag":80,"props":719,"children":720},{},[721],{"type":48,"value":722},"Text labels on map tiles",{"type":42,"tag":80,"props":724,"children":725},{},[726],{"type":48,"value":727},"POI labels with background colors",{"type":42,"tag":80,"props":729,"children":730},{},[731],{"type":48,"value":732},"Custom markers with text",{"type":42,"tag":80,"props":734,"children":735},{},[736],{"type":48,"value":737},"UI overlays on maps",{"type":42,"tag":80,"props":739,"children":740},{},[741],{"type":48,"value":742},"Legend text and symbols",{"type":42,"tag":80,"props":744,"children":745},{},[746],{"type":48,"value":747},"Attribution text",{"type":42,"tag":51,"props":749,"children":750},{},[751],{"type":42,"tag":84,"props":752,"children":753},{},[754],{"type":48,"value":755},"Testing strategy:",{"type":42,"tag":197,"props":757,"children":758},{},[759,764,769,774],{"type":42,"tag":80,"props":760,"children":761},{},[762],{"type":48,"value":763},"Test against both light and dark map tiles",{"type":42,"tag":80,"props":765,"children":766},{},[767],{"type":48,"value":768},"Consider overlay backgrounds (popups, modals)",{"type":42,"tag":80,"props":770,"children":771},{},[772],{"type":48,"value":773},"Test in different lighting conditions (mobile outdoor use)",{"type":42,"tag":80,"props":775,"children":776},{},[777],{"type":48,"value":778},"Verify contrast at different zoom levels",{"type":42,"tag":57,"props":780,"children":782},{"id":781},"quality-workflow-examples",[783],{"type":48,"value":784},"Quality Workflow Examples",{"type":42,"tag":64,"props":786,"children":788},{"id":787},"basic-quality-check",[789],{"type":48,"value":790},"Basic Quality Check",{"type":42,"tag":500,"props":792,"children":795},{"className":793,"code":794,"language":48},[503],"1. Validate expressions in style\n2. Check color contrast for text layers\n3. Optimize if needed\n",[796],{"type":42,"tag":152,"props":797,"children":798},{"__ignoreMap":508},[799],{"type":48,"value":794},{"type":42,"tag":64,"props":801,"children":803},{"id":802},"full-pre-production-workflow",[804],{"type":48,"value":805},"Full Pre-Production Workflow",{"type":42,"tag":500,"props":807,"children":810},{"className":808,"code":809,"language":48},[503],"1. Validate all GeoJSON sources\n2. Validate all expressions (filters, paint, layout)\n3. Check color contrast for all text layers\n4. Compare with previous production version\n5. Optimize style\n6. Test optimized style\n7. Deploy\n",[811],{"type":42,"tag":152,"props":812,"children":813},{"__ignoreMap":508},[814],{"type":48,"value":809},{"type":42,"tag":64,"props":816,"children":818},{"id":817},"troubleshooting-workflow",[819],{"type":48,"value":820},"Troubleshooting Workflow",{"type":42,"tag":500,"props":822,"children":825},{"className":823,"code":824,"language":48},[503],"1. Compare working vs. broken style\n2. Identify differences\n3. Validate suspicious expressions\n4. Check GeoJSON data if source-related\n5. Verify color contrast if visibility issue\n",[826],{"type":42,"tag":152,"props":827,"children":828},{"__ignoreMap":508},[829],{"type":48,"value":824},{"type":42,"tag":57,"props":831,"children":833},{"id":832},"common-issues-and-solutions",[834],{"type":48,"value":835},"Common Issues and Solutions",{"type":42,"tag":64,"props":837,"children":839},{"id":838},"runtime-expression-errors",[840],{"type":48,"value":841},"Runtime Expression Errors",{"type":42,"tag":51,"props":843,"children":844},{},[845,850,852,857,859,864,866,871],{"type":42,"tag":84,"props":846,"children":847},{},[848],{"type":48,"value":849},"Problem:",{"type":48,"value":851}," Map throws expression errors at runtime\n",{"type":42,"tag":84,"props":853,"children":854},{},[855],{"type":48,"value":856},"Solution:",{"type":48,"value":858}," Validate expressions with ",{"type":42,"tag":152,"props":860,"children":862},{"className":861},[],[863],{"type":48,"value":234},{"type":48,"value":865}," during development\n",{"type":42,"tag":84,"props":867,"children":868},{},[869],{"type":48,"value":870},"Prevention:",{"type":48,"value":872}," Add expression validation to pre-commit hooks or CI\u002FCD",{"type":42,"tag":64,"props":874,"children":876},{"id":875},"poor-text-readability",[877],{"type":48,"value":878},"Poor Text Readability",{"type":42,"tag":51,"props":880,"children":881},{},[882,886,888,892,894,899,901,905],{"type":42,"tag":84,"props":883,"children":884},{},[885],{"type":48,"value":849},{"type":48,"value":887}," Text labels are hard to read on map\n",{"type":42,"tag":84,"props":889,"children":890},{},[891],{"type":48,"value":856},{"type":48,"value":893}," Check contrast with ",{"type":42,"tag":152,"props":895,"children":897},{"className":896},[],[898],{"type":48,"value":273},{"type":48,"value":900},", adjust colors to meet WCAG AA\n",{"type":42,"tag":84,"props":902,"children":903},{},[904],{"type":48,"value":870},{"type":48,"value":906}," Test text on both light and dark backgrounds, check at different zoom levels",{"type":42,"tag":64,"props":908,"children":910},{"id":909},"large-style-file-size",[911],{"type":48,"value":912},"Large Style File Size",{"type":42,"tag":51,"props":914,"children":915},{},[916,920,922,926,928,933,935,939],{"type":42,"tag":84,"props":917,"children":918},{},[919],{"type":48,"value":849},{"type":48,"value":921}," Style takes long to load or transfer\n",{"type":42,"tag":84,"props":923,"children":924},{},[925],{"type":48,"value":856},{"type":48,"value":927}," Run ",{"type":42,"tag":152,"props":929,"children":931},{"className":930},[],[932],{"type":48,"value":361},{"type":48,"value":934}," to remove redundancies and simplify\n",{"type":42,"tag":84,"props":936,"children":937},{},[938],{"type":48,"value":870},{"type":48,"value":940}," Regularly optimize during development, remove unused sources immediately",{"type":42,"tag":64,"props":942,"children":944},{"id":943},"invalid-geojson-source",[945],{"type":48,"value":946},"Invalid GeoJSON Source",{"type":42,"tag":51,"props":948,"children":949},{},[950,954,956,960,962,967,969,973],{"type":42,"tag":84,"props":951,"children":952},{},[953],{"type":48,"value":849},{"type":48,"value":955}," GeoJSON source fails to load or render\n",{"type":42,"tag":84,"props":957,"children":958},{},[959],{"type":48,"value":856},{"type":48,"value":961}," Validate with ",{"type":42,"tag":152,"props":963,"children":965},{"className":964},[],[966],{"type":48,"value":210},{"type":48,"value":968},", fix coordinate issues, verify structure\n",{"type":42,"tag":84,"props":970,"children":971},{},[972],{"type":48,"value":870},{"type":48,"value":974}," Validate all external GeoJSON before adding to style",{"type":42,"tag":64,"props":976,"children":978},{"id":977},"unexpected-style-changes",[979],{"type":48,"value":980},"Unexpected Style Changes",{"type":42,"tag":51,"props":982,"children":983},{},[984,988,990,994,996,1001,1003,1007],{"type":42,"tag":84,"props":985,"children":986},{},[987],{"type":48,"value":849},{"type":48,"value":989}," Style changed but unsure what modified\n",{"type":42,"tag":84,"props":991,"children":992},{},[993],{"type":48,"value":856},{"type":48,"value":995}," Use ",{"type":42,"tag":152,"props":997,"children":999},{"className":998},[],[1000],{"type":48,"value":316},{"type":48,"value":1002}," to generate diff report\n",{"type":42,"tag":84,"props":1004,"children":1005},{},[1006],{"type":48,"value":870},{"type":48,"value":1008}," Compare before\u002Fafter for all significant changes, document modifications",{"type":42,"tag":57,"props":1010,"children":1012},{"id":1011},"tool-quick-reference",[1013],{"type":48,"value":1014},"Tool Quick Reference",{"type":42,"tag":1016,"props":1017,"children":1018},"table",{},[1019,1043],{"type":42,"tag":1020,"props":1021,"children":1022},"thead",{},[1023],{"type":42,"tag":1024,"props":1025,"children":1026},"tr",{},[1027,1033,1038],{"type":42,"tag":1028,"props":1029,"children":1030},"th",{},[1031],{"type":48,"value":1032},"Tool",{"type":42,"tag":1028,"props":1034,"children":1035},{},[1036],{"type":48,"value":1037},"Use When",{"type":42,"tag":1028,"props":1039,"children":1040},{},[1041],{"type":48,"value":1042},"Output",{"type":42,"tag":1044,"props":1045,"children":1046},"tbody",{},[1047,1069,1089,1110,1131],{"type":42,"tag":1024,"props":1048,"children":1049},{},[1050,1059,1064],{"type":42,"tag":1051,"props":1052,"children":1053},"td",{},[1054],{"type":42,"tag":152,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":48,"value":210},{"type":42,"tag":1051,"props":1060,"children":1061},{},[1062],{"type":48,"value":1063},"Adding GeoJSON sources",{"type":42,"tag":1051,"props":1065,"children":1066},{},[1067],{"type":48,"value":1068},"Valid\u002Finvalid + error list",{"type":42,"tag":1024,"props":1070,"children":1071},{},[1072,1080,1085],{"type":42,"tag":1051,"props":1073,"children":1074},{},[1075],{"type":42,"tag":152,"props":1076,"children":1078},{"className":1077},[],[1079],{"type":48,"value":234},{"type":42,"tag":1051,"props":1081,"children":1082},{},[1083],{"type":48,"value":1084},"Writing expressions",{"type":42,"tag":1051,"props":1086,"children":1087},{},[1088],{"type":48,"value":1068},{"type":42,"tag":1024,"props":1090,"children":1091},{},[1092,1100,1105],{"type":42,"tag":1051,"props":1093,"children":1094},{},[1095],{"type":42,"tag":152,"props":1096,"children":1098},{"className":1097},[],[1099],{"type":48,"value":273},{"type":42,"tag":1051,"props":1101,"children":1102},{},[1103],{"type":48,"value":1104},"Styling text labels",{"type":42,"tag":1051,"props":1106,"children":1107},{},[1108],{"type":48,"value":1109},"Passes\u002Ffails + WCAG levels",{"type":42,"tag":1024,"props":1111,"children":1112},{},[1113,1121,1126],{"type":42,"tag":1051,"props":1114,"children":1115},{},[1116],{"type":42,"tag":152,"props":1117,"children":1119},{"className":1118},[],[1120],{"type":48,"value":316},{"type":42,"tag":1051,"props":1122,"children":1123},{},[1124],{"type":48,"value":1125},"Reviewing changes",{"type":42,"tag":1051,"props":1127,"children":1128},{},[1129],{"type":48,"value":1130},"Diff report with paths",{"type":42,"tag":1024,"props":1132,"children":1133},{},[1134,1142,1147],{"type":42,"tag":1051,"props":1135,"children":1136},{},[1137],{"type":42,"tag":152,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":48,"value":361},{"type":42,"tag":1051,"props":1143,"children":1144},{},[1145],{"type":48,"value":1146},"Before deployment",{"type":42,"tag":1051,"props":1148,"children":1149},{},[1150],{"type":48,"value":1151},"Optimized style + savings",{"type":42,"tag":57,"props":1153,"children":1155},{"id":1154},"reference-files",[1156],{"type":48,"value":1157},"Reference Files",{"type":42,"tag":51,"props":1159,"children":1160},{},[1161],{"type":48,"value":1162},"For detailed guidance on specific topics, load the relevant reference:",{"type":42,"tag":197,"props":1164,"children":1165},{},[1166,1180,1194],{"type":42,"tag":80,"props":1167,"children":1168},{},[1169,1178],{"type":42,"tag":84,"props":1170,"children":1171},{},[1172],{"type":42,"tag":152,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":48,"value":1177},"references\u002Foptimization.md",{"type":48,"value":1179}," — Optimization types, strategies, recommended order, and maintenance best practices",{"type":42,"tag":80,"props":1181,"children":1182},{},[1183,1192],{"type":42,"tag":84,"props":1184,"children":1185},{},[1186],{"type":42,"tag":152,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":48,"value":1191},"references\u002Fcomparison.md",{"type":48,"value":1193}," — Style comparison workflows, ignoreMetadata usage, and refactoring workflow",{"type":42,"tag":80,"props":1195,"children":1196},{},[1197,1206],{"type":42,"tag":84,"props":1198,"children":1199},{},[1200],{"type":42,"tag":152,"props":1201,"children":1203},{"className":1202},[],[1204],{"type":48,"value":1205},"references\u002Fci-integration.md",{"type":48,"value":1207}," — Git pre-commit hooks, CI\u002FCD pipeline steps, and code review checklist",{"type":42,"tag":1209,"props":1210,"children":1211},"blockquote",{},[1212],{"type":42,"tag":51,"props":1213,"children":1214},{},[1215,1220],{"type":42,"tag":84,"props":1216,"children":1217},{},[1218],{"type":48,"value":1219},"Load instruction:",{"type":48,"value":1221}," Read the reference file when the user needs in-depth guidance on that topic.",{"type":42,"tag":57,"props":1223,"children":1225},{"id":1224},"additional-resources",[1226],{"type":48,"value":1227},"Additional Resources",{"type":42,"tag":197,"props":1229,"children":1230},{},[1231,1243,1253,1263],{"type":42,"tag":80,"props":1232,"children":1233},{},[1234],{"type":42,"tag":1235,"props":1236,"children":1240},"a",{"href":1237,"rel":1238},"https:\u002F\u002Fdocs.mapbox.com\u002Fmapbox-gl-js\u002Fstyle-spec\u002F",[1239],"nofollow",[1241],{"type":48,"value":1242},"Mapbox Style Specification",{"type":42,"tag":80,"props":1244,"children":1245},{},[1246],{"type":42,"tag":1235,"props":1247,"children":1250},{"href":1248,"rel":1249},"https:\u002F\u002Fwww.w3.org\u002FWAI\u002FWCAG21\u002Fquickref\u002F",[1239],[1251],{"type":48,"value":1252},"WCAG 2.1 Guidelines",{"type":42,"tag":80,"props":1254,"children":1255},{},[1256],{"type":42,"tag":1235,"props":1257,"children":1260},{"href":1258,"rel":1259},"https:\u002F\u002Ftools.ietf.org\u002Fhtml\u002Frfc7946",[1239],[1261],{"type":48,"value":1262},"GeoJSON Specification (RFC 7946)",{"type":42,"tag":80,"props":1264,"children":1265},{},[1266],{"type":42,"tag":1235,"props":1267,"children":1270},{"href":1268,"rel":1269},"https:\u002F\u002Fdocs.mapbox.com\u002Fmapbox-gl-js\u002Fstyle-spec\u002Fexpressions\u002F",[1239],[1271],{"type":48,"value":1272},"Mapbox Expression Reference",{"items":1274,"total":1378},[1275,1289,1304,1317,1339,1351,1365],{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"stars":26,"repoUrl":27,"updatedAt":1288},"mapbox-android-patterns","integrate Mapbox Maps SDK on Android","Official integration patterns for Mapbox Maps SDK on Android. Covers installation, adding markers, user location, custom data, styles, camera control, and featureset interactions. Based on official Mapbox documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1281,1284,1285],{"name":1282,"slug":1283,"type":15},"Android","android",{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},"Mobile","mobile","2026-07-30T05:30:51.739352",{"slug":1290,"name":1290,"fn":1291,"description":1292,"org":1293,"tags":1294,"stars":26,"repoUrl":27,"updatedAt":1303},"mapbox-cartography","apply cartographic design principles to Mapbox","Expert guidance on map design principles, color theory, visual hierarchy, typography, and cartographic best practices for creating effective and beautiful maps with Mapbox. Use when designing map styles, choosing colors, or making cartographic decisions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1295,1298,1299,1300],{"name":1296,"slug":1297,"type":15},"Branding","branding",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":1301,"slug":1302,"type":15},"Typography","typography","2026-04-06T18:28:41.2556",{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1308,"tags":1309,"stars":26,"repoUrl":27,"updatedAt":1316},"mapbox-data-visualization-patterns","implement Mapbox data visualization patterns","Patterns for visualizing data on maps including choropleth maps, heat maps, 3D visualizations, data-driven styling, and animated data. Covers layer types, color scales, and performance optimization.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1310,1313,1314,1315],{"name":1311,"slug":1312,"type":15},"Data Visualization","data-visualization",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},"2026-04-06T18:29:02.907655",{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1321,"tags":1322,"stars":26,"repoUrl":27,"updatedAt":1338},"mapbox-flutter-patterns","integrate Mapbox maps into Flutter applications","Official integration patterns for the Mapbox Maps Flutter SDK. Covers installation, iOS\u002FAndroid platform setup, access token configuration, MapWidget initialization, camera control, annotations with tap handling, user location, and loading GeoJSON. Based on official Mapbox documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1323,1324,1327,1330,1333,1334,1335],{"name":1282,"slug":1283,"type":15},{"name":1325,"slug":1326,"type":15},"Dart","dart",{"name":1328,"slug":1329,"type":15},"Flutter","flutter",{"name":1331,"slug":1332,"type":15},"iOS","ios",{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"name":1336,"slug":1337,"type":15},"SDK","sdk","2026-05-12T06:03:11.211517",{"slug":1340,"name":1340,"fn":1341,"description":1342,"org":1343,"tags":1344,"stars":26,"repoUrl":27,"updatedAt":1350},"mapbox-geospatial-operations","select geospatial tools for Mapbox operations","Expert guidance on choosing the right geospatial tool based on problem type, accuracy requirements, and performance needs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1345,1346,1347],{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":1348,"slug":1349,"type":15},"Strategy","strategy","2026-07-30T05:30:52.766227",{"slug":1352,"name":1352,"fn":1353,"description":1354,"org":1355,"tags":1356,"stars":26,"repoUrl":27,"updatedAt":1364},"mapbox-google-maps-migration","migrate from Google Maps to Mapbox","Migration guide for developers moving from Google Maps Platform to Mapbox GL JS, covering API equivalents, pattern translations, and key differences",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1357,1358,1361],{"name":9,"slug":8,"type":15},{"name":1359,"slug":1360,"type":15},"Migration","migration",{"name":1362,"slug":1363,"type":15},"Web Development","web-development","2026-04-06T18:28:56.459496",{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1369,"tags":1370,"stars":26,"repoUrl":27,"updatedAt":1377},"mapbox-ios-patterns","integrate Mapbox Maps SDK on iOS","Official integration patterns for Mapbox Maps SDK on iOS. Covers installation, adding markers, user location, custom data, styles, camera control, and featureset interactions. Based on official Mapbox documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1371,1372,1373,1374],{"name":1331,"slug":1332,"type":15},{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"name":1375,"slug":1376,"type":15},"Swift","swift","2026-07-30T05:30:54.75526",19,{"items":1380,"total":1378},[1381,1387,1394,1401,1411,1417,1423,1430,1444,1457,1472,1484],{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1382,"tags":1383,"stars":26,"repoUrl":27,"updatedAt":1288},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1384,1385,1386],{"name":1282,"slug":1283,"type":15},{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"slug":1290,"name":1290,"fn":1291,"description":1292,"org":1388,"tags":1389,"stars":26,"repoUrl":27,"updatedAt":1303},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1390,1391,1392,1393],{"name":1296,"slug":1297,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":1301,"slug":1302,"type":15},{"slug":1305,"name":1305,"fn":1306,"description":1307,"org":1395,"tags":1396,"stars":26,"repoUrl":27,"updatedAt":1316},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1397,1398,1399,1400],{"name":1311,"slug":1312,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1402,"tags":1403,"stars":26,"repoUrl":27,"updatedAt":1338},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1404,1405,1406,1407,1408,1409,1410],{"name":1282,"slug":1283,"type":15},{"name":1325,"slug":1326,"type":15},{"name":1328,"slug":1329,"type":15},{"name":1331,"slug":1332,"type":15},{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"name":1336,"slug":1337,"type":15},{"slug":1340,"name":1340,"fn":1341,"description":1342,"org":1412,"tags":1413,"stars":26,"repoUrl":27,"updatedAt":1350},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1414,1415,1416],{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":1348,"slug":1349,"type":15},{"slug":1352,"name":1352,"fn":1353,"description":1354,"org":1418,"tags":1419,"stars":26,"repoUrl":27,"updatedAt":1364},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1420,1421,1422],{"name":9,"slug":8,"type":15},{"name":1359,"slug":1360,"type":15},{"name":1362,"slug":1363,"type":15},{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1424,"tags":1425,"stars":26,"repoUrl":27,"updatedAt":1377},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1426,1427,1428,1429],{"name":1331,"slug":1332,"type":15},{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"name":1375,"slug":1376,"type":15},{"slug":1431,"name":1431,"fn":1432,"description":1433,"org":1434,"tags":1435,"stars":26,"repoUrl":27,"updatedAt":1443},"mapbox-location-grounding","generate grounded location-aware responses with Mapbox","Compose Mapbox MCP tools to produce grounded, cited location-aware responses from live data instead of training data",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1436,1439,1440],{"name":1437,"slug":1438,"type":15},"Data Quality","data-quality",{"name":9,"slug":8,"type":15},{"name":1441,"slug":1442,"type":15},"MCP","mcp","2026-04-15T05:01:44.248764",{"slug":1445,"name":1445,"fn":1446,"description":1447,"org":1448,"tags":1449,"stars":26,"repoUrl":27,"updatedAt":1456},"mapbox-maplibre-migration","migrate from MapLibre to Mapbox","Guide for migrating from MapLibre GL JS to Mapbox GL JS, covering API compatibility, token setup, style configuration, and the benefits of Mapbox's official support and ecosystem",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1450,1453,1454,1455],{"name":1451,"slug":1452,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},{"name":1359,"slug":1360,"type":15},{"name":1362,"slug":1363,"type":15},"2026-04-06T18:28:51.531856",{"slug":1458,"name":1458,"fn":1459,"description":1460,"org":1461,"tags":1462,"stars":26,"repoUrl":27,"updatedAt":1471},"mapbox-mcp-devkit-patterns","integrate Mapbox MCP DevKit in coding assistants","Integration patterns for Mapbox MCP DevKit Server in AI coding assistants. Covers setup, style management, token management, validation workflows, and documentation access through MCP. Use when building Mapbox applications with AI coding assistance.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1463,1466,1469,1470],{"name":1464,"slug":1465,"type":15},"Documentation","documentation",{"name":1467,"slug":1468,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":1441,"slug":1442,"type":15},"2026-04-06T18:28:53.790961",{"slug":1473,"name":1473,"fn":1474,"description":1475,"org":1476,"tags":1477,"stars":26,"repoUrl":27,"updatedAt":1483},"mapbox-mcp-runtime-patterns","integrate Mapbox MCP Server in AI apps","Integration patterns for Mapbox MCP Server in AI applications and agent frameworks. Covers runtime integration with pydantic-ai, mastra, LangChain, and custom agents. Use when building AI-powered applications that need geospatial capabilities.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1478,1481,1482],{"name":1479,"slug":1480,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},{"name":1441,"slug":1442,"type":15},"2026-04-06T18:28:55.164842",{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":26,"repoUrl":27,"updatedAt":1497},"mapbox-search-integration","implement Mapbox search in applications","Complete workflow for implementing Mapbox search in applications - from discovery questions to production-ready integration with best practices",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1490,1493,1494],{"name":1491,"slug":1492,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":1495,"slug":1496,"type":15},"Search","search","2026-04-06T18:28:50.264933"]