X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/23ffdadb565be5ccc4ae9fad9647bdf0fa9b8683..d24cba4345d1784780c6036837109380e37986ae:/app/assets/javascripts/routing_engines/mapquest.js diff --git a/app/assets/javascripts/routing_engines/mapquest.js b/app/assets/javascripts/routing_engines/mapquest.js index dc854ccdc..39e47706a 100644 --- a/app/assets/javascripts/routing_engines/mapquest.js +++ b/app/assets/javascripts/routing_engines/mapquest.js @@ -15,7 +15,7 @@ MapQuestEngine.prototype.createConfig = function() { var that = this; return { name: "javascripts.directions.engines.mapquest_"+this.vehicleName.toLowerCase(), - creditline: 'Directions courtesy of MapQuest ', + creditline: 'MapQuest ', draggable: false, _hints: {}, MQ_SPRITE_MAP: { @@ -45,7 +45,7 @@ MapQuestEngine.prototype.createConfig = function() { url+="&from="+from.join(','); url+="&to="+to.join(','); url+="&"+that.vehicleParam; - //url+="&locale=" + I18n.currentLocale(); //Doesn't actually work. MapQuest requires full locale e.g. "de_DE", but I18n only provides language, e.g. "de" + //url+="&locale=" + I18n.currentLocale(); //Doesn't actually work. MapQuest requires full locale e.g. "de_DE", but I18n may only provides language, e.g. "de" url+="&manMaps=false"; url+="&shapeFormat=raw&generalize=0&unit=k"; this.requestCORS(url);