web-mapping-leaflet 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/_data/map_config.yml +11 -0
- data/_data/map_data.yml +55 -0
- data/_data/map_source.yml +1 -0
- data/_data/map_ui.yml +0 -0
- data/index.md +5 -0
- metadata +6 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 487f5130269854acc4b0b027f0d4c5aea13ae340a85251840292c33401cc97a4
|
4
|
+
data.tar.gz: f6ae743abee89170bf5231b7c6d0e94698f6d9562a58ab17365368081c9e8ce2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f4e1b9ce14caac5d399af1bc7b640ce8be8c6fbf01c74b626786eb6f167e6a8bcbaa819ba376b1b639274165b8d0c13b8ac5682ea4e0999b593f8509107d6cc
|
7
|
+
data.tar.gz: 2babb66a2181425cc09f5d1eae434326917934f097f9bff8b096c525a74f109bfb2f5417ab2971cd1896012bc60222ccb689eaf9f911db0b42d7b90b70b6272a
|
data/_data/map_data.yml
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
geojson:
|
2
|
+
point:
|
3
|
+
-
|
4
|
+
name: "Cities"
|
5
|
+
url: "assets/cities.geojson"
|
6
|
+
createIcon: true
|
7
|
+
iconURL: "assets/icons/icon.png"
|
8
|
+
radius: 6
|
9
|
+
fillColor: "#9817f2"
|
10
|
+
color: "#be85ff"
|
11
|
+
weight: 5
|
12
|
+
opacity: 0.7
|
13
|
+
fillOpacity: 1
|
14
|
+
# icon setting
|
15
|
+
icontype: "leaf" # refer to font-awesome icons for icon of your interest
|
16
|
+
iconShape: "marker" # circle / marker
|
17
|
+
borderColor: "#f46118"
|
18
|
+
textColor: "#f46118"
|
19
|
+
|
20
|
+
-
|
21
|
+
name: "Random"
|
22
|
+
url: "assets/random.geojson"
|
23
|
+
createIcon: false
|
24
|
+
iconURL: "assets/icons/icon.png"
|
25
|
+
radius: 6
|
26
|
+
fillColor: "#f26617"
|
27
|
+
color: "#ffa985"
|
28
|
+
weight: 5
|
29
|
+
opacity: 0.7
|
30
|
+
fillOpacity: 1
|
31
|
+
# Icon setting
|
32
|
+
icontype: "leaf" # refer to font-awesome icons for icon of your interest
|
33
|
+
iconShape: "marker" # circle / marker
|
34
|
+
borderColor: "#f9ae89"
|
35
|
+
textColor: "#f9ae89"
|
36
|
+
|
37
|
+
line:
|
38
|
+
-
|
39
|
+
name: "Line"
|
40
|
+
url: "assets/polyline.geojson"
|
41
|
+
color: "#ff0000"
|
42
|
+
weight: 2
|
43
|
+
dashArray: "3"
|
44
|
+
opacity: 1
|
45
|
+
|
46
|
+
area:
|
47
|
+
-
|
48
|
+
name: "Countries"
|
49
|
+
url: "assets/countries_dummy.geojson"
|
50
|
+
featID: "pop"
|
51
|
+
weight: 2
|
52
|
+
opacity: 0.7
|
53
|
+
color: "#ffffff"
|
54
|
+
dashArray: "3"
|
55
|
+
fillOpacity: 0.8
|
@@ -0,0 +1 @@
|
|
1
|
+
|
data/_data/map_ui.yml
ADDED
File without changes
|
data/index.md
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web-mapping-leaflet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wslerry
|
@@ -61,6 +61,10 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
|
+
- _data/map_config.yml
|
65
|
+
- _data/map_data.yml
|
66
|
+
- _data/map_source.yml
|
67
|
+
- _data/map_ui.yml
|
64
68
|
- _includes/about.html
|
65
69
|
- _includes/contact.html
|
66
70
|
- _includes/footer.html
|
@@ -82,6 +86,7 @@ files:
|
|
82
86
|
- assets/js/leaflet-beautify-marker-icon.js
|
83
87
|
- assets/polyline.geojson
|
84
88
|
- assets/random.geojson
|
89
|
+
- index.md
|
85
90
|
homepage: https://github.com/wslerry/web-mapping-leaflet.git
|
86
91
|
licenses:
|
87
92
|
- MIT
|