@openglobus/og 0.18.1 → 0.18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,7 +146,7 @@ export function print2d(id, text, x, y) {
146
146
  el.style.top = `${y}px`;
147
147
  }
148
148
  export function defaultString(str, def = "") {
149
- return str ? str.trim().toLowerCase() : def;
149
+ return str ? str.trim() : def;
150
150
  }
151
151
  export function createVector3(v, def) {
152
152
  if (v) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openglobus/og",
3
- "version": "0.18.1",
3
+ "version": "0.18.3",
4
4
  "description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
5
5
  "directories": {
6
6
  "example": "./sandbox"