]> git.openstreetmap.org Git - rails.git/commitdiff
Allow a note=N parameter in the URL to zoom to and open a note
authorTom Hughes <tom@compton.nu>
Sun, 3 Feb 2013 16:47:30 +0000 (16:47 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 3 Feb 2013 16:47:30 +0000 (16:47 +0000)
app/assets/javascripts/index/notes.js.erb
app/assets/javascripts/osm.js.erb

index 9be29726a03e40730618acec8beeed5881462710..6245758bfce313a2871d52c529ff17c096ed9c78 100644 (file)
@@ -43,6 +43,20 @@ $(document).ready(function () {
     map.layersControl.addOverlay(noteLayer, I18n.t("browse.start_rjs.notes_layer_name"));
 
     if (params.notes) map.addLayer(noteLayer);
     map.layersControl.addOverlay(noteLayer, I18n.t("browse.start_rjs.notes_layer_name"));
 
     if (params.notes) map.addLayer(noteLayer);
+
+    if (params.note) {
+      $.ajax({
+        url: "/api/" + OSM.API_VERSION + "/notes/" + params.note + ".json",
+        success: function (feature) {
+          var marker = updateMarker(notes[feature.properties.id], feature);
+
+          notes[feature.properties.id] = marker;
+
+          map.addLayer(noteLayer);
+          marker.openPopup();
+        }
+      });
+    }
   }
 
   function updateMarker(marker, feature) {
   }
 
   function updateMarker(marker, feature) {
@@ -106,10 +120,10 @@ $(document).ready(function () {
   function popupOptions() {
     var mapSize = map.getSize();
 
   function popupOptions() {
     var mapSize = map.getSize();
 
-    return { 
+    return {
       minWidth: 320,
       minWidth: 320,
-      maxWidth: mapSize.y * 1 / 3, 
-      maxHeight: mapSize.y * 2 / 3, 
+      maxWidth: mapSize.y * 1 / 3,
+      maxHeight: mapSize.y * 2 / 3,
       offset: new L.Point(0, -3),
       autoPanPadding: new L.Point(60, 40)
     };
       offset: new L.Point(0, -3),
       autoPanPadding: new L.Point(60, 40)
     };
index ebd97f39be048a945b8f9e13e53bd215a4b23c50..81c1e315217711a2c5d23631c4b8b0802dc2fb1d 100644 (file)
@@ -113,6 +113,10 @@ OSM = {
 
     mapParams.notes = params.notes == "yes";
 
 
     mapParams.notes = params.notes == "yes";
 
+    if (params.note) {
+      mapParams.note = parseInt(params.note);
+    }
+
     var scale = parseFloat(params.scale);
     if (scale > 0) {
       mapParams.zoom = Math.log(360.0 / (scale * 512.0)) / Math.log(2.0);
     var scale = parseFloat(params.scale);
     if (scale > 0) {
       mapParams.zoom = Math.log(360.0 / (scale * 512.0)) / Math.log(2.0);