canvas-globe 0.1.0
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.
- package/CHANGELOG.md +137 -0
- package/COPYRIGHT +8 -0
- package/LICENSE +674 -0
- package/LICENSING.md +83 -0
- package/README.md +638 -0
- package/THIRD_PARTY_NOTICES.md +14 -0
- package/codemeta.json +34 -0
- package/dist/canvas-globe.umd.js +4338 -0
- package/dist/package.json +1 -0
- package/package.json +110 -0
- package/src/csv.js +151 -0
- package/src/data/timezones.js +5 -0
- package/src/data/world.js +6 -0
- package/src/element.js +144 -0
- package/src/export.js +19 -0
- package/src/geo-globe.js +2856 -0
- package/src/geo.js +286 -0
- package/src/index.js +19 -0
- package/src/license.js +36 -0
- package/src/media.js +160 -0
- package/src/presets.js +21 -0
- package/src/react.js +60 -0
- package/src/recorder.js +70 -0
- package/src/scenes.js +80 -0
- package/src/texture.js +129 -0
- package/src/themes.js +241 -0
- package/src/viewer.js +130 -0
- package/types/element.d.ts +41 -0
- package/types/index.d.ts +696 -0
- package/types/react.d.ts +15 -0
package/LICENSING.md
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# CanvasGlobe licensing
|
|
2
|
+
|
|
3
|
+
CanvasGlobe is available under a dual-license model. You choose one of these
|
|
4
|
+
licenses:
|
|
5
|
+
|
|
6
|
+
1. **GNU GPL v3, version 3 only (`GPL-3.0-only`)**: no license fee. This
|
|
7
|
+
option is intended for projects that can comply with the GPL's terms.
|
|
8
|
+
2. **CanvasGlobe Commercial License**: paid permission for proprietary use
|
|
9
|
+
under the terms shown on the applicable order form and commercial license
|
|
10
|
+
agreement.
|
|
11
|
+
|
|
12
|
+
Copyright (C) 2026 Harsh Jhunjhunuwala. Harsh Jhunjhunuwala is the licensor and
|
|
13
|
+
publishes CanvasGlobe under Swiftools, an operating brand rather than a
|
|
14
|
+
separate legal entity.
|
|
15
|
+
|
|
16
|
+
The complete GPLv3 text is in [LICENSE](LICENSE). Commercial rights exist only
|
|
17
|
+
under commercial terms supplied by the licensor and accepted for the relevant
|
|
18
|
+
order. Public pricing and documentation pages are summaries, not a commercial
|
|
19
|
+
license grant.
|
|
20
|
+
|
|
21
|
+
## Important distinction
|
|
22
|
+
|
|
23
|
+
The GPL permits commercial activity. A company does not automatically need a
|
|
24
|
+
commercial license merely because it earns money. The practical question is
|
|
25
|
+
whether the way CanvasGlobe is copied, modified, combined, and distributed can
|
|
26
|
+
comply with GPLv3.
|
|
27
|
+
|
|
28
|
+
Many proprietary applications choose the commercial license because they do
|
|
29
|
+
not want to accept the GPL obligations that may apply when distributing a
|
|
30
|
+
combined work. The legal treatment of browser JavaScript bundles and
|
|
31
|
+
application boundaries can be fact-specific. This page is a product summary,
|
|
32
|
+
not legal advice; ask qualified counsel about your situation.
|
|
33
|
+
|
|
34
|
+
## Commercial plan shape
|
|
35
|
+
|
|
36
|
+
The launch pricing proposed in this repository is:
|
|
37
|
+
|
|
38
|
+
| Plan | Price | Intended scope |
|
|
39
|
+
| --- | ---: | --- |
|
|
40
|
+
| Open Source | $0 | GPL-compatible projects |
|
|
41
|
+
| Solo Commercial | $79 | 1 developer, 1 proprietary product |
|
|
42
|
+
| Team Commercial | $249 | Up to 5 developers and 5 products |
|
|
43
|
+
| Business Commercial | $599 | Up to 20 developers; unlimited internal products |
|
|
44
|
+
| OEM / Builder | From $1,500 per product/year | Redistribution, white-label, builders, SDKs, and generated copies |
|
|
45
|
+
| Enterprise | Custom | Larger teams, affiliates, procurement, or negotiated terms |
|
|
46
|
+
|
|
47
|
+
The proposed perpetual plans grant perpetual use of the purchased version and
|
|
48
|
+
include 12 months of updates and support. Continued access to updates and
|
|
49
|
+
support after that period is an optional renewal. OEM and Enterprise terms may
|
|
50
|
+
be annual or negotiated.
|
|
51
|
+
|
|
52
|
+
These prices and descriptions are launch policy, not a substitute for the
|
|
53
|
+
signed commercial agreement. Commercial sales must not begin until the final
|
|
54
|
+
agreement and checkout terms are approved.
|
|
55
|
+
|
|
56
|
+
## License keys
|
|
57
|
+
|
|
58
|
+
Pass the license key supplied with a commercial order:
|
|
59
|
+
|
|
60
|
+
```js
|
|
61
|
+
createGlobe(canvas, {
|
|
62
|
+
licenseKey: "your_license_key",
|
|
63
|
+
});
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Projects using CanvasGlobe under GPLv3 can request a complimentary key through
|
|
67
|
+
the licensing page. Eligibility depends on complying with GPLv3. The key is a
|
|
68
|
+
compliance reminder and does not replace or modify the license terms.
|
|
69
|
+
|
|
70
|
+
CanvasGlobe uses `0000-0000-000-0000` as its default evaluation placeholder.
|
|
71
|
+
In a browser, a missing key logs an error and the placeholder logs a production
|
|
72
|
+
warning.
|
|
73
|
+
|
|
74
|
+
## Third-party material
|
|
75
|
+
|
|
76
|
+
Bundled geographic data has its own provenance and license status. See
|
|
77
|
+
[THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md).
|
|
78
|
+
|
|
79
|
+
## Questions
|
|
80
|
+
|
|
81
|
+
Email [globe@swiftools.com](mailto:globe@swiftools.com) for complimentary GPLv3
|
|
82
|
+
keys, purchasing, licensing questions, and support. Do not include confidential
|
|
83
|
+
information in a public GitHub issue.
|