A geospatial toolset for visualization.
Install dependencies
npm install
CommandLine Utility
npm install --global gulp-cli
import { GeodeticCoordinate, Globe, TileLayer } from '../src/index';
const map = new Globe({
width: 1600,
height: 800,
zoom: 3,
canvas: "mapCanvas",
coordinate: new GeodeticCoordinate(114.2344412, 33.23313241234342)
});
const layer = new TileLayer();
map.add(layer);