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 🙏

© 2024 – Pkg Stats / Ryan Hefner

pico-mercator

v0.6.0

Published

A minimal library for Mapbox GL-compatible web mercator projections

Downloads

15

Readme

PicoMercator

PicoMercator is a minimal library for doing web mercator projections in WebGL in a manner compatible with Mapbox GL. It provides GLSL code for projecting longitude/latitude coordinates into 3D space, and JavaScript functions to create view and projection matrices to overlay them onto a map rendered by Mapbox GL. PicoMercator focuses on numerical stability by performing most calculations at 64-bit precision, and switching to an "offset mode" at higher zoom levels (using a technique borrowed from deck.gl).

Basic usage involves rendering to a WebGL canvas overlayed on the Mapbox element, and updating to match the current map view. PicoMercator provides a function injectMercatorGLSL to insert functions pico_mercator_lngLatToWorld, pico_mercator_worldToClip, and pico_mercator_lngLatToClip into vertex shader source code so the mercator projection can be done on the GPU. The JavaScript functions allocateMercatorUniforms and updateMercatorUniforms are provided to initialize and update the values of uniforms used by PicoMercator. The application can then use the values to set program uniforms in whatever way is most appropriate.


    let map = new mapboxgl.Map({
        container: mapboxContainer,
        style: "mapbox://styles/mapbox/streets-v9",
        center: [-73.982130, 40.762896],
        zoom: 15
    });

    let vs = `
        #version 300 es
        layout(location=0) in vec2 lngLatPosition;
        void main() {
            // pico_mercator_lngLatToClip function injected by injectMercatorGLSL().
            // pico_mercator_lngLatToWorld and pico_mercator_worldToClip also available to do
            // projection in multiple steps.
            gl_Position = pico_mercator_lngLatToClip(position);
        }
    `;

    let fs = `
        #version 300 es
        precision highp float;
        uniform vec4 color;
        out vec4 fragColor;
        void main() {
            fragColor = color;
        }
    `;


    // Insert projection functions into vertex shader
    let vertexShaderSource = injectMercatorGLSL(vs);
    let fragmentShaderSource =  fs;
    // Create WebGL program from vertexShaderSource and fragmentShaderSource

    // Use 64-bit precision matrices to avoid numerical instability 
    // in intermediate calculations
    let viewProjectionMatrix = highPrecisionMat4();

    let uniforms = {
        // An application uniform, not used by PicoMercator
        color: new Float32Array(1.0, 0.0, 0.0, 1.0);
    };

    // Uniforms used by PicoMercator are added to the map.
    allocateMercatorUniforms(uniforms);

    map.on("render", (e) => {
        let center = map.getCenter().toArray();
        let zoom = map.getZoom();
        let pitch = map.getPitch();
        let bearing = map.getBearing();

        mapboxViewProjectionMatrix(
            viewProjectionMatrix,
            center,
            zoom,
            pitch,
            bearing,
            canvas.width,
            canvas.height
        );

        // Update the values of PicoMercator uniforms in the map.
        // The application can use these to update program uniforms.
        updateMercatorUniforms(uniforms, center, zoom, viewProjectionMatrix);

        // Draw to canvas
    });