]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/query.js
Allow credentials to be sent with overpass calls
[rails.git] / app / assets / javascripts / index / query.js
index 4b58e6f935b4d513974e0d522de118de707cdb29..d1668f247351fd5d1fa5d77496eb56119d55c122 100644 (file)
@@ -3,6 +3,7 @@
 
 OSM.Query = function (map) {
   var url = OSM.OVERPASS_URL,
+      credentials = OSM.OVERPASS_CREDENTIALS,
       queryButton = $(".control-query .control-button"),
       uninterestingTags = ["source", "source_ref", "source:ref", "history", "attribution", "created_by", "tiger:county", "tiger:tlid", "tiger:upload_uuid", "KSJ2:curve_id", "KSJ2:lat", "KSJ2:lon", "KSJ2:coordinate", "KSJ2:filename", "note:ja"],
       marker;
@@ -181,6 +182,9 @@ OSM.Query = function (map) {
       data: {
         data: "[timeout:10][out:json];" + query
       },
+      xhrFields: {
+        withCredentials: credentials
+      },
       success: function (results) {
         var elements;