maplibre-gl 3.6.1 → 3.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -36
- package/dist/maplibre-gl-csp.js +1 -1
- package/dist/maplibre-gl-csp.js.map +1 -1
- package/dist/maplibre-gl-dev.js +39 -21
- package/dist/maplibre-gl-dev.js.map +1 -1
- package/dist/maplibre-gl.d.ts +2 -1
- package/dist/maplibre-gl.js +4 -4
- package/dist/maplibre-gl.js.map +1 -1
- package/package.json +19 -19
- package/src/render/terrain.test.ts +56 -1
- package/src/render/terrain.ts +17 -2
- package/src/render/update_pattern_positions_in_program.test.ts +74 -0
- package/src/render/update_pattern_positions_in_program.ts +4 -0
- package/src/ui/map.test.ts +1 -1
- package/src/ui/map.ts +1 -1
- package/src/util/test/mock_fetch.ts +1 -1
package/dist/maplibre-gl.d.ts
CHANGED
|
@@ -3814,6 +3814,7 @@ export declare class Terrain {
|
|
|
3814
3814
|
mercatorX: number;
|
|
3815
3815
|
mercatorY: number;
|
|
3816
3816
|
};
|
|
3817
|
+
_allowMercatorOverflow(p: Point, mercatorX: number): number;
|
|
3817
3818
|
}
|
|
3818
3819
|
export declare class Transform {
|
|
3819
3820
|
tileSize: number;
|
|
@@ -8263,7 +8264,7 @@ export type MapOptions = {
|
|
|
8263
8264
|
*/
|
|
8264
8265
|
attributionControl?: boolean;
|
|
8265
8266
|
/**
|
|
8266
|
-
*
|
|
8267
|
+
* Attribution text to show in an {@link AttributionControl}. Only applicable if `options.attributionControl` is `true`.
|
|
8267
8268
|
*/
|
|
8268
8269
|
customAttribution?: string | Array<string>;
|
|
8269
8270
|
/**
|