becomap 1.5.63 → 1.5.65

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/lib/index.d.ts CHANGED
@@ -887,6 +887,20 @@ export interface BCMapViewOptions {
887
887
  * Default bearing can be defined in the implementation.
888
888
  */
889
889
  bearing?: number;
890
+ /**
891
+ * Whether to hide layers outside the defined map boundaries.
892
+ * If set to `true`, layers outside the map's visible area will
893
+ * be hidden. This can improve performance and focus on the
894
+ * relevant map content.
895
+ */
896
+ hideOutsideLayers?: boolean;
897
+ /**
898
+ * The background color of the map container.
899
+ * This property allows setting a custom background color for
900
+ * the map container, which is visible when no map tiles are
901
+ * rendered or when the map is loading.
902
+ */
903
+ background?: string;
890
904
  }
891
905
  /**
892
906
  * Interface representing the public API of the BCMapView class.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "becomap",
3
- "version": "1.5.63",
3
+ "version": "1.5.65",
4
4
  "description": "we lib to display becomap",
5
5
  "main": "lib/becomap.js",
6
6
  "module": "lib/becomap.js",