experimentally remove retina support
This commit is contained in:
parent
5fdd586820
commit
d73e7271dc
@ -14,6 +14,6 @@ export function BuildingBaseLayerAllZoom({ theme }: {theme: MapTheme}) {
|
|||||||
url={getTileLayerUrl(tileset)}
|
url={getTileLayerUrl(tileset)}
|
||||||
minZoom={1}
|
minZoom={1}
|
||||||
maxZoom={109}
|
maxZoom={109}
|
||||||
detectRetina={true}
|
detectRetina={false}
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,6 @@ export function BuildingBaseLayer({ theme }: {theme: MapTheme}) {
|
|||||||
url={getTileLayerUrl(tileset)}
|
url={getTileLayerUrl(tileset)}
|
||||||
minZoom={14}
|
minZoom={14}
|
||||||
maxZoom={19}
|
maxZoom={19}
|
||||||
detectRetina={true}
|
detectRetina={false}
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,6 @@ export function BuildingDataLayer({tileset, revisionId} : { tileset: BuildingMap
|
|||||||
url={getTileLayerUrl(tileset, {rev: revisionId})}
|
url={getTileLayerUrl(tileset, {rev: revisionId})}
|
||||||
minZoom={9}
|
minZoom={9}
|
||||||
maxZoom={19}
|
maxZoom={19}
|
||||||
detectRetina={true}
|
detectRetina={false}
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
@ -9,6 +9,6 @@ export function BuildingNumbersLayer({revisionId}: {revisionId: string}) {
|
|||||||
url={getTileLayerUrl('number_labels', {rev: revisionId})}
|
url={getTileLayerUrl('number_labels', {rev: revisionId})}
|
||||||
minZoom={17}
|
minZoom={17}
|
||||||
maxZoom={19}
|
maxZoom={19}
|
||||||
detectRetina={true}
|
detectRetina={false}
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ export function CityBaseMapLayer({ theme }: { theme: MapTheme }) {
|
|||||||
attribution={attribution}
|
attribution={attribution}
|
||||||
maxNativeZoom={18}
|
maxNativeZoom={18}
|
||||||
maxZoom={19}
|
maxZoom={19}
|
||||||
detectRetina={true}
|
detectRetina={false}
|
||||||
className={theme_class}
|
className={theme_class}
|
||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user