| 80 | | window.setInterval(rotateFeature, 100, |
|---|
| 81 | | pointFeature, 360 / 20, origin); |
|---|
| 82 | | window.setInterval(rotateFeature, 100, |
|---|
| 83 | | lineFeature, 360 / 40, origin); |
|---|
| 84 | | window.setInterval(rotateFeature, 100, |
|---|
| 85 | | polygonFeature, -360 / 20, origin); |
|---|
| | 80 | window.setInterval(function() {rotateFeature( |
|---|
| | 81 | pointFeature, 360 / 20, origin)}, 100); |
|---|
| | 82 | window.setInterval(function() {rotateFeature( |
|---|
| | 83 | lineFeature, 360 / 40, origin)}, 100); |
|---|
| | 84 | window.setInterval(function(){rotateFeature( |
|---|
| | 85 | polygonFeature, -360 / 20, origin)}, 100); |
|---|