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