Docs(TileLayer): workaround leafdoc issue with @ symbol (#5669)

when used as a comment in docstring instead of as a directive start.
Simply replaced by "@" as a workaround for now.
This commit is contained in:
ghybs 2017-07-29 17:59:25 +04:00 committed by Per Liedman
parent 0a6c500e58
commit b090e88498

View File

@ -26,7 +26,7 @@ import * as DomUtil from '../../dom/DomUtil';
* 'http://{s}.somedomain.com/blabla/{z}/{x}/{y}{r}.png'
* ```
*
* `{s}` means one of the available subdomains (used sequentially to help with browser parallel requests per domain limitation; subdomain values are specified in options; `a`, `b` or `c` by default, can be omitted), `{z}` zoom level, `{x}` and `{y}` tile coordinates. `{r}` can be used to add @2x to the URL to load retina tiles.
* `{s}` means one of the available subdomains (used sequentially to help with browser parallel requests per domain limitation; subdomain values are specified in options; `a`, `b` or `c` by default, can be omitted), `{z}` zoom level, `{x}` and `{y}` tile coordinates. `{r}` can be used to add "@2x" to the URL to load retina tiles.
*
* You can use custom keys in the template, which will be [evaluated](#util-template) from TileLayer options, like this:
*