diff --git a/docs/documentation.yml b/docs/documentation.yml index 2f69418b898..1bf4e883133 100644 --- a/docs/documentation.yml +++ b/docs/documentation.yml @@ -1,6 +1,7 @@ toc: - Map - accessToken + - url - supported - version - setRTLTextPlugin diff --git a/src/ui/events.js b/src/ui/events.js index d5348266ab3..73a323885d8 100644 --- a/src/ui/events.js +++ b/src/ui/events.js @@ -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 }; /**