]> git.openstreetmap.org Git - rails.git/blobdiff - test/javascripts/osm_test.js
Moved inline styling to stylesheet
[rails.git] / test / javascripts / osm_test.js
index f26f08c9f4594de9043d6cb0eb5207c083a200db..51f74fe7a56b98087fba50772169642e0797d673 100644 (file)
@@ -239,4 +239,14 @@ describe("OSM", function () {
       expect(OSM.locationCookie(map)).to.eq("-3.685|57.625|5|M");
     });
   });
+
+  describe(".distance", function () {
+    it("computes distance between points", function () {
+      var latlng1 = L.latLng(51.76712,-0.00484),
+        latlng2 = L.latLng(51.7675159, -0.0078329);
+
+      expect(OSM.distance(latlng1, latlng2)).to.be.closeTo(210.664, 0.005);
+      expect(OSM.distance(latlng2, latlng1)).to.be.closeTo(210.664, 0.005);
+    });
+  });
 });