Skip to content

Commit 321915b

Browse files
committed
Update README
1 parent 6db18b5 commit 321915b

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
'@typescript-eslint/explicit-function-return-type': 'off',
2323
'@typescript-eslint/no-explicit-any': 'off',
2424
'@typescript-eslint/no-empty-function': 'off',
25-
'@typescript-eslint/ts-expect-error': 'allow-with-description'
25+
'@typescript-eslint/ts-expect-error': 1,
2626
'no-var': 2,
2727
'no-useless-constructor': 2,
2828
'no-duplicate-imports': 2,

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<pre align="center">A free tile-based 3D globe renderer built with Three.js</pre>
1414

1515
[![npm version](https://img.shields.io/npm/v/LithoSphere.svg?style=flat-square)](https://www.npmjs.com/package/lithosphere)
16+
[![travis build](https://img.shields.io/travis/com/NASA-AMMOS/LithoSphere/master.svg?style=flat-square)](https://travis-ci.com/NASA-AMMOS/LithoSphere)
1617
[![lgtm code quality](https://img.shields.io/lgtm/grade/javascript/g/NASA-AMMOS/LithoSphere.svg?style=flat-square&label=code-quality)](https://lgtm.com/projects/g/NASA-AMMOS/LithoSphere/)
1718

1819
LithoSphere is a completely free and open-sourced tile-based 3D globe renderer. First built within the Geographical Information System (GIS) application [MMGIS](https://github.com/NASA-AMMOS/MMGIS), LithoSphere has been pulled out and refactored into a standalone, mapping focused, JavaScript library. At its core sits the brilliant [Three.js](https://threejs.org/) library with all its extensible familiarity.
@@ -23,6 +24,12 @@ LithoSphere is a completely free and open-sourced tile-based 3D globe renderer.
2324

2425
Head over to the **[Documentation](https://nasa-ammos.github.io/LithoSphere/)** pages for more or checkout `/example.html`.
2526

27+
<div align="center">
28+
29+
<span style="display:block;text-align:center; width: 70%;">![Example Screenshot](/docs/assets/images/screenshot1.png)</span>
30+
31+
</div>
32+
2633
### Features
2734

2835
- Fully configurable layer types:
@@ -46,9 +53,9 @@ Head over to the **[Documentation](https://nasa-ammos.github.io/LithoSphere/)**
4653
- Observe
4754
- Home
4855
- Exaggerate
49-
- Crop (upcoming)
56+
- Crop (upcoming?)
5057
- Controls (upcoming)
5158
- Coordinates
52-
- Link (upcoming)
59+
- Link
5360
- The ability to use custom parsers for your own tiled data formats
5461
- And more!

docs/assets/images/screenshot1.png

2.32 MB
Loading

travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- node
4+
script:
5+
- npm run lint
6+
- npm test

0 commit comments

Comments
 (0)