tutorials: Fixed broken relative links (#5099)

* Fixed broken realtive links

* Fixed links

* Convert relative link to ./

* Convert relative link to ./
This commit is contained in:
Lazarev Alexandr 2016-11-15 12:41:38 +03:00 committed by Iván Sánchez Ortega
parent feb716401a
commit 4a75faf2ef
2 changed files with 29 additions and 29 deletions

View File

@ -5,7 +5,7 @@ title: Extending Leaflet, New Layers
<br>
This tutorial assumes you've read the [theory of Leaflet class inheritance](examples/extending/extending-1-classes.html).
This tutorial assumes you've read the [theory of Leaflet class inheritance](./extending-1-classes.html).
In Leaflet, a "layer" is anything that moves around when the map is moved around. Before seeing how to create them from scratch, it's easier to explain how to do simple extensions.

View File

@ -5,7 +5,7 @@ title: Extending Leaflet, New Handlers and Controls
<br>
This tutorial assumes you've read the [theory of Leaflet class inheritance](examples/extending/extending-1-classes.html).
This tutorial assumes you've read the [theory of Leaflet class inheritance](./extending-1-classes.html).
In Leaflet, a "layer" is anything that moves with the map. In contraposition to that, a "control" is a HTML element that remains static relative to the map container, and a "handler" is a piece of invisible code that changes the map's behaviour.