npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

aframe-mapbox-component

v4.0.1

Published

A map component using Mapbox for A-Frame.

Downloads

50

Readme

aframe-mapbox-component

A 3D street map entity & component for A-Frame. Uses Mapbox version 1.13.0 3-Clause BSD.

The component and idea was originally thankfully developed by jesstelford. I forked and renamed the project accordingly and will continue to develop this component.

Installation

Browser

Use directly from the unpkg CDN:

<head>
  <script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
  <script src="https://unpkg.com/aframe-mapbox-component/dist/aframe-mapbox-component.min.js"></script>
</head>

<body>
  <a-scene>
    <a-mapbox position="0 0 -5"></a-map>
    <a-camera></a-camera>
  </a-scene>
</body>

npm

Install via npm:

npm install aframe-mapbox-component

Then register and use.

import 'aframe';
import 'aframe-mapbox-component';

mapbox component

Schema

| attribute | type | default | description | |---|---|---|---| | pxToWorldRatio | number | 100 | The number of pixels per world unit to render the map on the plane. ie; when set to 100, will display 100 pixels per 1 meter in world space. (see a note on fidelity). However the resulting ratio is calculated from the widht and height of the material, which always needs to be in power of two. | | accesstoken | string | | An optional access token if using Mapbox's style. Not needed if you use your own styling | | style | string | '' | Either a standard Mapbox URL (like mapbox://styles/mapbox/satellite-v8) or a your custom style url created with Mapbox Studio | | ... | | | All other options are passed directly to Mapbox GL |

A note on fidelity

The higher pxToWorldRatio, the more map area will be displayed per world unit. That canvas has to be translated into a plane in world space. This is combined with the width and height in world space (from geometry.width and geometry.height on the entity) to set up the plane for rendering in 3D.

The map is rendered as a texture on a 3D plane. For best performance, texture sizes should be kept to powers of 2. Keeping this in mind, you should work to ensure width * pxToWorldRatio and height * pxToWorldRatio are powers of 2.

Events

| event name | data | description | |---|---|---| | mapbox-load | (none) | Fired before the first render of the map component | | mapbox-loaded | (none) | Fired on the first render of the map component | | mapbox-moveend | (none) | Fired when zoom, center, bearing, or pitch are changed after the initial render |