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
|
```php
|
||||||
wfLoadExtension( 'Kartographer' );
|
wfLoadExtension( 'Kartographer' );
|
||||||
$wgKartographerMapServer = 'https://tiles.rd13server.de';
|
$wgKartographerMapServer = 'https://tiles.rd13server.de/styles';
|
||||||
$wgKartographerStyles = [
|
$wgKartographerStyles = [
|
||||||
'osm-bright',
|
'osm-bright',
|
||||||
'satellite-hybrid',
|
'satellite-hybrid',
|
||||||
];
|
];
|
||||||
$wgKartographerDfltStyle = 'osm-bright';
|
$wgKartographerDfltStyle = 'osm-bright';
|
||||||
$wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
|
$wgKartographerSrcsetScales = [ 1 ];
|
||||||
```
|
```
|
||||||
|
|
||||||
### Schnelltest im Wiki
|
### 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.
|
# 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)
|
# Eigener Martin Tile Server (ueber NPM/HTTPS erreichbar)
|
||||||
# Beispiel: https://tiles.rd13server.de
|
# tileserver-gl liefert Raster-PNG unter /styles/osm-intl/{z}/{x}/{y}.png
|
||||||
$wgKartographerMapServer = 'https://tiles.rd13server.de';
|
# 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
|
# Verfuegbare Styles aus dem Martin Server
|
||||||
$wgKartographerStyles = [
|
$wgKartographerStyles = [
|
||||||
'osm-bright',
|
'osm-intl',
|
||||||
'satellite-hybrid',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Standardstil fuer <mapframe> / <maplink>
|
# Standardstil fuer <mapframe> / <maplink>
|
||||||
$wgKartographerDfltStyle = 'osm-bright';
|
$wgKartographerDfltStyle = 'osm-intl';
|
||||||
$wgKartographerSrcsetScales = [ 1, 1.5, 2 ];
|
$wgKartographerSrcsetScales = [1];
|
||||||
|
|
||||||
|
|
||||||
# Adding Musical notation with score Notation
|
# Adding Musical notation with score Notation
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue