update leaflet-routing

This commit is contained in:
Norbert Renner 2014-05-14 11:40:52 +02:00
parent 7936afdd66
commit f1cae03a80
10 changed files with 245 additions and 40 deletions

View file

@ -99,7 +99,8 @@ L.Routing.Draw = L.Handler.extend({
// Visible Marker
if (!this._marker) {
this._marker = new L.Marker(this._map.getCenter(), {
icon: this.options.icons.normal
icon: (this.options.icons.draw ? this.options.icons.draw : new L.Icon.Default())
,opacity: (this.options.icons.draw ? 1.0 : 0.0)
,zIndexOffset: this.options.zIndexOffset
,clickable: false
});
@ -224,7 +225,7 @@ L.Routing.Draw = L.Handler.extend({
*/
,_show: function() {
this._hidden = false;
this._marker.setOpacity(1.0);
this._marker.setOpacity(this.options.icons.draw ? 1.0 : 0.0);
this._trailer.setStyle({opacity: 0.2});
}