@signalk/freeboard-sk 1.19.4 → 2.0.0-beta.2
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 +23 -9
- package/README.md +2 -4
- package/dist/fb-openlayers/README.md +17 -0
- package/dist/fb-openlayers/bundles/fb-openlayers.umd.js +4884 -0
- package/dist/fb-openlayers/bundles/fb-openlayers.umd.js.map +1 -0
- package/dist/fb-openlayers/esm2015/fb-openlayers.js +5 -0
- package/dist/fb-openlayers/esm2015/index.js +92 -0
- package/dist/fb-openlayers/esm2015/lib/alarms/layer-anchor-alarm.component.js +136 -0
- package/dist/fb-openlayers/esm2015/lib/alarms/layer-cpa-alarm.component.js +135 -0
- package/dist/fb-openlayers/esm2015/lib/content.component.js +16 -0
- package/dist/fb-openlayers/esm2015/lib/control.component.js +37 -0
- package/dist/fb-openlayers/esm2015/lib/controls.directive.js +61 -0
- package/dist/fb-openlayers/esm2015/lib/interactions/interaction-draw.component.js +72 -0
- package/dist/fb-openlayers/esm2015/lib/interactions/interaction-modify.component.js +72 -0
- package/dist/fb-openlayers/esm2015/lib/interactions.directive.js +61 -0
- package/dist/fb-openlayers/esm2015/lib/layer.component.js +157 -0
- package/dist/fb-openlayers/esm2015/lib/map.component.js +206 -0
- package/dist/fb-openlayers/esm2015/lib/map.service.js +70 -0
- package/dist/fb-openlayers/esm2015/lib/models.js +37 -0
- package/dist/fb-openlayers/esm2015/lib/navigation/layer-arrival-circle.component.js +116 -0
- package/dist/fb-openlayers/esm2015/lib/navigation/layer-bearing-line.component.js +229 -0
- package/dist/fb-openlayers/esm2015/lib/navigation/layer-xte-path.component.js +120 -0
- package/dist/fb-openlayers/esm2015/lib/overlay.component.js +56 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-charts.component.js +141 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-notes.component.js +177 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-regions.component.js +184 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-resourceset.component.js +226 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-routes.component.js +188 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-sktarget-tracks.component.js +213 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-sktargets.component.js +269 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-skvessels.component.js +410 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-tracks.component.js +175 -0
- package/dist/fb-openlayers/esm2015/lib/resources/layer-waypoints.component.js +238 -0
- package/dist/fb-openlayers/esm2015/lib/util.js +124 -0
- package/dist/fb-openlayers/esm2015/lib/vessel/layer-vessel-trail.component.js +178 -0
- package/dist/fb-openlayers/esm2015/lib/vessel/layer-vessel.component.js +229 -0
- package/dist/fb-openlayers/esm2015/lib/view.directive.js +141 -0
- package/dist/fb-openlayers/fb-openlayers.d.ts +5 -0
- package/dist/fb-openlayers/fb-openlayers.d.ts.map +1 -0
- package/dist/fb-openlayers/fb-openlayers.metadata.json +1 -0
- package/dist/fb-openlayers/fesm2015/fb-openlayers.js +4326 -0
- package/dist/fb-openlayers/fesm2015/fb-openlayers.js.map +1 -0
- package/dist/fb-openlayers/index.d.ts +33 -0
- package/dist/fb-openlayers/index.d.ts.map +1 -0
- package/dist/fb-openlayers/index.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/alarms/layer-anchor-alarm.component.d.ts +44 -0
- package/dist/fb-openlayers/lib/alarms/layer-anchor-alarm.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/alarms/layer-anchor-alarm.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/alarms/layer-cpa-alarm.component.d.ts +39 -0
- package/dist/fb-openlayers/lib/alarms/layer-cpa-alarm.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/alarms/layer-cpa-alarm.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/content.component.d.ts +6 -0
- package/dist/fb-openlayers/lib/content.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/content.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/control.component.d.ts +14 -0
- package/dist/fb-openlayers/lib/control.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/control.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/controls.directive.d.ts +14 -0
- package/dist/fb-openlayers/lib/controls.directive.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/controls.directive.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/interactions/interaction-draw.component.d.ts +27 -0
- package/dist/fb-openlayers/lib/interactions/interaction-draw.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/interactions/interaction-draw.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/interactions/interaction-modify.component.d.ts +26 -0
- package/dist/fb-openlayers/lib/interactions/interaction-modify.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/interactions/interaction-modify.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/interactions.directive.d.ts +14 -0
- package/dist/fb-openlayers/lib/interactions.directive.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/interactions.directive.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/layer.component.d.ts +41 -0
- package/dist/fb-openlayers/lib/layer.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/layer.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/map.component.d.ts +71 -0
- package/dist/fb-openlayers/lib/map.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/map.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/map.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/map.service.d.ts +19 -0
- package/dist/fb-openlayers/lib/map.service.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/map.service.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/models.d.ts +42 -0
- package/dist/fb-openlayers/lib/models.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/navigation/layer-arrival-circle.component.d.ts +39 -0
- package/dist/fb-openlayers/lib/navigation/layer-arrival-circle.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/navigation/layer-arrival-circle.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/navigation/layer-bearing-line.component.d.ts +49 -0
- package/dist/fb-openlayers/lib/navigation/layer-bearing-line.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/navigation/layer-bearing-line.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/navigation/layer-xte-path.component.d.ts +39 -0
- package/dist/fb-openlayers/lib/navigation/layer-xte-path.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/navigation/layer-xte-path.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/overlay.component.d.ts +25 -0
- package/dist/fb-openlayers/lib/overlay.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/overlay.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-charts.component.d.ts +20 -0
- package/dist/fb-openlayers/lib/resources/layer-charts.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-charts.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-notes.component.d.ts +51 -0
- package/dist/fb-openlayers/lib/resources/layer-notes.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-notes.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-regions.component.d.ts +53 -0
- package/dist/fb-openlayers/lib/resources/layer-regions.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-regions.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-resourceset.component.d.ts +49 -0
- package/dist/fb-openlayers/lib/resources/layer-resourceset.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-resourceset.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-routes.component.d.ts +52 -0
- package/dist/fb-openlayers/lib/resources/layer-routes.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-routes.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-sktarget-tracks.component.d.ts +44 -0
- package/dist/fb-openlayers/lib/resources/layer-sktarget-tracks.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-sktarget-tracks.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-sktargets.component.d.ts +51 -0
- package/dist/fb-openlayers/lib/resources/layer-sktargets.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-sktargets.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-skvessels.component.d.ts +60 -0
- package/dist/fb-openlayers/lib/resources/layer-skvessels.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-skvessels.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-tracks.component.d.ts +50 -0
- package/dist/fb-openlayers/lib/resources/layer-tracks.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-tracks.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-waypoints.component.d.ts +57 -0
- package/dist/fb-openlayers/lib/resources/layer-waypoints.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/resources/layer-waypoints.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/util.d.ts +19 -0
- package/dist/fb-openlayers/lib/util.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/vessel/layer-vessel-trail.component.d.ts +45 -0
- package/dist/fb-openlayers/lib/vessel/layer-vessel-trail.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/vessel/layer-vessel-trail.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/vessel/layer-vessel.component.d.ts +55 -0
- package/dist/fb-openlayers/lib/vessel/layer-vessel.component.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/vessel/layer-vessel.component.ngfactory.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/view.directive.d.ts +44 -0
- package/dist/fb-openlayers/lib/view.directive.d.ts.map +1 -0
- package/dist/fb-openlayers/lib/view.directive.ngfactory.d.ts.map +1 -0
- package/package.json +27 -21
- package/public/3rdpartylicenses.txt +26 -76
- package/public/53.4babe18f9baabeea.js +1 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fABc4EsA.d7937a0ef019ac09e71a.woff2 → KFOlCnqEu92Fr1MmEU9fABc4EsA.4ed2722dc50bc9dc.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fBBc4.2d241905f5d9b81989af.woff2 → KFOlCnqEu92Fr1MmEU9fBBc4.f7f4d344a6938a9a.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fBxc4EsA.bc7db55d55f42308caf6.woff2 → KFOlCnqEu92Fr1MmEU9fBxc4EsA.a6e016f93f36e92c.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fCBc4EsA.70bee1b6c576fd5fce72.woff2 → KFOlCnqEu92Fr1MmEU9fCBc4EsA.afc199cd9de666f6.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fCRc4EsA.b42f47fe075e98f83fcd.woff2 → KFOlCnqEu92Fr1MmEU9fCRc4EsA.e38c774218b8295c.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fChc4EsA.f3f85d116ec4a04c2e05.woff2 → KFOlCnqEu92Fr1MmEU9fChc4EsA.ed52d196083dff5e.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmEU9fCxc4EsA.9ab383430ff600ca2442.woff2 → KFOlCnqEu92Fr1MmEU9fCxc4EsA.b251befed1593089.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fABc4EsA.7e80e8ecf4f753a67507.woff2 → KFOlCnqEu92Fr1MmSU5fABc4EsA.6e7b80cb3c54a5a9.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fBBc4.815babffe97b00a1f30b.woff2 → KFOlCnqEu92Fr1MmSU5fBBc4.ecceb14f9471d216.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fBxc4EsA.fce711c6e6b41ea8202b.woff2 → KFOlCnqEu92Fr1MmSU5fBxc4EsA.ba465382be530d33.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fCBc4EsA.6badcd0dc67cd078626b.woff2 → KFOlCnqEu92Fr1MmSU5fCBc4EsA.8c37da00c6fb46c4.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fCRc4EsA.9d45263917d5a917db88.woff2 → KFOlCnqEu92Fr1MmSU5fCRc4EsA.f2f54b8b7a823284.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fChc4EsA.4293ab94c54220ace1b3.woff2 → KFOlCnqEu92Fr1MmSU5fChc4EsA.a730413f77f72eae.woff2} +0 -0
- package/public/{KFOlCnqEu92Fr1MmSU5fCxc4EsA.2710c1306940fa8ed453.woff2 → KFOlCnqEu92Fr1MmSU5fCxc4EsA.ac169d216bae896e.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu4WxKOzY.6191139729acf8629aa4.woff2 → KFOmCnqEu92Fr1Mu4WxKOzY.529e09285a7fcc0d.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu4mxK.cb41c1e71debe927815c.woff2 → KFOmCnqEu92Fr1Mu4mxK.0419828387b351b1.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu5mxKOzY.8c4dcaa9226434690369.woff2 → KFOmCnqEu92Fr1Mu5mxKOzY.abf434b8c66f4df0.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu72xKOzY.dca0461a7819f466405e.woff2 → KFOmCnqEu92Fr1Mu72xKOzY.0c6f5e92c6531760.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu7GxKOzY.2f0d09d408c159d5959d.woff2 → KFOmCnqEu92Fr1Mu7GxKOzY.5f64cc8e9b6f8715.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu7WxKOzY.92434edcd7d38a2617d3.woff2 → KFOmCnqEu92Fr1Mu7WxKOzY.ab43a3496393558b.woff2} +0 -0
- package/public/{KFOmCnqEu92Fr1Mu7mxKOzY.af15b8ef5bfa179e0b96.woff2 → KFOmCnqEu92Fr1Mu7mxKOzY.cf1f88a4aaec4666.woff2} +0 -0
- package/public/MaterialIcons-Regular.50eee05cfd948355.ttf +0 -0
- package/public/MaterialIconsOutlined-Regular.7915aa5237ad5792.otf +0 -0
- package/public/MaterialIconsRound-Regular.2cb4468fa98774ea.otf +0 -0
- package/public/MaterialIconsSharp-Regular.adae8f35ad117caf.otf +0 -0
- package/public/MaterialIconsTwoTone-Regular.a0e3f62a6937d37d.otf +0 -0
- package/public/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- package/public/assets/fonts/MaterialIconsOutlined-Regular.otf +0 -0
- package/public/assets/fonts/MaterialIconsRound-Regular.otf +0 -0
- package/public/assets/fonts/MaterialIconsSharp-Regular.otf +0 -0
- package/public/assets/fonts/MaterialIconsTwoTone-Regular.otf +0 -0
- package/public/assets/fonts/material-icons.css +23 -7
- package/public/assets/help/img/course_data.png +0 -0
- package/public/assets/help/index.html +2017 -1514
- package/public/{foundation-icons.b97e770b0e3c6ebed11d.eot → foundation-icons.19490a5502d687db.eot} +0 -0
- package/public/{foundation-icons.c0cbb004854f9c746f89.ttf → foundation-icons.435e5df14d53c0ea.ttf} +0 -0
- package/public/{foundation-icons.e765a16d11a4a296dc00.woff → foundation-icons.569c64dfbb2c2332.woff} +0 -0
- package/public/{foundation-icons.2532a35d4f2ae4e0107f.svg → foundation-icons.d97d1f915be505f3.svg} +0 -0
- package/public/index.html +45 -45
- package/public/main.a668c86ee67ed842.js +1 -0
- package/public/manifest.json +52 -52
- package/public/polyfills.1ba4e1a897c69e24.js +1 -0
- package/public/runtime.55118010dbcb6e60.js +1 -0
- package/public/styles.f013b594260c141e.css +1 -0
- package/public/194-es2015.d30dee9bda398ac1ce00.js +0 -1
- package/public/194-es5.d30dee9bda398ac1ce00.js +0 -1
- package/public/assets/fonts/material-icons.woff2 +0 -0
- package/public/main-es2015.cc7d80a27aed27fa0de8.js +0 -1
- package/public/main-es5.cc7d80a27aed27fa0de8.js +0 -1
- package/public/material-icons.4a03f967ab2acff66587.woff2 +0 -0
- package/public/polyfills-es2015.c13136a48056748116fd.js +0 -1
- package/public/polyfills-es5.db83d87fca4fca7bb07a.js +0 -1
- package/public/runtime-es2015.b1910b8ef3d17c3e8f57.js +0 -1
- package/public/runtime-es5.b1910b8ef3d17c3e8f57.js +0 -1
- package/public/styles.36bd2e36f29be6040d29.css +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,39 @@
|
|
|
1
1
|
# CHANGELOG: Freeboard
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### v2.0.0
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
__** BREAKING CHANGE **__ Freeboard-SK now requires a version of Signal K server that implements the `Resources API` and `Course API`.
|
|
6
6
|
|
|
7
|
+
__UPDATES:__
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
- **Added**: Restart course calculations using the current vessel position
|
|
9
10
|
|
|
10
|
-
- **
|
|
11
|
+
- **Added**: Reverse direction a route is followed.
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
- **Added**: Display arrow(s) showing the direction the active route is being followed.
|
|
13
14
|
|
|
14
|
-
- **
|
|
15
|
+
- **Added**: Advance to next route point button to arrival notification to .
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
- **Added**: Setting to select auto advance to next route point on arrival with choice of time delay.
|
|
18
|
+
|
|
19
|
+
- **Added**: Option to delete attached notes when deleting a resource.
|
|
20
|
+
|
|
21
|
+
- **Added**: Ability to enter `name` and `description` for a region resource.
|
|
22
|
+
|
|
23
|
+
- **New**: Detect "circular routes" _(first and last points have the exact same coordinate)_ allowing Issue where vessel wind vector on map was not displayed when heading was 0 degrees
|
|
24
|
+
|
|
25
|
+
- **New**: `host` and `port` url params to enable connection to an alternate Signal K server.
|
|
26
|
+
|
|
27
|
+
- **Fix**: Issue where audio was played when notification was 'visual' only.
|
|
28
|
+
|
|
29
|
+
- **Fix**: Issue where vessel wind vector on map was not displayed when heading was 0 degrees.
|
|
30
|
+
|
|
31
|
+
- **Change**: Notes are only displayed on the map if they have a valid position. Notes attached to a resource / region are only available in the notes list of that resource.
|
|
17
32
|
|
|
18
|
-
- **Fix**: Issue where vessel name and MMSI not being received in stream connection after upgrading to server version 1.41.0
|
|
19
33
|
|
|
20
34
|
### v1.19.0
|
|
21
35
|
|
|
22
|
-
- **Add**:
|
|
36
|
+
- **Add**: Add a default name to imported GPX tracks when no name is defined in the source file.
|
|
23
37
|
|
|
24
38
|
- **New**: Attach notes to waypoints and routes.
|
|
25
39
|
|
package/README.md
CHANGED
|
@@ -120,11 +120,9 @@ For all Freeboard features to be fully functional, it requires that the Signal K
|
|
|
120
120
|
|
|
121
121
|
4. `notifications/environment/depth` - Serve notifications for `belowKeel`, `belowSurface` `belowTransducer`.
|
|
122
122
|
|
|
123
|
-
5. `navigation/
|
|
123
|
+
5. `navigation/course` - Serve and accept course information, allow a route to be set as active, allow a waypoint or position to be set as a destination. It is expected that the server will initiate any subsequent calculations and related value updates.
|
|
124
124
|
|
|
125
|
-
6.
|
|
126
|
-
|
|
127
|
-
7. **Playback History** - Implement the Signal K Playback api (`/signalk/v1/playback`)
|
|
125
|
+
6. **Playback History** - Implement the Signal K Playback api (`/signalk/v1/playback`)
|
|
128
126
|
|
|
129
127
|
These functions may be provided natively by the server or through the use of *plugins*.
|
|
130
128
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
## Usage
|
|
2
|
+
|
|
3
|
+
Import this library in your NgModule:
|
|
4
|
+
```json
|
|
5
|
+
imports: [
|
|
6
|
+
FBOpenlayersModule
|
|
7
|
+
]
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Development
|
|
11
|
+
|
|
12
|
+
To compile to module to dist output directory:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
ng build --configuration production fb-openlayers
|
|
16
|
+
```
|
|
17
|
+
|