Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Adding a location plugin to help label locations of the map; Includes…
Browse files Browse the repository at this point in the history
… a temporary popout map that will be changed to iframe in next commit.
  • Loading branch information
Bonesdog committed Dec 29, 2022
1 parent e5f245e commit 52789ac
Show file tree
Hide file tree
Showing 4 changed files with 1,078 additions and 1 deletion.
48 changes: 48 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"build": "npx webpack",
"docs": "jsdoc -r ./src/"
},
"dependencies": {},
"dependencies": {
"robust-point-in-polygon": "^1.0.3"
},
"devDependencies": {
"jsdoc": "^4.0.0",
"source-map-loader": "^4.0.1",
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { GenLiteRecipeRecorderPlugin } from "./plugins/genlite-recipe-recorder.p
import { GenLiteWikiDataCollectionPlugin } from "./plugins/genlite-wiki-data-collection.plugin";
import { GenLiteXpCalculator } from "./plugins/genlite-xp-calculator.plugin";
import { GenliteHitRecorder } from "./plugins/genlite-hit-recorder.plugin";
import {GenLiteLocationsPlugin} from "./plugins/genlite-locations.plugin";



Expand All @@ -34,4 +35,5 @@ import { GenliteHitRecorder } from "./plugins/genlite-hit-recorder.plugin";
await genlite.pluginLoader.addPlugin(GenLiteXpCalculator);
await genlite.pluginLoader.addPlugin(GenLiteRecipeRecorderPlugin);
await genlite.pluginLoader.addPlugin(GenliteHitRecorder);
await genlite.pluginLoader.addPlugin(GenLiteLocationsPlugin);
})();
Loading

0 comments on commit 52789ac

Please sign in to comment.