$(document).ready(function () {
- var highlight;
+ var rects = {};
+ var map = createMap("changeset_list_map");
+ var group = L.featureGroup().addTo(map);
- function highlightChangeset(id) {
- var feature = vectors.getFeatureByFid(id);
- var bounds = feature.geometry.getBounds();
-
- if (bounds.containsBounds(map.getExtent())) {
- bounds = map.getExtent().scale(1.1);
+ $("[data-changeset]").each(function () {
+ var changeset = $(this).data('changeset');
+ if (changeset.bbox) {
+ var rect = L.rectangle([[changeset.bbox.minlat, changeset.bbox.minlon],
+ [changeset.bbox.maxlat, changeset.bbox.maxlon]],
+ {weight: 2, color: "#ee9900", fillColor: "#ffff55", fillOpacity: 0});
+ rect.id = changeset.id;
+ rects[changeset.id] = rect;
+ rect.addTo(group);
}
+ });
- if (highlight) vectors.removeFeatures(highlight);
-
- highlight = new OpenLayers.Feature.Vector(bounds.toGeometry(), {}, {
- strokeWidth: 2,
- strokeColor: "#ee9900",
- fillColor: "#ffff55",
- fillOpacity: 0.5
- });
-
- vectors.addFeatures(highlight);
-
+ function highlightChangeset(id) {
+ rects[id].setStyle({fillOpacity: 0.5});
$("#tr-changeset-" + id).addClass("selected");
}
function unHighlightChangeset(id) {
- vectors.removeFeatures(highlight);
-
+ rects[id].setStyle({fillOpacity: 0});
$("#tr-changeset-" + id).removeClass("selected");
}
- var map = createMap("changeset_list_map", {
- controls: [
- new OpenLayers.Control.Navigation(),
- new OpenLayers.Control.Zoom(),
- new OpenLayers.Control.SimplePanZoom()
- ]
- });
-
- var bounds = new OpenLayers.Bounds();
-
- $("[data-changeset]").each(function () {
- var changeset = $(this).data('changeset');
- if (changeset.bbox) {
- var bbox = new OpenLayers.Bounds(changeset.bbox.minlon, changeset.bbox.minlat, changeset.bbox.maxlon, changeset.bbox.maxlat);
-
- bounds.extend(bbox);
-
- addBoxToMap(bbox, changeset.id, true);
+ group.on({
+ mouseover: function (e) {
+ highlightChangeset(e.layer.id);
+ },
+ mouseout: function (e) {
+ unHighlightChangeset(e.layer.id);
}
});
- vectors.events.on({
- "featureselected": function(feature) {
- highlightChangeset(feature.feature.fid);
+ $("[data-changeset]").on({
+ mouseover: function () {
+ highlightChangeset($(this).data("changeset").id);
},
- "featureunselected": function(feature) {
- unHighlightChangeset(feature.feature.fid);
+ mouseout: function () {
+ unHighlightChangeset($(this).data("changeset").id);
}
});
- var selectControl = new OpenLayers.Control.SelectFeature(vectors, {
- multiple: false,
- hover: true
- });
- map.addControl(selectControl);
- selectControl.activate();
-
var params = OSM.mapParams();
if (params.bbox) {
- map.zoomToExtent(proj(new OpenLayers.Bounds(params.minlon, params.minlat, params.maxlon, params.maxlat)));
+ map.fitBounds([[params.minlat, params.minlon],
+ [params.maxlat, params.maxlon]]);
} else {
- map.zoomToExtent(proj(bounds));
+ map.fitBounds(group.getBounds());
}
-
- $("[data-changeset]").mouseover(function() {
- highlightChangeset($(this).data("changeset").id);
- });
-
- $("[data-changeset]").mouseout(function() {
- unHighlightChangeset($(this).data("changeset").id);
- });
});