(filter)
| 329 | } |
| 330 | |
| 331 | function mapboxFilterToWfsFilter(filter) { |
| 332 | const body = mapboxFilterToWfsFilterBody(filter); |
| 333 | if (!body) { return ''; } |
| 334 | return `<fes:Filter>${body} |
| 335 | </fes:Filter>`; |
| 336 | } |
| 337 | |
| 338 | function mapboxFilterToQueryFilter(filter, dataType, type = 'SQL') { |
| 339 | if (type === 'SQL') { |
no test coverage detected