@gis_victory/gismap 2.0.50 → 2.0.53
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/assets/data/mask.json +14325 -0
- package/dist/assets/icons/bg.png +0 -0
- package/dist/assets/icons/layer_default.png +0 -0
- package/dist/assets/icons/layer_group.png +0 -0
- package/dist/assets/icons/layer_query.png +0 -0
- package/dist/assets/icons//347/251/272/347/275/256/345/216/202/346/210/277.png +0 -0
- package/dist/assets/icons//351/227/262/347/275/256/345/234/260/345/235/227.png +0 -0
- package/dist/assets/template/data.json +2671 -0
- package/dist/assets/template/search_data.json +14 -0
- package/dist/gismap.css +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.es.js +2 -2
- package/dist/index.umd.js +1 -1
- package/dist/vite.svg +1 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -397,8 +397,8 @@ bearing: number;
|
|
|
397
397
|
}) => any) | undefined;
|
|
398
398
|
}>, {
|
|
399
399
|
center: [number, number];
|
|
400
|
-
zoom: number;
|
|
401
400
|
bearing: number;
|
|
401
|
+
zoom: number;
|
|
402
402
|
pitch: number;
|
|
403
403
|
accessToken: string;
|
|
404
404
|
adapter: MapAdapter;
|
|
@@ -6129,6 +6129,7 @@ export declare interface MeasureEvent {
|
|
|
6129
6129
|
|
|
6130
6130
|
declare class MeasureManager {
|
|
6131
6131
|
private map;
|
|
6132
|
+
private isMobile;
|
|
6132
6133
|
private options;
|
|
6133
6134
|
private sourceId;
|
|
6134
6135
|
private measureLayerId;
|
|
@@ -6152,7 +6153,7 @@ declare class MeasureManager {
|
|
|
6152
6153
|
private lastTouchCoords;
|
|
6153
6154
|
private doubleTapThreshold;
|
|
6154
6155
|
private tooltipElement;
|
|
6155
|
-
constructor(
|
|
6156
|
+
constructor(adapter: MapAdapter, options?: MeasureManagerOptions);
|
|
6156
6157
|
private initMeasureSource;
|
|
6157
6158
|
private setupMeasureLayers;
|
|
6158
6159
|
/**
|