Compare commits
No commits in common. "48c0d525f78f1e289b879764965253fcf73cfd7e" and "87258aa524028f4c659be3f0d2b0349e614ff760" have entirely different histories.
48c0d525f7
...
87258aa524
2 changed files with 80 additions and 81 deletions
|
|
@ -33,13 +33,13 @@ In LocalSettings.php:
|
|||
|
||||
```php
|
||||
wfLoadExtension( 'Kartographer' );
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de/styles';
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de';
|
||||
$wgKartographerStyles = [
|
||||
'osm-bright',
|
||||
'satellite-hybrid',
|
||||
];
|
||||
$wgKartographerDfltStyle = 'osm-bright';
|
||||
$wgKartographerSrcsetScales = [ 1 ];
|
||||
$wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
|
||||
```
|
||||
|
||||
### Schnelltest im Wiki
|
||||
|
|
|
|||
|
|
@ -429,19 +429,18 @@ 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)
|
||||
# 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';
|
||||
# Beispiel: https://tiles.rd13server.de
|
||||
$wgKartographerMapServer = 'https://tiles.rd13server.de';
|
||||
|
||||
# Verfuegbare Styles aus dem Martin Server
|
||||
$wgKartographerStyles = [
|
||||
'osm-intl',
|
||||
'osm-bright',
|
||||
'satellite-hybrid',
|
||||
];
|
||||
|
||||
# Standardstil fuer <mapframe> / <maplink>
|
||||
$wgKartographerDfltStyle = 'osm-intl';
|
||||
$wgKartographerSrcsetScales = [1];
|
||||
$wgKartographerDfltStyle = 'osm-bright';
|
||||
$wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
|
||||
|
||||
|
||||
# Adding Musical notation with score Notation
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue