1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| var layer = new mapvgl.ShapeLineLayer({ color: 'rgba(55, 55, 200, 1)', data: [{ geometry: { type: 'Polygon', coordinates: [ [ [116.392394, 39.910683], [116.405976, 39.927727], [116.420996, 39.910351] ] ] }, properties: { height: 100, } }] });
|