From 0aaa61f458673b76783ce5fc1112dcc29697b6ca Mon Sep 17 00:00:00 2001 From: arno Date: Thu, 30 Jul 2009 17:55:46 +0200 Subject: [PATCH] uses cluster strategy for items presentation --- js/syp.js | 48 ++++++++++++++++++++++++++++++++---------------- syp.cfg | 1 + 2 files changed, 33 insertions(+), 16 deletions(-) diff --git a/js/syp.js b/js/syp.js index 8e32d85..fdd69ed 100644 --- a/js/syp.js +++ b/js/syp.js @@ -71,21 +71,31 @@ var SYP = { }, createDataLayer: function(map) { + var defaultStyle = new OpenLayers.Style({ + externalGraphic: this.Settings.MARKER_ICON, + graphicHeight: "${height}" + }, { + context: { + height: function(feature) { + var defaultHeight = SYP.Settings.MARKER_ICON_HEIGHT || 32; + var increase = 4 * (feature.attributes.count - 1); + return Math.min(defaultHeight + increase, 50); + } + } + }); + var selectStyle = new OpenLayers.Style({ + externalGraphic: this.Settings.MARKER_SELECT_ICON, + graphicHeight: this.Settings.MARKER_SELECT_ICON_HEIGHT || 32 + }); var styleMap = new OpenLayers.StyleMap ( - {"default": { - externalGraphic: this.Settings.MARKER_ICON, - graphicHeight: this.Settings.MARKER_ICON_HEIGHT - || 32 - }, - "select": { - externalGraphic: this.Settings.MARKER_SELECT_ICON, - graphicHeight: this.Settings.MARKER_SELECT_ICON_HEIGHT - || 32 - } - }); + {"default": defaultStyle, + "select": selectStyle}); var layer = new OpenLayers.Layer.GML("KML", "items.php", { + strategies: [ + new OpenLayers.Strategy.Cluster() + ], styleMap: styleMap, format: OpenLayers.Format.KML, projection: this.map.displayProjection, @@ -148,6 +158,12 @@ var SYP = { onFeatureSelect: function(feature) { var map = feature.layer.map; + if (feature.attributes.count > 1) { + this.unselect(feature); + var lonlat = new OpenLayers.LonLat(feature.geometry.x, feature.geometry.y); + map.setCenter(lonlat, map.zoom + 1); + return; + } var permaControl = map.getControlsByClass("OpenLayers.Control.Permalink"); if (permaControl[0]) { permaControl[0].div.style.display = "none"; @@ -162,13 +178,13 @@ var SYP = { popup.destroy(); } var contentHTML; - if (feature.attributes.name) { + if (feature.cluster[0].attributes.name) { contentHTML = "

" + - feature.attributes.name + + feature.cluster[0].attributes.name + "

" + - feature.attributes.description; + feature.cluster[0].attributes.description; } else { - contentHTML = feature.attributes.description; + contentHTML = feature.cluster[0].attributes.description; } if (!contentHTML || !contentHTML.length) { this.map.events.register("movestart", this, this._unselect = function () { this.unselect(feature)}); @@ -178,7 +194,7 @@ var SYP = { var control = this; popup.hide = function () { OpenLayers.Element.hide(this.div); - control.unselect(feature); + control.unselectAll(); }; map.addPopup(popup); feature.popup = popup; diff --git a/syp.cfg b/syp.cfg index cb484e5..f342dea 100644 --- a/syp.cfg +++ b/syp.cfg @@ -24,6 +24,7 @@ OpenLayers/Vector.js OpenLayers/Renderer/SVG.js OpenLayers/Renderer/Canvas.js OpenLayers/Renderer/VML.js +OpenLayers/Strategy/Cluster.js OpenLayers/Tile/Image.js OpenLayers/Tile/Image.js OpenLayers/Tile/WFS.js -- 2.39.2