* blocksAt * Returns any blocks that exist for the given location * * @param `loc` `[lon,lat]` location to query, e.g. `[-74.4813, 40.7967]` * @return Array of block Objects (empty array if none)
(loc)
| 411 | * @return Array of block Objects (empty array if none) |
| 412 | */ |
| 413 | blocksAt(loc) { |
| 414 | if (!this._blocks.length) return []; |
| 415 | return this._wpblocks(loc, true) || []; |
| 416 | } |
| 417 | |
| 418 | |
| 419 | // Direct access to the location-conflation resolver |
no outgoing calls
no test coverage detected