Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: use webworker for getvehicleatcoordinate #146

Draft
wants to merge 41 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b875da9
Fix pixel ratio
oterral Jun 16, 2020
a0c3d52
v1.0.0-beta.4
oterral Jun 16, 2020
bec6f3a
Fix trajectories.length is undefined error
oterral Jun 17, 2020
7f38013
v1.0.0-beta.5
oterral Jun 17, 2020
c94a6f7
Use web worker for mouse over
oterral Jun 18, 2020
7ae8b45
Use web worker for mouse over
oterral Jun 18, 2020
d2e18d7
Merge branch 'master' into olivier/webworker
oterral Jun 18, 2020
9bf41e3
Fix blurry icon
oterral Jun 18, 2020
abf4f34
Adapt doc
oterral Aug 18, 2021
da3c2ed
Clean tracker doc and constructor
oterral Aug 19, 2021
6c49725
Clean tracker doc and constructor
oterral Aug 19, 2021
ad1d2c2
v1.3.6-beta.0
oterral Aug 19, 2021
45d8251
Merge branch 'master' into olivier/tracker
oterral Sep 22, 2021
229c2f7
Abort previous requests
oterral Sep 22, 2021
3c6d8d1
Try CODEOWNERS file
oterral Sep 22, 2021
571478e
Remove CODEOWNERS file
oterral Sep 22, 2021
0bf509a
v1.3.13-beta.1
oterral Sep 28, 2021
ce9b48c
Unsubscribe previous call with same callback function
oterral Sep 28, 2021
5c4ebdd
v1.3.13-beta.2
oterral Sep 28, 2021
9a5a87a
MAke sure setBBox doesn't read event twice
oterral Sep 29, 2021
f6c14a3
v1.3.13-beta.3
oterral Sep 29, 2021
84b6e67
Fix render in the past activating on new live mode
oterral Sep 30, 2021
1e205b7
v1.3.13-beta.4
oterral Sep 30, 2021
1205ea6
Test pixelRatio
oterral Sep 30, 2021
69a0fc0
Fix style with pixelRatio
oterral Sep 30, 2021
636cde8
Fix pixelRatio
oterral Sep 30, 2021
a907785
Fix pixelRatio for tralis
oterral Sep 30, 2021
a5a51d6
v1.3.13-beta.5
oterral Sep 30, 2021
201f9b3
Clean TrackerLayerMixin
oterral Oct 1, 2021
ab127df
Remove useless property
oterral Oct 1, 2021
bfcad67
Allow rotation on mapbox tralis layer
oterral Oct 1, 2021
5ffeb24
Allow rotation on mapbox tralis layer
oterral Oct 1, 2021
016035d
Allow rotation for tracke rwith ol
oterral Oct 1, 2021
d1e70be
Update src/common/Tracker.js
oterral Oct 4, 2021
b242bd0
Clean TrackerLayer
oterral Oct 4, 2021
ddd8e6c
Merge branch 'olivier/tracker' of github.com:geops/mobility-toolbox-j…
oterral Oct 4, 2021
9dd0c12
v1.3.13-beta.6
oterral Oct 4, 2021
b18e256
Clean TrackerLayer
oterral Oct 4, 2021
d517ecf
v1.3.13-beta.7
oterral Oct 4, 2021
3178bda
Merge branch 'olivier/tracker' into olivier/webworker
oterral Oct 4, 2021
9f10715
Merge branch 'master' into olivier/webworker
oterral Oct 19, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .neutrinorc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ if (process.env.REACT_APP_LIB_MODE) {
},
},
use: [
(neutrino) => {
neutrino.config.output
.globalObject('this') // will prevent `window`
.end()
.module.rule('worker')
.test(neutrino.regexFromExtensions(['worker.js']))
.use('worker')
.loader(require.resolve('worker-loader'))
.options({
// See: https://github.com/webpack-contrib/worker-loader#options
});
},
library({
name: 'mobility-toolbox-js',
targets: {
Expand Down Expand Up @@ -159,6 +171,18 @@ if (process.env.REACT_APP_LIB_MODE) {
},
],
}),
(neutrino) => {
neutrino.config.output
.globalObject('this') // will prevent `window`
.end()
.module.rule('worker')
.test(neutrino.regexFromExtensions(['worker.js']))
.use('worker')
.loader(require.resolve('worker-loader'))
.options({
// See: https://github.com/webpack-contrib/worker-loader#options
});
},
],
};
}
Loading