Commit e3073a2cf32868829c0b66b24226f074a9dcb033
- Diff rendering mode:
- inline
- side by side
prototypes.js
(4 / 2)
|   | |||
| 1766 | 1766 | * An array of via points in WGS-84. | |
| 1767 | 1767 | * @var Array[OpenLayers.LonLat] | |
| 1768 | 1768 | */ | |
| 1769 | via : [ ], | ||
| 1769 | via : null, | ||
| 1770 | 1770 | ||
| 1771 | 1771 | initialize : function() { | |
| 1772 | this.via = [ ]; | ||
| 1772 | 1773 | }, | |
| 1773 | 1774 | ||
| 1774 | 1775 | /** | |
| … | … | ||
| 1962 | 1962 | ||
| 1963 | 1963 | colour : "blue", | |
| 1964 | 1964 | ||
| 1965 | provider : new OpenLayers.cdauth.Routing.Cloudmade(), | ||
| 1965 | provider : OpenLayers.cdauth.Routing.Cloudmade, // is instantiated in the initialize() function | ||
| 1966 | 1966 | ||
| 1967 | 1967 | fromMarker : null, | |
| 1968 | 1968 | toMarker : null, | |
| … | … | ||
| 1981 | 1981 | initialize : function(name, options) { | |
| 1982 | 1982 | OpenLayers.Layer.cdauth.XML.prototype.initialize.apply(this, [ name, undefined, options ]); | |
| 1983 | 1983 | ||
| 1984 | this.provider = new this.provider(); | ||
| 1984 | 1985 | this.attribution = this.provider.attribution; | |
| 1985 | 1986 | ||
| 1986 | 1987 | this.viaMarkers = [ ]; |

