page.pushstate = page.popstate = function(path, id) {
OSM.loadSidebarContent(path, function() {
- page.load(path, id);
+ addObject(type, id);
});
};
page.load = function(path, id) {
- map.addObject({type: type, id: parseInt(id)});
+ addObject(type, id, true);
};
+ function addObject(type, id, center) {
+ var bounds = map.addObject({type: type, id: parseInt(id)}, function(bounds) {
+ if (!window.location.hash && bounds.isValid()) {
+ OSM.router.moveListenerOff();
+ map.once('moveend', OSM.router.moveListenerOn);
+ if (center || !map.getBounds().contains(bounds)) map.fitBounds(bounds);
+ }
+ });
+ }
+
page.unload = function() {
map.removeObject();
};
}
page.pushstate = page.popstate = function (path) {
- OSM.loadSidebarContent(path, page.load);
+ OSM.loadSidebarContent(path, function() {
+ initialize(function() {
+ var data = $('.details').data(),
+ latLng = L.latLng(data.coordinates.split(','));
+ if (!map.getBounds().contains(latLng)) moveToNote();
+ });
+ });
};
- page.load = function () {
+ page.load = function() {
+ initialize(moveToNote);
+ };
+
+ function initialize(callback) {
content.find("input[type=submit]").on("click", function (e) {
e.preventDefault();
var data = $(e.target).data();
content.find("textarea").val('').trigger("input");
var data = $('.details').data(),
- latLng = data.coordinates.split(',');
-
- if (!window.location.hash || window.location.hash.match(/^#?c[0-9]+$/)) {
- OSM.router.moveListenerOff();
- map.once('moveend', OSM.router.moveListenerOn);
- map.getZoom() > 15 ? map.panTo(latLng) : map.setView(latLng, 16);
- }
+ latLng = L.latLng(data.coordinates.split(','));
if (!map.hasLayer(halo)) {
halo = L.circleMarker(latLng, {
opacity: 1,
clickable: true
});
+
map.addLayer(currentNote);
+
+ if (callback) callback();
};
+ function moveToNote() {
+ var data = $('.details').data(),
+ latLng = L.latLng(data.coordinates.split(','));
+
+ if (!window.location.hash || window.location.hash.match(/^#?c[0-9]+$/)) {
+ OSM.router.moveListenerOff();
+ map.once('moveend', OSM.router.moveListenerOn);
+ map.setView(latLng, 15, {reset: true});
+ }
+ }
+
page.unload = function () {
if (map.hasLayer(halo)) map.removeLayer(halo);
if (map.hasLayer(currentNote)) map.removeLayer(currentNote);
return str;
},
- addObject: function(object) {
+ addObject: function(object, callback) {
var objectStyle = {
color: "#FF6200",
weight: 4,
map._objectLayer.addData(xml);
map._objectLayer.addTo(map);
- if (!window.location.hash) {
- var bounds = map._objectLayer.getBounds();
- if (bounds.isValid()) {
- OSM.router.moveListenerOff();
- map.once('moveend', OSM.router.moveListenerOn);
- map.fitBounds(bounds);
- }
- }
+ if (callback) callback(map._objectLayer.getBounds());
}
});
},