Compare commits
3 commits
87258aa524
...
48c0d525f7
| Author | SHA1 | Date | |
|---|---|---|---|
| 48c0d525f7 | |||
| 627a1b1306 | |||
| 2dd51c55c0 |
2 changed files with 81 additions and 80 deletions
|
|
@ -33,13 +33,13 @@ In LocalSettings.php:
|
|||
|
||||
```php
|
||||
wfLoadExtension( 'Kartographer' );
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de';
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de/styles';
|
||||
$wgKartographerStyles = [
|
||||
'osm-bright',
|
||||
'satellite-hybrid',
|
||||
];
|
||||
$wgKartographerDfltStyle = 'osm-bright';
|
||||
$wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
|
||||
$wgKartographerSrcsetScales = [ 1 ];
|
||||
```
|
||||
|
||||
### Schnelltest im Wiki
|
||||
|
|
|
|||
|
|
@ -429,18 +429,19 @@ wfLoadExtension( 'Kartographer' );
|
|||
# Retina Bildschirme schicken noch ein @2x in der URL mit dies kann der Deutsche Tile Server auch noch nicht.
|
||||
|
||||
# Eigener Martin Tile Server (ueber NPM/HTTPS erreichbar)
|
||||
# Beispiel: https://tiles.rd13server.de
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de';
|
||||
# tileserver-gl liefert Raster-PNG unter /styles/osm-intl/{z}/{x}/{y}.png
|
||||
# Kartographer baut URLs als {MapServer}/{Style}/{z}/{x}/{y}.png
|
||||
# -> https://tiles.rd13server.de/styles/osm-intl/{z}/{x}/{y}.png
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de/styles';
|
||||
|
||||
# Verfuegbare Styles aus dem Martin Server
|
||||
$wgKartographerStyles = [
|
||||
'osm-bright',
|
||||
'satellite-hybrid',
|
||||
'osm-intl',
|
||||
];
|
||||
|
||||
# Standardstil fuer <mapframe> / <maplink>
|
||||
$wgKartographerDfltStyle = 'osm-bright';
|
||||
$wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
|
||||
$wgKartographerDfltStyle = 'osm-intl';
|
||||
$wgKartographerSrcsetScales = [1];
|
||||
|
||||
|
||||
# Adding Musical notation with score Notation
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue