(z)
| 345 | const minZoom = queryLinks[i].extent.zoom.minZoom, |
| 346 | maxZoom = queryLinks[i].extent.zoom.maxZoom, |
| 347 | withinZoomBounds = (z) => { |
| 348 | return minZoom <= z && z <= maxZoom; |
| 349 | }, |
| 350 | bounds = queryLinks[i].getBounds(); |
| 351 | |
| 352 | if (bounds.contains(location) && withinZoomBounds(zoom)) { |
no outgoing calls
no test coverage detected