* Creates an MVTDataProvider from the specified URL template and options. * * @param {Resource|string} url URL template, containing {z}, {x}, and {y} placeholders. * @param {object} [options] Provider options. * @param {number} [options.minZoom=0] Minimum zoom level represented in the ge
(url, options)
| 37 | * @param {string} [options.featureIdProperty] MVT property name to use as feature ID. |
| 38 | */ |
| 39 | static async fromUrl(url, options) { |
| 40 | return /** @type {Promise<MVTDataProvider>} */ ( |
| 41 | super.fromUrl(url, options) |
| 42 | ); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * @returns {object} |
no outgoing calls
no test coverage detected