web-mapping-leaflet 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d335b8cfb675309323358b071d9fce8f280d7a426971dc8d8bf777b76578d700
4
- data.tar.gz: 7fecab3b5eb0ed3244f43023ebbb20c1fb571ebca1a0ca0452edb6d9eaef9004
3
+ metadata.gz: 487f5130269854acc4b0b027f0d4c5aea13ae340a85251840292c33401cc97a4
4
+ data.tar.gz: f6ae743abee89170bf5231b7c6d0e94698f6d9562a58ab17365368081c9e8ce2
5
5
  SHA512:
6
- metadata.gz: a9e260e2bc273745516d08f287f328fea92ab401b1b1419339965c58be3bbbe7d3a929e5e2ede6f65c4ae9bcdac9fba2257f1ed40b7af5a204af4781e257974c
7
- data.tar.gz: 2cc6fb985905b2ad6a450607b0025f2f2fc133a6ebb27aad6c0fc15ede52c6cd7d821afa9c8bca4cc36b078308993710c987421ddb26009258f049e246dc383a
6
+ metadata.gz: 2f4e1b9ce14caac5d399af1bc7b640ce8be8c6fbf01c74b626786eb6f167e6a8bcbaa819ba376b1b639274165b8d0c13b8ac5682ea4e0999b593f8509107d6cc
7
+ data.tar.gz: 2babb66a2181425cc09f5d1eae434326917934f097f9bff8b096c525a74f109bfb2f5417ab2971cd1896012bc60222ccb689eaf9f911db0b42d7b90b70b6272a
@@ -0,0 +1,11 @@
1
+ param:
2
+ -
3
+ lat: 0
4
+ long: 0
5
+ zoom: 3
6
+ minZoom: 2 #minimum zoom level
7
+ maxZoom: 18 #maximum zoom level
8
+ x1: #longitude lower left
9
+ y1: #latitude lower left
10
+ x2: #longitude upper right
11
+ y2: #latitude upper right
@@ -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
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: page
3
+ permalink:
4
+ ---
5
+ {% include_cached map.html %}
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.2
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