Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9ca74b2
aoi plugin:wip
BhattaraiSijan May 4, 2026
7537ba8
Merge branch 'feat/imapengine-drawing' into feat/draw-aoi-plugin
BhattaraiSijan May 4, 2026
7ea1de4
wired up api calls
BhattaraiSijan May 4, 2026
a2c4631
Merge branch 'feat/imapengine-drawing' into feat/draw-aoi-plugin
BhattaraiSijan May 4, 2026
728e765
aoi tool wip
BhattaraiSijan May 4, 2026
812723b
aoi plugin:wip
BhattaraiSijan May 6, 2026
ea2b9c8
public dev guide updated
BhattaraiSijan May 6, 2026
77e481c
added overlay methods to MapEngines
BhattaraiSijan May 6, 2026
1739959
use eventbus for communication, remove direct usage of map
BhattaraiSijan May 6, 2026
1e9bd2a
Merge branch 'feat/imapengine-drawing' into feat/draw-aoi-plugin
BhattaraiSijan May 18, 2026
7563f81
aoi plugin:wip
BhattaraiSijan May 20, 2026
3b6e7ef
Merge branch 'feat/imapengine-drawing' into feat/draw-aoi-plugin
BhattaraiSijan May 20, 2026
6a63b45
events names changed
BhattaraiSijan May 20, 2026
51ba2f5
clean up
BhattaraiSijan May 20, 2026
c0455ea
remove debug logs
BhattaraiSijan May 20, 2026
34683f9
Revert "remove debug logs"
BhattaraiSijan May 20, 2026
2c3c2fe
change events names
BhattaraiSijan May 20, 2026
6516b72
analysis event subscribed
BhattaraiSijan May 20, 2026
5a038cb
fetch statistics added
BhattaraiSijan May 20, 2026
ab87737
loading spinner added
BhattaraiSijan May 20, 2026
0dc0763
fix inspect feature
BhattaraiSijan May 21, 2026
182049c
Map_.js: drop accidental formatter sweep, keep only onFeatureClick wi…
BhattaraiSijan May 21, 2026
3ae9e90
separate fetch plugin
BhattaraiSijan May 28, 2026
a556507
clean up
BhattaraiSijan May 28, 2026
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
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@
"@maphubs/tokml": "^0.6.1",
"@popperjs/core": "^2.11.6",
"@terraformer/wkt": "^2.2.0",
"@trussworks/react-uswds": "^7.0.0",
"@turf/turf": "^6.5.0",
"@uswds/uswds": "^3.13.0",
"bcryptjs": "^2.4.3",
"busboy": "1.6",
"camelcase": "^5.3.1",
Expand Down Expand Up @@ -152,6 +154,7 @@
"sequelize": "^6.33.0",
"sharp": "^0.31.2",
"showdown": "^2.1.0",
"shpjs": "^6.2.0",
"snap-bbox": "^0.2.0",
"sortablejs": "^1.15.0",
"swagger-ui-express": "^4.1.4",
Expand Down Expand Up @@ -192,6 +195,7 @@
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@playwright/test": "^1.57.0",
"@svgr/webpack": "^8.1.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "^10.1.0",
Expand Down Expand Up @@ -219,6 +223,7 @@
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"react-dev-utils": "^12.0.1",
"sass": "^1.99.0",
"sass-loader": "8.0.2",
"string-replace-loader": "^3.1.0",
"style-loader": "0.23.1",
Expand Down
4 changes: 4 additions & 0 deletions src/essence/Basics/Map_/Map_.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,10 @@ let Map_ = {
reEmit('drawcancel', 'map:drawcancel')
reEmit('move', 'map:move')
reEmit('moveend', 'map:moveend')

engine.onFeatureClick((info) =>
window.mmgisAPI.emit('map:featureClick', info)
)
}

//Make our layers
Expand Down
Loading