(batchId, featuresLength)
| 217 | } |
| 218 | |
| 219 | function checkBatchId(batchId, featuresLength) { |
| 220 | if (!defined(batchId) || batchId < 0 || batchId >= featuresLength) { |
| 221 | throw new DeveloperError( |
| 222 | `batchId is required and between zero and featuresLength - 1 (${featuresLength}` - |
| 223 | +").", |
| 224 | ); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Set whether a feature is visible. |
no test coverage detected
searching dependent graphs…