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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tomtom-org/maps-sdk-plugin-landmarks-3d

v0.0.3

Published

Plugin to render TomTom Orbis 3D Landmarks (GLB tiles) on a TomTomMap with Three.js

Readme

Landmarks 3D Plugin

Plugin for the TomTom Maps SDK for Javascript that renders TomTom Orbis 3D Landmarks — high-detail building meshes streamed as tiles — on a TomTomMap using Three.js.

Private Preview: the Orbis 3D Landmarks API is in Private Preview. Your API key needs Orbis 3D Landmarks entitlements.

Docs & examples

  • Developer guide: https://docs.tomtom.com/maps-sdk-js/guides/plugins/landmarks-3d
  • Example: https://docs.tomtom.com/maps-sdk-js/examples/landmarks-3d-plugin

Features

  • Streams 3D landmark tiles for the current viewport.
  • Shows the basemap 3D building layer (hidden by default in the standard styles) for full 3D city context.
  • Hides basemap extruded buildings flagged with has_landmark so they don't clip through the landmark meshes.
  • Display modes: inherited (default, mirrors the basemap building colour/opacity), dark, and light.
  • Restores itself automatically across map style changes.

Quickstart

Note: this plugin declares @tomtom-org/maps-sdk and three as peer dependencies — ensure both are installed in your project.

npm install @tomtom-org/maps-sdk maplibre-gl three @tomtom-org/maps-sdk-plugin-landmarks-3d
  1. Follow the SDK Project setup or the Map quickstart to create and initialize a TomTomMap. Use a pitched camera for the best result; the plugin enables the standard style's 3D building layer automatically.

  2. Import and use the plugin (plugin-specific steps only):

import { Landmarks3D } from '@tomtom-org/maps-sdk-plugin-landmarks-3d';

// assume `map` is your initialized TomTomMap instance
const landmarks = new Landmarks3D(map);

// optional: change how landmarks blend with the base map
await landmarks.setDisplayMode('inherited');

License

See LICENSE.txt.