From 749369690be9dc205f31ffa4e930120f1455028c Mon Sep 17 00:00:00 2001 From: Michael Kreil Date: Sun, 27 Oct 2024 10:50:59 +0100 Subject: [PATCH] v1.2.3 --- README.md | 12 ++++++------ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 583db96..0c7a3f1 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ fs.writeFileSync('tile.' + header.tile_format, tile); ### Class: `Container` The `VersaTiles` class is a wrapper around a `.versatiles` container file. It provides methods\ -to access tile data, metadata, and other properties within the container. \[src] +to access tile data, metadata, and other properties within the container. \[src] #### Constructor: `new Container(source, options)` -Constructs a new instance of the VersaTiles class. \[src] +Constructs a new instance of the VersaTiles class. \[src] **Parameters:** @@ -44,7 +44,7 @@ Constructs a new instance of the VersaTiles class. \[src] +Asynchronously retrieves the header information from the `.versatiles` container. \[src] **Returns:** Promise<[Header](#interface_header)> @@ -52,7 +52,7 @@ Asynchronously retrieves the header information from the `.versatiles` container Asynchronously retrieves the metadata associated with the `.versatiles` container.\ Metadata typically includes information about `vector_layers` for vector tiles. -If the container does not include metadata, this method returns `null`. \[src] +If the container does not include metadata, this method returns `null`. \[src] **Returns:** Promise\ @@ -61,7 +61,7 @@ If the container does not include metadata, this method returns `null`. \[src] +If the specified tile does not exist, the method returns `null`. \[src] **Parameters:** @@ -79,7 +79,7 @@ If the specified tile does not exist, the method returns `null`. \[src] +If the specified tile does not exist, the method returns `null`. \[src] **Parameters:** diff --git a/package-lock.json b/package-lock.json index cc5233a..7649905 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@versatiles/container", - "version": "1.2.2", + "version": "1.2.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@versatiles/container", - "version": "1.2.2", + "version": "1.2.3", "license": "Unlicense", "devDependencies": { "@types/jest": "^29.5.14", diff --git a/package.json b/package.json index 9c80e70..97b0414 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@versatiles/container", - "version": "1.2.2", + "version": "1.2.3", "description": "A client library for reading VersaTiles containers", "scripts": { "build": "rm -rf dist && tsc -p tsconfig.build.json",