{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "mapbox-pointer-style-demo",
  "registryDependencies": [
    "@delta/mapbox-pointer"
  ],
  "files": [
    {
      "path": "examples/mapbox-pointer-style-demo.tsx",
      "content": "\"use client\"\n\nimport {\n  MapboxPointer,\n  MapboxPointerLabel,\n} from \"@/components/ui/mapbox-pointer\"\n\nexport default function MapboxPointerStyleDemo() {\n  // Dublin, Ireland coordinates\n  const latitude = 53.3598\n  const longitude = -6.2603\n\n  return (\n    <div className=\"w-full\">\n      <MapboxPointer\n        latitude={latitude}\n        longitude={longitude}\n        zoom={10.7}\n        style=\"navigation-night-v1\"\n        interactive={true}\n        className=\"h-96\"\n      >\n        <MapboxPointerLabel\n          label=\"Dublin, Ireland\"\n          href=\"https://en.wikipedia.org/wiki/Dublin\"\n        />\n      </MapboxPointer>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}