Commit e3073a2cf32868829c0b66b24226f074a9dcb033

Removing via points on route recalculation
  
17661766 * An array of via points in WGS-84.
17671767 * @var Array[OpenLayers.LonLat]
17681768 */
1769 via : [ ],
1769 via : null,
17701770
17711771 initialize : function() {
1772 this.via = [ ];
17721773 },
17731774
17741775 /**
19621962
19631963 colour : "blue",
19641964
1965 provider : new OpenLayers.cdauth.Routing.Cloudmade(),
1965 provider : OpenLayers.cdauth.Routing.Cloudmade, // is instantiated in the initialize() function
19661966
19671967 fromMarker : null,
19681968 toMarker : null,
19811981 initialize : function(name, options) {
19821982 OpenLayers.Layer.cdauth.XML.prototype.initialize.apply(this, [ name, undefined, options ]);
19831983
1984 this.provider = new this.provider();
19841985 this.attribution = this.provider.attribution;
19851986
19861987 this.viaMarkers = [ ];