mapkick-rb 0.1.4 → 0.1.5

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: f5a2b37b33ecba167e0844af635b9a87a3afad84eb92b06e19cd3db6ecf6ceb8
4
- data.tar.gz: db38e21238698891fa79c21dfcafddba4b97fe3e4b31a91083871279a90836bb
3
+ metadata.gz: 3fe67a4f4f194dbcd7a4c1c5b0955afe1293e1c7aefe3a568624cf8437b0cd39
4
+ data.tar.gz: dd9d5486bfacdd560e645bbfd59c6443dbf8e6c10dd1ef22750c7c253ef25380
5
5
  SHA512:
6
- metadata.gz: 54729a215c5960c9b73395d98a395941231fa76b6e7b8c9c4d85364f5299e6c4032ac66d08988b236a4fe06a0f40018be997eb53822d44c11003671c4143e43b
7
- data.tar.gz: 303226c8be546b020ff81054559f8cff01560ac5a1c26f30f97b1931e1990dcb9186db4a6a885530b80714e89db3de92881f554253ec6c164a47794a3b787034
6
+ metadata.gz: df625004ba2e24d600d877dfc372de269ffeb4ec5637672c3db36557c632af5f16e6d5811e54fc157c6e9b1929327129f32271f46c4c619c44df620fe93efb8a
7
+ data.tar.gz: 6b721f26b678719477ea0e8413a836a4f97ca623dc49f134e695ad459d8a6a6905c9c911a63bc4a81b97627842ebcdac2054028f5732c247fbed4914672bb3e6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.1.5 (2023-07-24)
2
+
3
+ - Updated Mapkick.js to 0.2.6
4
+ - Support for area maps is no longer experimental
5
+
1
6
  ## 0.1.4 (2023-03-11)
2
7
 
3
8
  - Updated Mapkick.js to 0.2.5
data/README.md CHANGED
@@ -4,7 +4,7 @@ Create beautiful JavaScript maps with one line of Ruby. No more fighting with ma
4
4
 
5
5
  [See it in action](https://chartkick.com/mapkick)
6
6
 
7
- :fire: For charts, check out [Chartkick](https://chartkick.com)
7
+ :fire: For static maps, check out [Mapkick Static](https://github.com/ankane/mapkick-static), and for charts, check out [Chartkick](https://chartkick.com)
8
8
 
9
9
  [![Build Status](https://github.com/ankane/mapkick/workflows/build/badge.svg?branch=master)](https://github.com/ankane/mapkick/actions)
10
10
 
@@ -85,7 +85,7 @@ Point map
85
85
  <%= js_map [{latitude: 37.7829, longitude: -122.4190}] %>
86
86
  ```
87
87
 
88
- Area map (experimental)
88
+ Area map
89
89
 
90
90
  ```erb
91
91
  <%= area_map [{geometry: {type: "Polygon", coordinates: ...}}] %>
@@ -180,6 +180,14 @@ Refresh data from a remote source every `n` seconds
180
180
  <%= js_map url, refresh: 60 %>
181
181
  ```
182
182
 
183
+ Pass options directly to the mapping library
184
+
185
+ ```erb
186
+ <%= js_map data, library: {hash: true} %>
187
+ ```
188
+
189
+ See the documentation for [Mapbox GL JS](https://docs.mapbox.com/mapbox-gl-js/api/map/) and [MapLibre GL JS](https://maplibre.org/maplibre-gl-js-docs/api/map/) for more info
190
+
183
191
  ### Global Options
184
192
 
185
193
  To set options for all of your maps, create an initializer `config/initializers/mapkick.rb` with:
@@ -1,3 +1,3 @@
1
1
  module Mapkick
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  ================================================================================
2
- Mapkick.js 0.2.5
2
+ Mapkick.js 0.2.6
3
3
  ================================================================================
4
4
 
5
5
  Copyright (c) 2017-2023 Andrew Kane
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * This bundle includes:
3
3
  *
4
- * Mapkick.js v0.2.5
4
+ * Mapkick.js v0.2.6
5
5
  * https://github.com/ankane/mapkick.js
6
6
  * MIT License
7
7
  *
@@ -888,6 +888,9 @@
888
888
  }
889
889
  }
890
890
  }
891
+ if (!zoom) {
892
+ zoom = 15;
893
+ }
891
894
 
892
895
  var mapOptions = {
893
896
  container: element,
@@ -895,7 +898,7 @@
895
898
  dragRotate: false,
896
899
  touchZoomRotate: false,
897
900
  center: center,
898
- zoom: zoom || 15
901
+ zoom: zoom
899
902
  };
900
903
  if (!options.style) {
901
904
  mapOptions.projection = "mercator";
@@ -903,6 +906,9 @@
903
906
  if (options.accessToken) {
904
907
  mapOptions.accessToken = options.accessToken;
905
908
  }
909
+ if (options.library) {
910
+ Object.assign(mapOptions, options.library);
911
+ }
906
912
  map = new library.Map(mapOptions);
907
913
 
908
914
  if (options.controls) {
@@ -915,7 +921,8 @@
915
921
  map.style.stylesheet = {};
916
922
  }
917
923
 
918
- if (!bounds.isEmpty()) {
924
+ // check zoom for hash library option
925
+ if (!bounds.isEmpty() && map.getZoom() === zoom) {
919
926
  map.fitBounds(bounds, {padding: 40, animate: false, maxZoom: 15});
920
927
  }
921
928
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mapkick-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-11 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: andrew@ankane.org
@@ -47,7 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  requirements: []
50
- rubygems_version: 3.4.6
50
+ rubygems_version: 3.4.10
51
51
  signing_key:
52
52
  specification_version: 4
53
53
  summary: Create beautiful JavaScript maps with one line of Ruby