1 /* Copyright (c) 2009 Arnaud Renevier, Inc, published under the modified BSD
4 OpenLayers.Control.SypAttribution = OpenLayers.Class (OpenLayers.Control.Attribution, {
5 updateAttribution: function() {
6 var attributions = [SypStrings.propulsedByLink];
7 if (this.map && this.map.layers) {
8 for(var i=0, len=this.map.layers.length; i<len; i++) {
9 var layer = this.map.layers[i];
10 if (layer.attribution && layer.getVisibility()) {
11 attributions.push( layer.attribution );
14 this.div.innerHTML = attributions.join(this.separator);
21 ICON: "media/marker-normal.png",
22 SELECT_ICON: "media/marker-selected.png",
32 this.map = new OpenLayers.Map("map", {
34 new OpenLayers.Control.SypAttribution(),
35 new OpenLayers.Control.Navigation(),
36 new OpenLayers.Control.PanZoom(),
37 new OpenLayers.Control.Permalink()
39 projection: new OpenLayers.Projection("EPSG:900913"),
40 displayProjection: new OpenLayers.Projection("EPSG:4326")
43 this.baseLayer = this.createBaseLayer();
44 this.dataLayer = this.createDataLayer();
45 this.map.addLayers([this.baseLayer, this.dataLayer]);
47 this.selectControl = this.createSelectControl();
48 this.map.addControl(this.selectControl);
49 this.selectControl.activate();
51 if (!this.map.getCenter()) {
52 this.map.setCenter(new OpenLayers.LonLat(0, 0), 0);
56 createBaseLayer: function() {
57 return new OpenLayers.Layer.OSM("OSM");
60 createDataLayer: function(map) {
61 var defaultStyle = new OpenLayers.Style({
62 externalGraphic: this.Markers.ICON,
63 graphicHeight: "${height}"
66 height: function(feature) {
67 var defaultHeight = SYP.Markers.HEIGHT || 32;
68 var increase = 4 * (feature.attributes.count - 1);
69 return Math.min(defaultHeight + increase, 50);
73 var selectStyle = new OpenLayers.Style({
74 externalGraphic: this.Markers.SELECT_ICON,
75 graphicHeight: this.Markers.HEIGHT || 32
77 var styleMap = new OpenLayers.StyleMap (
78 {"default": defaultStyle,
79 "select": selectStyle});
81 var layer = new OpenLayers.Layer.GML("KML", "items.php",
84 new OpenLayers.Strategy.Cluster()
87 format: OpenLayers.Format.KML,
88 projection: this.map.displayProjection,
89 eventListeners: { scope: this,
90 loadend: this.dataLayerEndLoad
97 createSelectControl: function() {
98 var control = new OpenLayers.Control.SelectFeature(
100 onSelect: this.onFeatureSelect,
101 onUnselect: this.onFeatureUnselect,
108 dataLayerEndLoad: function() {
109 if (!this.checkForFeatures()) {
114 if (map.getControlsByClass("OpenLayers.Control.ArgParser")[0].lat
115 == undefined) { // map center was not set in ArgParser control.
116 var orig = this.Utils.mbr (this.dataLayer);
117 var centerBounds = new OpenLayers.Bounds();
119 var mapProj = map.getProjectionObject();
120 var sypOrigProj = new OpenLayers.Projection("EPSG:4326");
122 var bottomLeft = new OpenLayers.LonLat(orig[0],orig[1]);
123 bottomLeft = bottomLeft.transform(sypOrigProj, mapProj);
124 var topRight = new OpenLayers.LonLat(orig[2],orig[3])
125 topRight = topRight.transform(sypOrigProj, mapProj);
127 centerBounds.extend(bottomLeft);
128 centerBounds.extend(topRight);
129 map.zoomToExtent(centerBounds);
133 checkForFeatures: function() {
134 var features = this.dataLayer.features;
135 if (features.length == 0) {
136 var message = SypStrings.noImageRegistered;
137 this.Utils.displayUserMessage(message, "warn");
139 return !!features.length;
142 createPopup: function(position, contentHTML) {
143 var popup = new OpenLayers.Popup.Anchored("popup",
149 popup.autoSize = true;
150 popup.backgroundColor = ""; // deal with it in css
151 popup.border = ""; // deal with it in css
152 popup.closeOnMove = true;
156 onFeatureUnselect: function (feature) {
157 var map = feature.layer.map;
158 var permaControl = map.getControlsByClass("OpenLayers.Control.Permalink");
159 if (permaControl[0]) {
160 permaControl[0].div.style.display = "";
162 if (!feature.popup) {
163 this.map.events.unregister("movestart", this, this._unselect);
166 var popup = feature.popup;
167 if (popup.visible()) {
172 onFeatureSelect: function(feature) {
173 var map = feature.layer.map;
174 if (feature.attributes.count > 1) {
175 this.unselect(feature);
176 var lonlat = new OpenLayers.LonLat(feature.geometry.x, feature.geometry.y);
177 map.setCenter(lonlat, map.zoom + 1);
180 var permaControl = map.getControlsByClass("OpenLayers.Control.Permalink");
181 if (permaControl[0]) {
182 permaControl[0].div.style.display = "none";
184 var popup = feature.popup;
187 switch (sypSettings.popupPos) {
189 popupPos = feature.geometry.getBounds().getCenterLonLat();
192 popupPos = SYP.Utils.tlCorner(map, 8);
195 popupPos = SYP.Utils.trCorner(map, 8);
198 popupPos = SYP.Utils.brCorner(map, 8);
201 popupPos = SYP.Utils.blCorner(map, 8);
204 popupPos = SYP.Utils.brCorner(map, 8);
208 // we cannot reuse popup; we need to recreate it in order for IE
209 // expressions to work. Otherwise, we get a 0x0 image on second view.
214 if (feature.cluster[0].attributes.name) {
215 // escaping name is necessary because it's not enclosed in another html tag.
216 contentHTML = "<h2>" +
217 SYP.Utils.escapeHTML(feature.cluster[0].attributes.name) +
219 feature.cluster[0].attributes.description;
221 contentHTML = feature.cluster[0].attributes.description;
223 if (!contentHTML || !contentHTML.length) {
224 this.map.events.register("movestart", this, this._unselect = function () { this.unselect(feature)});
227 popup = SYP.createPopup(popupPos, contentHTML);
229 popup.hide = function () {
230 OpenLayers.Element.hide(this.div);
231 control.unselectAll();
234 feature.popup = popup;
235 var anchor = popup.div.getElementsByTagName("a")[0];
237 anchor.onclick = function() {
238 SYP.showBigImage(this.href);
244 showBigImage: function (href) {
245 if (OpenLayers.Util.getBrowserName() == "msie") {
246 document.getElementById('bigimg_container').style.display = "block";
248 document.getElementById('bigimg_container').style.display = "table";
251 var maxHeight = document.body.clientHeight * 0.9;
252 var maxWidth = document.body.clientWidth * 0.9;
253 document.getElementById('bigimg').style.height = "";
254 document.getElementById('bigimg').style.width = "";
255 document.getElementById('bigimg').style.maxHeight = maxHeight + "px";
256 document.getElementById('bigimg').style.maxWidth = maxWidth + "px";
257 document.getElementById('bigimg').onload = function () {
258 var heightRatio = this.clientHeight / parseInt(this.style.maxHeight);
259 var widthRatio = this.clientWidth / parseInt(this.style.maxWidth);
260 if (heightRatio > 1 || widthRatio > 1) {
261 if (heightRatio > widthRatio) {
262 this.style.height = this.style.maxHeight;
264 this.style.width = this.style.maxWidth;
268 var icon = document.getElementById('bigimg_close');
269 icon.style.top = this.offsetTop;
270 icon.style.left = this.offsetLeft + this.clientWidth - icon.clientWidth;
273 document.getElementById('bigimg').src = href;
276 closeBigImage: function() {
277 document.getElementById('bigimg').src = "";
278 document.getElementById('bigimg').parentNode.innerHTML = document.getElementById('bigimg').parentNode.innerHTML;
279 document.getElementById('bigimg_container').style.display = "none";
283 tlCorner: function(map, margin) {
284 var bounds = map.calculateBounds();
285 var corner = new OpenLayers.LonLat(bounds.left, bounds.top);
286 var cornerAsPx = map.getPixelFromLonLat(corner);
287 cornerAsPx = cornerAsPx.add( +margin, +margin);
288 return map.getLonLatFromPixel(cornerAsPx);
291 trCorner: function(map, margin) {
292 var bounds = map.calculateBounds();
293 var corner = new OpenLayers.LonLat(bounds.right, bounds.top);
294 var cornerAsPx = map.getPixelFromLonLat(corner);
295 cornerAsPx = cornerAsPx.add( -margin, +margin);
296 return map.getLonLatFromPixel(cornerAsPx);
299 brCorner: function(map, margin) {
300 var bounds = map.calculateBounds();
301 var corner = new OpenLayers.LonLat(bounds.right, bounds.bottom);
302 var cornerAsPx = map.getPixelFromLonLat(corner);
303 cornerAsPx = cornerAsPx.add( -margin, -margin);
304 return map.getLonLatFromPixel(cornerAsPx);
307 blCorner: function(map, margin) {
308 var bounds = map.calculateBounds();
309 var corner = new OpenLayers.LonLat(bounds.left, bounds.bottom);
310 var cornerAsPx = map.getPixelFromLonLat(corner);
311 cornerAsPx = cornerAsPx.add( +margin, -margin);
312 return map.getLonLatFromPixel(cornerAsPx);
315 /* minimum bounds rectangle containing all feature locations.
316 * FIXME: if two features are close, but separated by 180th meridian,
317 * their mbr will span the whole earth. Actually, 179° lon and -170°
318 * lon are considerated very near.
320 mbr: function (layer) {
324 var mapProj = map.getProjectionObject();
325 var sypOrigProj = new OpenLayers.Projection("EPSG:4326");
327 for (var i =0; i < layer.features.length; i++) {
328 if (layer.features[i].cluster) {
329 features = features.concat(layer.features[i].cluster);
331 features = features.concat(layer.features);
340 if (features.length == 0) {
341 // keep default values
342 } else if (features.length == 1) {
343 // in case there's only one feature, we show an area of at least
345 var pos = features[0].geometry.getBounds().getCenterLonLat().clone();
346 var lonlat = pos.transform(mapProj, sypOrigProj);
348 minlon = Math.max (lonlat.lon - 2, -180);
349 maxlon = Math.min (lonlat.lon + 2, 180);
350 minlat = Math.max (lonlat.lat - 2, -90);
351 maxlat = Math.min (lonlat.lat + 2, 90);
353 for (var i = 0; i < features.length; i++) {
354 var pos = features[i].geometry.getBounds().getCenterLonLat().clone();
355 var lonlat = pos.transform(mapProj, sypOrigProj);
356 minlon = Math.min (lonlat.lon, minlon);
357 minlat = Math.min (lonlat.lat, minlat);
358 maxlon = Math.max (lonlat.lon, maxlon);
359 maxlat = Math.max (lonlat.lat, maxlat);
363 return [minlon, minlat, maxlon, maxlat];
367 displayUserMessage: function(message, status) {
368 var div = document.getElementById('message');
369 while (div.firstChild)
370 div.removeChild(div.firstChild);
371 var textNode = document.createTextNode(message);
374 div.style.color = "red";
377 div.style.color = "#FF8C00";
380 div.style.color = "green";
383 div.style.color = "black";
386 div.style.display = "block";
387 div.appendChild(textNode);
390 escapeHTML: function (str) {
395 replace(/&/gm, '&').
396 replace(/'/gm, ''').
397 replace(/"/gm, '"').
398 replace(/>/gm, '>').
399 replace(/</gm, '<');
404 // if possible, determine language with HTTP_ACCEPT_LANGUAGE instead of
405 // navigator.language
406 if (OpenLayers.Lang[SypStrings.language]) {
407 OpenLayers.Lang.setCode(SypStrings.language);
411 OpenLayers.Console.userError = function(error) {
412 SYP.Utils.displayUserMessage(error, "error");
415 // sometimes, especially when cache is clear, firefox does not compute
416 // correctly popup size. That's because at the end of getRenderedDimensions,
417 // dimensions of image is not known. Then, popup size is too small for its
418 // content. We work around the problem by checking that computed size is at
419 // least as big as content. To achieve that, we need to override
420 // OpenLayers.Popup.Anchored.prototype.updateSize to modify it slightly.
421 OpenLayers.Popup.Anchored.prototype.updateSize = function() {
422 // determine actual render dimensions of the contents by putting its
423 // contents into a fake contentDiv (for the CSS) and then measuring it
424 var preparedHTML = "<div class='" + this.contentDisplayClass+ "'>" +
425 this.contentDiv.innerHTML +
428 var containerElement = (this.map) ? this.map.layerContainerDiv
430 var realSize = OpenLayers.Util.getRenderedDimensions(
431 preparedHTML, null, {
432 displayClass: this.displayClass,
433 containerElement: containerElement
438 * XXX: next four lines are added by SYP!
440 if (this.contentDiv) {
441 realSize.w = Math.max (realSize.w, this.contentDiv.scrollWidth);
442 realSize.h = Math.max (realSize.h, this.contentDiv.scrollHeight);
445 // is the "real" size of the div is safe to display in our map?
446 var safeSize = this.getSafeContentSize(realSize);
449 if (safeSize.equals(realSize)) {
450 //real size of content is small enough to fit on the map,
451 // so we use real size.
456 //make a new OL.Size object with the clipped dimensions
457 // set or null if not clipped.
458 var fixedSize = new OpenLayers.Size();
459 fixedSize.w = (safeSize.w < realSize.w) ? safeSize.w : null;
460 fixedSize.h = (safeSize.h < realSize.h) ? safeSize.h : null;
462 if (fixedSize.w && fixedSize.h) {
463 //content is too big in both directions, so we will use
464 // max popup size (safeSize), knowing well that it will
465 // overflow both ways.
468 //content is clipped in only one direction, so we need to
469 // run getRenderedDimensions() again with a fixed dimension
470 var clippedSize = OpenLayers.Util.getRenderedDimensions(
471 preparedHTML, fixedSize, {
472 displayClass: this.contentDisplayClass,
473 containerElement: containerElement
477 //if the clipped size is still the same as the safeSize,
478 // that means that our content must be fixed in the
479 // offending direction. If overflow is 'auto', this means
480 // we are going to have a scrollbar for sure, so we must
483 var currentOverflow = OpenLayers.Element.getStyle(
484 this.contentDiv, "overflow"
486 if ( (currentOverflow != "hidden") &&
487 (clippedSize.equals(safeSize)) ) {
488 var scrollBar = OpenLayers.Util.getScrollbarWidth();
490 clippedSize.h += scrollBar;
492 clippedSize.w += scrollBar;
496 newSize = this.getSafeContentSize(clippedSize);
499 this.setSize(newSize);