@milemaker/milemaker-js 1.0.4 → 1.0.5
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/dist/constants/common.constants.d.ts +1 -0
- package/dist/controls/types/controls.types.d.ts +2 -2
- package/dist/index.cjs +72 -72
- package/dist/index.js +3862 -3850
- package/dist/utils/constants.d.ts +11 -0
- package/dist/utils/helpers.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,3 +2,4 @@ import { LonLatTuple } from "../types";
|
|
|
2
2
|
export declare const MAP_INITIAL_CENTER: LonLatTuple;
|
|
3
3
|
export declare const MAP_DEFAULT_ZOOM_STEP = 4;
|
|
4
4
|
export declare const MAP_INITIAL_ZOOM = 4;
|
|
5
|
+
export declare const HERE_TERMS_URL = "https://legal.here.com/en-gb/terms/general-content-supplier-terms-and-notices";
|
|
@@ -58,9 +58,9 @@ type BaseControlCreatorOptions = {
|
|
|
58
58
|
export type AttributionControl = {
|
|
59
59
|
/**
|
|
60
60
|
* Add custom attribution string
|
|
61
|
-
* @param customAttribution - Custom attribution
|
|
61
|
+
* @param customAttribution - Custom attribution to add
|
|
62
62
|
*/
|
|
63
|
-
addAttribution(customAttribution: string
|
|
63
|
+
addAttribution(customAttribution: string): void;
|
|
64
64
|
/**
|
|
65
65
|
* Remove custom attribution by a string match
|
|
66
66
|
* @param customAttribution - Custom attribution to remove by string match
|