|
1 | 1 | { |
2 | 2 | "title": "Contour plot", |
3 | | - "exampleJs": ["main.js"], |
| 3 | + "exampleJs": [ |
| 4 | + "main.js" |
| 5 | + ], |
4 | 6 | "about": { |
5 | 7 | "text": "This example shows how to add contour features to a map. Contours color a region based on an array of scalar values. If stepped colors are used, these are called isobands." |
6 | 8 | }, |
7 | | - "tests": [{ |
8 | | - "description": "contour feature loads small dataset", |
9 | | - "query": "url=../../data/oahu.json", |
10 | | - "wait": ["example.ready"], |
11 | | - "tests": [ |
12 | | - "example.contour instanceof geo.contourFeature", |
13 | | - "example.contour._createContours().value.length === 1953" |
14 | | - ] |
15 | | - }, { |
16 | | - "description": "contour feature loads dense dataset", |
17 | | - "query": "url=../../data/oahu-dense.json", |
18 | | - "wait": ["example.ready"], |
19 | | - "tests": [ |
20 | | - "example.contour instanceof geo.contourFeature", |
21 | | - "example.contour._createContours().value.length === 194770" |
22 | | - ] |
23 | | - }] |
| 9 | + "tests": [ |
| 10 | + { |
| 11 | + "description": "contour feature loads small dataset", |
| 12 | + "query": "url=../../data/oahu.json", |
| 13 | + "wait": [ |
| 14 | + "example.ready" |
| 15 | + ], |
| 16 | + "tests": [ |
| 17 | + "example.contour instanceof geo.contourFeature", |
| 18 | + "example.contour._createContours().value.length === 1953" |
| 19 | + ] |
| 20 | + }, |
| 21 | + { |
| 22 | + "description": "contour feature loads dense dataset", |
| 23 | + "query": "url=../../data/oahu-dense.json", |
| 24 | + "wait": [ |
| 25 | + "example.ready" |
| 26 | + ], |
| 27 | + "tests": [ |
| 28 | + "example.contour instanceof geo.contourFeature", |
| 29 | + "example.contour._createContours().value.length === 194770" |
| 30 | + ] |
| 31 | + } |
| 32 | + ] |
24 | 33 | } |
0 commit comments