Skip to content

Commit

Permalink
Merge pull request OpenGeoscience#1329 from OpenGeoscience/original-e…
Browse files Browse the repository at this point in the history
…vent

perf: Expose original event as part of click events
  • Loading branch information
manthey authored Sep 3, 2024
2 parents 55bb73b + 128d44b commit 387c75b
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 0 deletions.
103 changes: 103 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,108 @@
# GeoJS Change Log

## Version 1.12.2

### Improvements

- Expose original event as part of click events ([#1329](../../pull/1329))

## Version 1.12.1

### Improvements

- Attempt to reinitialize the webgl context when restored ([#1327](../../pull/1327))
- Zero out uniform arrays by default ([#1327](../../pull/1327))

## Version 1.12.0

### Changes

- Update to modern d3 ([#1309](../../pull/1309))

## Version 1.11.2

### Bug Fixes

- Fix textureHandle accessor ([#1308](../../pull/1308))

## Version 1.11.1

### Bug Fixes

- Ensure compatibility with older systems ([#1305](../../pull/1305))

## Version 1.11.0

### Changes

- Never include vtkjs in the bundle ([#1304](../../pull/1304))

## Version 1.10.20

### Performance Improvements

- Skip rendering empty text values ([#1300](../../pull/1300))

## Version 1.10.19

### Bug Fixes

- Ensure compatibility with older systems ([#1293](../../pull/1293))

## Version 1.10.18

### Changes

- Change default back to OSM ([#1292](../../pull/1292))

## Version 1.10.17

### Bug Fixes

- Fix the name of one of the tile map options ([#1277](../../pull/1277))

## Version 1.10.16

### Bug Fixes

- Remove debug statement ([#1276](../../pull/1276))

## Version 1.10.15

### Improvements

- Add mouseup and mousedown events ([#1275](../../pull/1275))

## Version 1.10.14

### Improvements

- Add an action where the middle mouse button pans ([#1269](../../pull/1269))

## Version 1.10.13

### Bug Fixes

- When binding an array of events, don't duplicate ([#1265](../../pull/1265))

## Version 1.10.12

### Bug Fixes

- Improve quad cropping to zero ([#1258](../../pull/1258))

## Version 1.10.11

### Bug Fixes

- Fix an issue cropping large canvas quads ([#1250](../../pull/1250))

## Version 1.10.10

### Bug Fixes

- Fix setting nearest pixel on texture creation ([#1246](../../pull/1246))

## Version 1.10.9

### Performance Improvements
Expand Down
1 change: 1 addition & 0 deletions src/mapInteractor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1665,6 +1665,7 @@ var mapInteractor = function (args) {
// add information about the button state to the event information
var details = m_this.mouse();
details.buttonsDown = m_clickMaybe.buttons;
details.evt = evt;

// reset click detector variable
m_this._setClickMaybe(false);
Expand Down

0 comments on commit 387c75b

Please sign in to comment.