Skip to content

Commit

Permalink
Fixes bugs in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhamley committed Jan 3, 2019
1 parent 8f86ecb commit bf6dc1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
toc:
- Map
- accessToken
- url
- supported
- version
- setRTLTextPlugin
Expand Down
5 changes: 1 addition & 4 deletions src/ui/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,16 +218,13 @@ export class MapWheelEvent extends Event {
/**
* @typedef {Object} MapBoxZoomEvent
* @property {MouseEvent} originalEvent
* @property {LngLatBounds} boxZoomBounds The bounding box of the "box zoom" interaction.
* This property is only provided for `boxzoomend` events.
*/
export type MapBoxZoomEvent = {
type: 'boxzoomstart'
| 'boxzoomend'
| 'boxzoomcancel',
map: Map,
originalEvent: MouseEvent,
boxZoomBounds: LngLatBounds
originalEvent: MouseEvent
};

/**
Expand Down

0 comments on commit bf6dc1c

Please sign in to comment.