libgd-gis 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,49 +0,0 @@
1
- module GD
2
- module GIS
3
- class Style
4
- LIGHT = Style.new(
5
- roads: {
6
- motorway: {
7
- stroke: [100,100,100],
8
- stroke_width: 10,
9
- fill: [245,245,245],
10
- fill_width: 6
11
- },
12
- primary: {
13
- stroke: [140,140,140],
14
- stroke_width: 7,
15
- fill: [240,240,240],
16
- fill_width: 4
17
- },
18
- street: {
19
- stroke: [220,220,220],
20
- stroke_width: 1
21
- }
22
- },
23
- rail: {
24
- stroke: [80,80,80],
25
- stroke_width: 6,
26
- fill: [230,70,70],
27
- fill_width: 4,
28
- center: [255,255,255],
29
- center_width: 1
30
- },
31
- water: {
32
- fill: [168,208,255],
33
- stroke: [120,180,240]
34
- },
35
- park: {
36
- fill: [205,238,203]
37
- },
38
- order: [
39
- :water,
40
- :park,
41
- :street,
42
- :primary,
43
- :motorway,
44
- :rail
45
- ]
46
- )
47
- end
48
- end
49
- end
@@ -1,49 +0,0 @@
1
- module GD
2
- module GIS
3
- class Style
4
- SOLARIZED = Style.new(
5
- roads: {
6
- motorway: {
7
- stroke: [7, 54, 66], # Base02
8
- stroke_width: 10,
9
- fill: [131, 148, 150], # Base0
10
- fill_width: 6
11
- },
12
- primary: {
13
- stroke: [88, 110, 117], # Base01
14
- stroke_width: 7,
15
- fill: [147, 161, 161], # Base1
16
- fill_width: 4
17
- },
18
- street: {
19
- stroke: [147, 161, 161], # Base1
20
- stroke_width: 1
21
- }
22
- },
23
- rails: {
24
- stroke: [203, 75, 22], # Orange
25
- stroke_width: 6,
26
- fill: [220, 50, 47], # Red
27
- fill_width: 4,
28
- center: [253, 246, 227], # Base3
29
- center_width: 1
30
- },
31
- water: {
32
- fill: [38, 139, 210], # Blue
33
- stroke: [42, 161, 152] # Cyan
34
- },
35
- parks: {
36
- fill: [133, 153, 0] # Green
37
- },
38
- order: [
39
- :water,
40
- :park,
41
- :street,
42
- :primary,
43
- :motorway,
44
- :rail
45
- ]
46
- )
47
- end
48
- end
49
- end