Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 770 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 770 Bytes

geosketchpad

A geospatial toolset for visualization.

Example

GeoSketchpad Globe

9900d80da0a12819ef76d1e5b7e6e27

Build

Install dependencies

npm install

CommandLine Utility

npm install --global gulp-cli

Code Style

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);