X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f6695c9079f4eeeecaa796c879868f797f97cd55..e44f856b53fcba5b44af37126579a034ef654676:/app/assets/javascripts/index/directions/mapquest.js
diff --git a/app/assets/javascripts/index/directions/mapquest.js b/app/assets/javascripts/index/directions/mapquest.js
index fcc47f103..739ce6539 100644
--- a/app/assets/javascripts/index/directions/mapquest.js
+++ b/app/assets/javascripts/index/directions/mapquest.js
@@ -1,6 +1,6 @@
// For docs, see:
-// http://developer.mapquest.com/web/products/open/directions-service
-// http://open.mapquestapi.com/directions/
+// https://developer.mapquest.com/web/products/open/directions-service
+// https://open.mapquestapi.com/directions/
// https://github.com/apmon/openstreetmap-website/blob/21edc353a4558006f0ce23f5ec3930be6a7d4c8b/app/controllers/routing_controller.rb#L153
function MapQuestEngine(id, routeType) {
@@ -28,7 +28,7 @@ function MapQuestEngine(id, routeType) {
return {
id: id,
- creditline: 'MapQuest ',
+ creditline: 'MapQuest ',
draggable: false,
getRoute: function (points, callback) {
@@ -36,7 +36,7 @@ function MapQuestEngine(id, routeType) {
var to = points[points.length - 1];
return $.ajax({
- url: document.location.protocol + OSM.MAPQUEST_DIRECTIONS_URL,
+ url: OSM.MAPQUEST_DIRECTIONS_URL,
data: {
key: OSM.MAPQUEST_KEY,
from: from.lat + "," + from.lng,