realmap 1.0.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/README.md +31 -0
- package/dist/index.d.ts +4603 -0
- package/dist/index.esm.js +7 -0
- package/dist/index.js +7 -0
- package/dist/realmap-style.css +734 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Realmap
|
|
2
|
+
|
|
3
|
+
Realmap is a JavaScript Map charting library.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
npm i realmap
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### License
|
|
12
|
+
|
|
13
|
+
> The License file is required for proper use. More information, visit: http://service.realgrid.com/start
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### styles
|
|
17
|
+
|
|
18
|
+
- The themes are located in './dist'
|
|
19
|
+
|
|
20
|
+
```ts
|
|
21
|
+
import 'realmap/dist/realmap-style.css';
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Library Target
|
|
25
|
+
|
|
26
|
+
- index.esm.js for ES
|
|
27
|
+
- index.js for umd
|
|
28
|
+
|
|
29
|
+
## Asking Questions
|
|
30
|
+
|
|
31
|
+
> support@realgrid.com
|