@opensystemslab/map 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/map.es.js +2 -2
- package/dist/map.umd.js +6 -6
- package/package.json +1 -1
- package/types/my-map.d.ts +1 -0
- package/types/os-layers.d.ts +2 -2
package/package.json
CHANGED
package/types/my-map.d.ts
CHANGED
package/types/os-layers.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Tile as TileLayer } from "ol/layer";
|
2
2
|
import VectorTileLayer from "ol/layer/VectorTile";
|
3
3
|
import { XYZ } from "ol/source";
|
4
|
-
export declare function makeRasterBaseMap(apiKey?: string): TileLayer<XYZ>;
|
5
|
-
export declare function makeOsVectorTileBaseMap(apiKey: string): VectorTileLayer;
|
4
|
+
export declare function makeRasterBaseMap(copyright: string, apiKey?: string): TileLayer<XYZ>;
|
5
|
+
export declare function makeOsVectorTileBaseMap(copyright: string, apiKey: string): VectorTileLayer;
|