@opengis/partsmap 0.0.69 → 0.0.70
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 +84 -84
- package/dist/PartsMap.js +2252 -2257
- package/dist/PartsMap.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +49 -49
package/README.md
CHANGED
@@ -1,84 +1,84 @@
|
|
1
|
-

|
2
|
-
|
3
|
-
[](https://www.npmjs.com/package/@opengis/partsmap)
|
4
|
-
[]()
|
5
|
-
[]()
|
6
|
-
[](http://standardjs.com/)
|
7
|
-
|
8
|
-
Partsmap is part table, part map.
|
9
|
-
|
10
|
-
### Why Partsmap?
|
11
|
-
|
12
|
-
- **Spatial representation of data:** Combining both interfaces on single page allows for instant data visualization.
|
13
|
-
- **Base Theme:** A clean and practical design inspired by Preline.
|
14
|
-
- **Base maps:** Possibility to add any map tiles.
|
15
|
-
- **Smooth transitions:** Zoom in and out between objects with fluid animations.
|
16
|
-
- **Color attributes:** Use CLS to define and differentiate data visually.
|
17
|
-
- **Server Side Rendering** - Ensures quick and responsive content delivery.
|
18
|
-
|
19
|
-
### Features
|
20
|
-
|
21
|
-
- Filter and search
|
22
|
-
- Detailed data cards
|
23
|
-
- Attribute based styling
|
24
|
-
- Print and share
|
25
|
-
- Data history
|
26
|
-
- SSR
|
27
|
-
|
28
|
-
---
|
29
|
-
|
30
|
-
### Install
|
31
|
-
|
32
|
-
```bash
|
33
|
-
npm i @opengis/partsmap
|
34
|
-
```
|
35
|
-
|
36
|
-
### Usage
|
37
|
-
|
38
|
-
|
39
|
-
```ts
|
40
|
-
import PartsMap from '@opengis/partsmap';
|
41
|
-
import '@opengis/partsmap/dist/style.css';
|
42
|
-
PartsMap.install(app);
|
43
|
-
```
|
44
|
-
|
45
|
-
---
|
46
|
-
|
47
|
-
### Documentation
|
48
|
-
|
49
|
-
For a detailed understanding of `partsmap`, its features, and how to use them, refer to our [Documentation](https://apidocs.softpro.ua/partsmap/).
|
50
|
-
|
51
|
-
---
|
52
|
-
|
53
|
-
### Technology stack
|
54
|
-
|
55
|
-
<a href="https://vuejs.org/" target="_blank">
|
56
|
-
<img src="https://img.shields.io/badge/Vue%20js-323330?style=for-the-badge&logo=vuedotjs&logoColor=4FC08D" /></a>
|
57
|
-
|
58
|
-
<a href="https://maplibre.org/" target="_blank">
|
59
|
-
<img src="https://img.shields.io/badge/Maplibre-323330?style=for-the-badge&logo=maplibre&logoColor=87b2f0" /></a>
|
60
|
-
|
61
|
-
---
|
62
|
-
|
63
|
-
### Contribute
|
64
|
-
|
65
|
-
Feel free to contact us through our website [SOFTPRO.UA](https://softpro.ua) or email <info@softpro.ua>
|
66
|
-
|
67
|
-
- Report bugs
|
68
|
-
- Share your ideas
|
69
|
-
- Ask questions
|
70
|
-
|
71
|
-
### Follow Us
|
72
|
-
|
73
|
-
[Official site](https://softpro.ua)
|
74
|
-
|
75
|
-
<p>
|
76
|
-
<a href="https://www.instagram.com/gissoftpro/" target="_blank"><img src="https://cdn.softpro.ua/data/npm/instagram.png" alt="Softpro Instagram" title="oftpro Instagram"></a>
|
77
|
-
<a href="https://www.facebook.com/gissoftpro" target="_blank"><img src="https://cdn.softpro.ua/data/npm/facebook.png" alt="Softpro Facebook" title="Softpro Facebook"></a>
|
78
|
-
<a href="https://t.me/softprogis" target="_blank"><img src="https://cdn.softpro.ua/data/npm/telegram.png" alt="Softpro Telegram" title="Softpro Telegram"></a>
|
79
|
-
<a href="https://www.linkedin.com/in/softpro-ukraine-a8876b282/recent-activity/all/" target="_blank"><img src="https://cdn.softpro.ua/data/npm/social/linkedin.png" alt="Softpro Linkedin" title="Softpro LinkedIn"></a>
|
80
|
-
</p>
|
81
|
-
|
82
|
-
### License
|
83
|
-
|
84
|
-
Copyright © SOFTPRO. All rights reserved.
|
1
|
+

|
2
|
+
|
3
|
+
[](https://www.npmjs.com/package/@opengis/partsmap)
|
4
|
+
[]()
|
5
|
+
[]()
|
6
|
+
[](http://standardjs.com/)
|
7
|
+
|
8
|
+
Partsmap is part table, part map.
|
9
|
+
|
10
|
+
### Why Partsmap?
|
11
|
+
|
12
|
+
- **Spatial representation of data:** Combining both interfaces on single page allows for instant data visualization.
|
13
|
+
- **Base Theme:** A clean and practical design inspired by Preline.
|
14
|
+
- **Base maps:** Possibility to add any map tiles.
|
15
|
+
- **Smooth transitions:** Zoom in and out between objects with fluid animations.
|
16
|
+
- **Color attributes:** Use CLS to define and differentiate data visually.
|
17
|
+
- **Server Side Rendering** - Ensures quick and responsive content delivery.
|
18
|
+
|
19
|
+
### Features
|
20
|
+
|
21
|
+
- Filter and search
|
22
|
+
- Detailed data cards
|
23
|
+
- Attribute based styling
|
24
|
+
- Print and share
|
25
|
+
- Data history
|
26
|
+
- SSR
|
27
|
+
|
28
|
+
---
|
29
|
+
|
30
|
+
### Install
|
31
|
+
|
32
|
+
```bash
|
33
|
+
npm i @opengis/partsmap
|
34
|
+
```
|
35
|
+
|
36
|
+
### Usage
|
37
|
+
|
38
|
+
|
39
|
+
```ts
|
40
|
+
import PartsMap from '@opengis/partsmap';
|
41
|
+
import '@opengis/partsmap/dist/style.css';
|
42
|
+
PartsMap.install(app);
|
43
|
+
```
|
44
|
+
|
45
|
+
---
|
46
|
+
|
47
|
+
### Documentation
|
48
|
+
|
49
|
+
For a detailed understanding of `partsmap`, its features, and how to use them, refer to our [Documentation](https://apidocs.softpro.ua/partsmap/).
|
50
|
+
|
51
|
+
---
|
52
|
+
|
53
|
+
### Technology stack
|
54
|
+
|
55
|
+
<a href="https://vuejs.org/" target="_blank">
|
56
|
+
<img src="https://img.shields.io/badge/Vue%20js-323330?style=for-the-badge&logo=vuedotjs&logoColor=4FC08D" /></a>
|
57
|
+
|
58
|
+
<a href="https://maplibre.org/" target="_blank">
|
59
|
+
<img src="https://img.shields.io/badge/Maplibre-323330?style=for-the-badge&logo=maplibre&logoColor=87b2f0" /></a>
|
60
|
+
|
61
|
+
---
|
62
|
+
|
63
|
+
### Contribute
|
64
|
+
|
65
|
+
Feel free to contact us through our website [SOFTPRO.UA](https://softpro.ua) or email <info@softpro.ua>
|
66
|
+
|
67
|
+
- Report bugs
|
68
|
+
- Share your ideas
|
69
|
+
- Ask questions
|
70
|
+
|
71
|
+
### Follow Us
|
72
|
+
|
73
|
+
[Official site](https://softpro.ua)
|
74
|
+
|
75
|
+
<p>
|
76
|
+
<a href="https://www.instagram.com/gissoftpro/" target="_blank"><img src="https://cdn.softpro.ua/data/npm/instagram.png" alt="Softpro Instagram" title="oftpro Instagram"></a>
|
77
|
+
<a href="https://www.facebook.com/gissoftpro" target="_blank"><img src="https://cdn.softpro.ua/data/npm/facebook.png" alt="Softpro Facebook" title="Softpro Facebook"></a>
|
78
|
+
<a href="https://t.me/softprogis" target="_blank"><img src="https://cdn.softpro.ua/data/npm/telegram.png" alt="Softpro Telegram" title="Softpro Telegram"></a>
|
79
|
+
<a href="https://www.linkedin.com/in/softpro-ukraine-a8876b282/recent-activity/all/" target="_blank"><img src="https://cdn.softpro.ua/data/npm/social/linkedin.png" alt="Softpro Linkedin" title="Softpro LinkedIn"></a>
|
80
|
+
</p>
|
81
|
+
|
82
|
+
### License
|
83
|
+
|
84
|
+
Copyright © SOFTPRO. All rights reserved.
|