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

@tcgis/gtc-common

v1.0.0

Published

`GTC-SDK` is based on the open source project `Cesium` for the second development of two three-dimensional `WebGIS` application framework , the framework optimizes the use of `Cesium` and adds some additional features , designed for developers to quickly

Readme

GTC-SDK

GTC-SDK is based on the open source project Cesium for the second development of two three-dimensional WebGIS application framework , the framework optimizes the use of Cesium and adds some additional features , designed for developers to quickly build WebGis application.

Tips:This SDK is JS+GIS framework package. Developers need to have some front-end technology and GIS related technology

Run examples

  yarn run build
  yarn run server

Installation

NPM / YARN (Recommend)

Installing with NPM or YARN is recommended and it works seamlessly with webpack.

yarn add @tcgis/gtc-sdk
-------------------------
npm install @tcgis/gtc-sdk
import * as GTC from '@tcgis/gtc-sdk'
import '@tcgis/gtc-sdk/dist/gtc.min.css'

Configuration

The configuration is mainly used in the NPM / YARN way

Since the GTC framework sets CESIUM_BASE_URL to ./libs/gtc-sdk/resources/ , you need to copy Cesium related static resources files: Assets , Workers , ThirdParty to libs/gtc-sdk/resources directory of the project to ensure that the 3D scene can be rendered properly. You can also use GTC.config.baseUrl to set the static resource base related to Cesium .

Webpack

// webpack.config.js
const path = require('path')
const CopywebpackPlugin = require('copy-webpack-plugin')
const tcgisDist = './node_modules/@tcgis'

module.exports = {
  plugins: [
    new CopyWebpackPlugin([
      {
        from: path.join(tcgisDist, 'gtc-sdk/dist/resources'),
        to: 'libs/gtc-sdk/resources',
      },
    ]),
  ],
}

Vue2.x

// vue.config.js
const path = require('path')
const CopywebpackPlugin = require('copy-webpack-plugin')
const tcgisDist = './node_modules/@tcgis'
module.exports = {
  chainWebpack: (config) => {
    config.plugin('copy').use(CopywebpackPlugin, [
      [
        {
          from: path.join(tcgisDist, 'gtc-sdk/dist/resources'),
          to: 'libs/gtc-sdk/resources',
        },
      ],
    ])
  },
}

Vue3.x

// vue.config.js
const path = require('path')
const CopywebpackPlugin = require('copy-webpack-plugin')
const tcgisDist = './node_modules/@tcgis'
module.exports = {
  chainWebpack: (config) => {
    config.plugin('copy').use(CopywebpackPlugin, [
      {
        patterns: [
          {
            from: path.join(tcgisDist, 'gtc-sdk/dist/resources'),
            to: path.join(__dirname, 'dist', 'libs/gtc-sdk/resources'),
          },
        ],
      },
    ])
  },
}

vite

// vite.config.js
import { defineConfig } from 'vite'
import GTC from '@tcgis/vite-plugin-gtc'

export default defineConfig({
  plugins: [GTC()],
})

Start

global.GTC = GTC
GTC.ready({}).then(()=>{
    let viewer = new GTC.Viewer()
})

Thanks