Merge pull request #4 from openstreetmap-polska/fonts-url-fix

changed fonts url to https to avoid mixed content warning
pull/10/head
BNDR 2021-12-05 17:58:42 +01:00 zatwierdzone przez GitHub
commit 3513e91816
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -5,7 +5,7 @@ var map = new maplibregl.Map({
'hash': 'map',
'style': {
'version': 8,
"glyphs": "http://fonts.openmaptiles.org/{fontstack}/{range}.pbf",
"glyphs": "https://fonts.openmaptiles.org/{fontstack}/{range}.pbf",
'sources': {
'raster-tiles': {
'type': 'raster',
@ -75,4 +75,4 @@ map.on('load', () => {
'filter': ['has', 'point_count'],
});
});
});
});