(features)
| 6 | import { FeatureService } from '../../services/FeatureService'; |
| 7 | |
| 8 | export function getFeatureProperties(features) { |
| 9 | let properties = []; |
| 10 | if (isArray(features) && features.length) { |
| 11 | features.forEach((feature) => { |
| 12 | let property = feature.get('attributes'); |
| 13 | property && properties.push(property); |
| 14 | }); |
| 15 | } |
| 16 | return properties; |
| 17 | } |
| 18 | |
| 19 | export function getFeatureBySQL(url, datasetNames, serviceOptions, processCompleted, processFaild, targetEpsgCode, restDataSingleRequestCount) { |
| 20 | getFeatureBySQLWithConcurrent(url, datasetNames, processCompleted, processFaild, serviceOptions, targetEpsgCode, restDataSingleRequestCount); |
no test coverage detected