Skip to content
Snippets Groups Projects
Commit 3778b577 authored by Leila Gonzales's avatar Leila Gonzales Committed by Demian Katz
Browse files

Fixed broken ResultGoogleMapAjax module.

parent 9726937c
No related merge requests found
...@@ -723,6 +723,11 @@ authors = Wikipedia ...@@ -723,6 +723,11 @@ authors = Wikipedia
; "google" ; "google"
;recordMap = google ;recordMap = google
; If you set recordMap = google, then Google requires that you obtain an API key.
; For more information on obtaining an API key, see:
; https://developers.google.com/maps/documentation/javascript/get-api-key#key
;googleMapApiKey = "your-key-here"
; This section controls the behavior of the cover generator when makeDynamicCovers ; This section controls the behavior of the cover generator when makeDynamicCovers
; above is non-false. ; above is non-false.
[DynamicCovers] [DynamicCovers]
......
...@@ -421,6 +421,7 @@ $config = [ ...@@ -421,6 +421,7 @@ $config = [
'europeanaresults' => 'VuFind\Recommend\Factory::getEuropeanaResults', 'europeanaresults' => 'VuFind\Recommend\Factory::getEuropeanaResults',
'expandfacets' => 'VuFind\Recommend\Factory::getExpandFacets', 'expandfacets' => 'VuFind\Recommend\Factory::getExpandFacets',
'favoritefacets' => 'VuFind\Recommend\Factory::getFavoriteFacets', 'favoritefacets' => 'VuFind\Recommend\Factory::getFavoriteFacets',
'resultgooglemapajax' => 'VuFind\Recommend\Factory::getResultGoogleMapAjax',
'sidefacets' => 'VuFind\Recommend\Factory::getSideFacets', 'sidefacets' => 'VuFind\Recommend\Factory::getSideFacets',
'randomrecommend' => 'VuFind\Recommend\Factory::getRandomRecommend', 'randomrecommend' => 'VuFind\Recommend\Factory::getRandomRecommend',
'summonbestbets' => 'VuFind\Recommend\Factory::getSummonBestBets', 'summonbestbets' => 'VuFind\Recommend\Factory::getSummonBestBets',
...@@ -442,7 +443,6 @@ $config = [ ...@@ -442,7 +443,6 @@ $config = [
'openlibrarysubjectsdeferred' => 'VuFind\Recommend\OpenLibrarySubjectsDeferred', 'openlibrarysubjectsdeferred' => 'VuFind\Recommend\OpenLibrarySubjectsDeferred',
'pubdatevisajax' => 'VuFind\Recommend\PubDateVisAjax', 'pubdatevisajax' => 'VuFind\Recommend\PubDateVisAjax',
'removefilters' => 'VuFind\Recommend\RemoveFilters', 'removefilters' => 'VuFind\Recommend\RemoveFilters',
'resultgooglemapajax' => 'VuFind\Recommend\ResultGoogleMapAjax',
'spellingsuggestions' => 'VuFind\Recommend\SpellingSuggestions', 'spellingsuggestions' => 'VuFind\Recommend\SpellingSuggestions',
'summonbestbetsdeferred' => 'VuFind\Recommend\SummonBestBetsDeferred', 'summonbestbetsdeferred' => 'VuFind\Recommend\SummonBestBetsDeferred',
'summondatabasesdeferred' => 'VuFind\Recommend\SummonDatabasesDeferred', 'summondatabasesdeferred' => 'VuFind\Recommend\SummonDatabasesDeferred',
......
...@@ -197,6 +197,21 @@ class Factory ...@@ -197,6 +197,21 @@ class Factory
); );
} }
/**
* Factory for ResultGoogleMapAjax Recommendations.
*
* @param ServiceManager $sm Service manager.
*
* @return ResultGoogleMapAjax
*/
public static function getResultGoogleMapAjax(ServiceManager $sm)
{
$config = $sm->getServiceLocator()->get('VuFind\Config')->get('config');
$key = isset($config->Content->googleMapApiKey)
? $config->Content->googleMapApiKey : null;
return new ResultGoogleMapAjax($key);
}
/** /**
* Factory for SideFacets module. * Factory for SideFacets module.
* *
......
...@@ -50,6 +50,23 @@ class ResultGoogleMapAjax implements RecommendInterface ...@@ -50,6 +50,23 @@ class ResultGoogleMapAjax implements RecommendInterface
*/ */
protected $searchObject; protected $searchObject;
/**
* GoogleMapAPI key from config.ini.
*
* @var string
*/
protected $googleMapApiKey;
/**
* Constructor
*
* @param string $key API key
*/
public function __construct($key)
{
$this->googleMapApiKey = $key;
}
/** /**
* Store the configuration of the recommendation module. * Store the configuration of the recommendation module.
* *
...@@ -93,6 +110,16 @@ class ResultGoogleMapAjax implements RecommendInterface ...@@ -93,6 +110,16 @@ class ResultGoogleMapAjax implements RecommendInterface
$this->searchObject = $results; $this->searchObject = $results;
} }
/**
* Get the Google Maps API key.
*
* @return string
*/
public function getGoogleMapApiKey()
{
return $this->googleMapApiKey;
}
/** /**
* Get search parameters * Get search parameters
* *
......
<? <?
$searchParams = $this->recommend->getSearchParams(); $searchParams = $this->recommend->getSearchParams();
$this->headScript()->appendFile('https://maps.googleapis.com/maps/api/js?v=3.8&sensor=false&language='.$this->layout()->userLang); $this->headScript()->appendFile('https://maps.googleapis.com/maps/api/js?key=' . urlencode($this->recommend->getGoogleMapApiKey()) . '&sensor=false&language='.$this->layout()->userLang);
$this->headScript()->appendFile('vendor/markerclusterer.min.js'); $this->headScript()->appendFile('vendor/markerclusterer.min.js');
?> ?>
<script type="text/javascript"> <script type="text/javascript">
...@@ -44,7 +44,7 @@ ClusterIcon.prototype.onAdd = function () { ...@@ -44,7 +44,7 @@ ClusterIcon.prototype.onAdd = function () {
this.div_ = document.createElement("div"); this.div_ = document.createElement("div");
this.div_.className = "clusterDiv"; this.div_.className = "clusterDiv";
if (this.visible_) { if (this.visible_) {
this.removeClass('hidden'); $(this).removeClass('hidden');
} }
this.getPanes().overlayMouseTarget.appendChild(this.div_); this.getPanes().overlayMouseTarget.appendChild(this.div_);
...@@ -86,7 +86,7 @@ ClusterIcon.prototype.onAdd = function () { ...@@ -86,7 +86,7 @@ ClusterIcon.prototype.onAdd = function () {
* @type {string} * @type {string}
* @constant * @constant
*/ */
MarkerClusterer.IMAGE_PATH = "https://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclustererplus/images/m"; MarkerClusterer.IMAGE_PATH = "https://raw.githubusercontent.com/googlemaps/js-marker-clusterer/gh-pages/images/m";
var markers; var markers;
var mc; var mc;
...@@ -116,20 +116,25 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480}); ...@@ -116,20 +116,25 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480});
}; };
map = new google.maps.Map(document.getElementById("map_canvas"), map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions); myOptions);
//mc = new MarkerClusterer(map);
showMarkers(); var useGmm = document.getElementById('usegmm');
google.maps.event.addDomListener(useGmm, 'click', refreshMap);
var checkbx = document.getElementById("useCluster"); var checkbx = document.getElementById("useCluster");
var wrap = document.getElementById("mapWrap"); var wrap = document.getElementById("mapWrap");
wrap.style.display = "block"; wrap.style.display = "block";
checkbx.style.display = "block"; checkbx.style.display = "block";
showMarkers();
}); });
} }
function showMarkers(){ function showMarkers(){
markers = [];
deleteOverlays(); deleteOverlays();
if(mc != null) { if (mc) {
mc.clearMarkers(); mc.clearMarkers();
} }
markers = [];
for (var i = 0; i<markersData.length; i++){ for (var i = 0; i<markersData.length; i++){
var disTitle = markersData[i].title; var disTitle = markersData[i].title;
...@@ -159,7 +164,7 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480}); ...@@ -159,7 +164,7 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480});
mc = new MarkerClusterer(map, markers); mc = new MarkerClusterer(map, markers);
} else { } else {
for (var i = 0; i < markers.length; i++) { for (var i = 0; i < markers.length; i++) {
map.addOverlay(markers[i]); markers[i].setMap(map);
} }
} }
} }
...@@ -187,6 +192,7 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480}); ...@@ -187,6 +192,7 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480});
} }
} }
function refreshMap() { function refreshMap() {
deleteOverlays();
showMarkers(); showMarkers();
} }
...@@ -197,7 +203,7 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480}); ...@@ -197,7 +203,7 @@ var infowindow = new google.maps.InfoWindow({maxWidth: 480, minWidth: 480});
<div class="mapClusterToggle" id="useCluster"> <div class="mapClusterToggle" id="useCluster">
<div class="checkbox"> <div class="checkbox">
<label for="usegmm"> <label for="usegmm">
<input type="checkbox" id="usegmm" checked="true" onclick="refreshMap();"></input> <input type="checkbox" id="usegmm" checked="true"></input>
<?=$this->transEsc('google_map_cluster_points') ?> <?=$this->transEsc('google_map_cluster_points') ?>
</label> </label>
</div> </div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment