jekyll-maps 1.1.3 → 1.1.4
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/History.md +4 -0
- data/lib/jekyll-maps/google_map_api.js +10 -1
- data/lib/jekyll-maps/location_finder.rb +2 -1
- data/lib/jekyll-maps/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f78a665bd5372843570e3b7ce2fdc259372d3b42
|
|
4
|
+
data.tar.gz: ab275cb5b36e62a4486ee46dd4497b8b8cdd26a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e76302ce186d29bb54201505f164da6883bb09e6ca0765a89fe3bfee79f97114d46cfcc643159cc1ef080b92297190c95118ab3a541976f00b5c8cd82431e2da
|
|
7
|
+
data.tar.gz: b58410fca8011e807fe11f1f433e97d5a3f4a2fa20f3fc91fbe2e8c35857d8cd146a5db8423eceaf7c85ed815514deff1a1cda324de6927237f46bae023d498e
|
data/History.md
CHANGED
|
@@ -47,6 +47,7 @@ var jekyllMaps = (function () {
|
|
|
47
47
|
bounds = new google.maps.LatLngBounds(),
|
|
48
48
|
options = this.options,
|
|
49
49
|
map = new google.maps.Map(document.getElementById(data.id), options),
|
|
50
|
+
infoWindow = new google.maps.InfoWindow(),
|
|
50
51
|
markers = data.locations.map(createMarker);
|
|
51
52
|
|
|
52
53
|
map.fitBounds(bounds);
|
|
@@ -62,13 +63,21 @@ var jekyllMaps = (function () {
|
|
|
62
63
|
marker = new google.maps.Marker({
|
|
63
64
|
position: position,
|
|
64
65
|
title: location.title,
|
|
66
|
+
image: location.image,
|
|
65
67
|
url: location.url,
|
|
66
68
|
map: map
|
|
67
69
|
});
|
|
68
70
|
|
|
69
71
|
bounds.extend(position);
|
|
70
72
|
marker.addListener('click', function () {
|
|
71
|
-
|
|
73
|
+
var contentString = '<div class="map-info-window"><h5>' + this.title + '</h5>',
|
|
74
|
+
link = 'View';
|
|
75
|
+
if (this.image.length > 0) {
|
|
76
|
+
link = '<img src="' + this.image + '" alt="' + this.title + '"/>';
|
|
77
|
+
}
|
|
78
|
+
contentString += '<a href="' + this.url + '">' + link + '</a></div>';
|
|
79
|
+
infoWindow.setContent(contentString);
|
|
80
|
+
infoWindow.open(map, this);
|
|
72
81
|
});
|
|
73
82
|
|
|
74
83
|
return marker;
|
|
@@ -19,7 +19,8 @@ module Jekyll
|
|
|
19
19
|
:latitude => document["location"]["latitude"],
|
|
20
20
|
:longitude => document["location"]["longitude"],
|
|
21
21
|
:title => document["title"],
|
|
22
|
-
:url => document["url"] || document.url
|
|
22
|
+
:url => document["url"] || document.url,
|
|
23
|
+
:image => document["image"] || ""
|
|
23
24
|
}
|
|
24
25
|
end
|
|
25
26
|
end
|
data/lib/jekyll-maps/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-maps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anatoliy Yastreb
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-07-
|
|
11
|
+
date: 2016-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|