@edgepdf/viewer-js 0.0.2 → 0.0.3
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/index.js +119 -10
- package/dist/lib/marker-manager.d.ts +43 -0
- package/dist/lib/marker-manager.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10586,6 +10586,8 @@ var MarkerManager = class {
|
|
|
10586
10586
|
showEditButton: true,
|
|
10587
10587
|
showDeleteButton: true
|
|
10588
10588
|
};
|
|
10589
|
+
defaultIconType = "pin";
|
|
10590
|
+
iconBasePath = "/";
|
|
10589
10591
|
/**
|
|
10590
10592
|
* Creates a new MarkerManager instance
|
|
10591
10593
|
*
|
|
@@ -10672,7 +10674,8 @@ var MarkerManager = class {
|
|
|
10672
10674
|
annotation: options.annotation,
|
|
10673
10675
|
href: options.href,
|
|
10674
10676
|
target: options.target,
|
|
10675
|
-
showLabel: options.showLabel ?? true
|
|
10677
|
+
showLabel: options.showLabel ?? true,
|
|
10678
|
+
iconType: options.iconType || this.defaultIconType
|
|
10676
10679
|
};
|
|
10677
10680
|
this.validateMarker(marker);
|
|
10678
10681
|
const leafletMarker = this.createLeafletMarker(marker);
|
|
@@ -11054,6 +11057,75 @@ var MarkerManager = class {
|
|
|
11054
11057
|
this.eventListeners.clear();
|
|
11055
11058
|
}
|
|
11056
11059
|
}
|
|
11060
|
+
/**
|
|
11061
|
+
* Sets the default icon type for new markers
|
|
11062
|
+
*
|
|
11063
|
+
* @param iconType - Icon type to use as default
|
|
11064
|
+
*/
|
|
11065
|
+
setDefaultIconType(iconType) {
|
|
11066
|
+
this.defaultIconType = iconType;
|
|
11067
|
+
}
|
|
11068
|
+
/**
|
|
11069
|
+
* Gets the current default icon type
|
|
11070
|
+
*
|
|
11071
|
+
* @returns Current default icon type
|
|
11072
|
+
*/
|
|
11073
|
+
getDefaultIconType() {
|
|
11074
|
+
return this.defaultIconType;
|
|
11075
|
+
}
|
|
11076
|
+
/**
|
|
11077
|
+
* Sets the base path for marker icons
|
|
11078
|
+
*
|
|
11079
|
+
* @param basePath - Base path for icon files (default: '/')
|
|
11080
|
+
*/
|
|
11081
|
+
setIconBasePath(basePath) {
|
|
11082
|
+
this.iconBasePath = basePath.endsWith("/") ? basePath : `${basePath}/`;
|
|
11083
|
+
}
|
|
11084
|
+
/**
|
|
11085
|
+
* Updates the icon type for a specific marker
|
|
11086
|
+
*
|
|
11087
|
+
* @param id - Marker ID
|
|
11088
|
+
* @param iconType - New icon type
|
|
11089
|
+
* @returns True if marker was updated, false if not found
|
|
11090
|
+
*/
|
|
11091
|
+
updateMarkerIcon(id, iconType) {
|
|
11092
|
+
const marker = this.markers.get(id);
|
|
11093
|
+
const leafletMarker = this.leafletMarkers.get(id);
|
|
11094
|
+
if (!marker || !leafletMarker) {
|
|
11095
|
+
return false;
|
|
11096
|
+
}
|
|
11097
|
+
const isSelected = this.selectedIds.has(id);
|
|
11098
|
+
if (isSelected && (iconType === "pin-gray" || iconType === "pin-yellow" || iconType === "pin")) {
|
|
11099
|
+
if (iconType === "pin-gray" || iconType === "pin") {
|
|
11100
|
+
iconType = "pin-gray-selected";
|
|
11101
|
+
} else if (iconType === "pin-yellow") {
|
|
11102
|
+
iconType = "pin-yellow-selected";
|
|
11103
|
+
}
|
|
11104
|
+
}
|
|
11105
|
+
marker.iconType = iconType;
|
|
11106
|
+
const newIcon = this.createCustomIcon(iconType);
|
|
11107
|
+
leafletMarker.setIcon(newIcon);
|
|
11108
|
+
return true;
|
|
11109
|
+
}
|
|
11110
|
+
/**
|
|
11111
|
+
* Updates all markers to use a new icon type
|
|
11112
|
+
*
|
|
11113
|
+
* @param iconType - Icon type to apply to all markers
|
|
11114
|
+
*/
|
|
11115
|
+
updateAllMarkerIcons(iconType) {
|
|
11116
|
+
this.markers.forEach((marker, id) => {
|
|
11117
|
+
const isSelected = this.selectedIds.has(id);
|
|
11118
|
+
let finalIconType = iconType;
|
|
11119
|
+
if (isSelected) {
|
|
11120
|
+
if (iconType === "pin-gray" || iconType === "pin") {
|
|
11121
|
+
finalIconType = "pin-gray-selected";
|
|
11122
|
+
} else if (iconType === "pin-yellow") {
|
|
11123
|
+
finalIconType = "pin-yellow-selected";
|
|
11124
|
+
}
|
|
11125
|
+
}
|
|
11126
|
+
this.updateMarkerIcon(id, finalIconType);
|
|
11127
|
+
});
|
|
11128
|
+
}
|
|
11057
11129
|
/**
|
|
11058
11130
|
* Disposes of the marker manager and cleans up resources
|
|
11059
11131
|
*
|
|
@@ -11066,6 +11138,28 @@ var MarkerManager = class {
|
|
|
11066
11138
|
this.map.removeLayer(this.markerLayerGroup);
|
|
11067
11139
|
}
|
|
11068
11140
|
}
|
|
11141
|
+
/**
|
|
11142
|
+
* Creates a custom icon for a marker
|
|
11143
|
+
*
|
|
11144
|
+
* @param iconType - Icon type to use
|
|
11145
|
+
* @returns Leaflet icon instance
|
|
11146
|
+
*/
|
|
11147
|
+
createCustomIcon(iconType) {
|
|
11148
|
+
const iconUrl = `${this.iconBasePath}${iconType}.png`;
|
|
11149
|
+
return import_leaflet3.default.icon({
|
|
11150
|
+
iconUrl,
|
|
11151
|
+
iconSize: [30, 40],
|
|
11152
|
+
// Default marker size
|
|
11153
|
+
iconAnchor: [30, 10],
|
|
11154
|
+
// Point of the icon which will correspond to marker's location
|
|
11155
|
+
popupAnchor: [0, 0],
|
|
11156
|
+
// Point from which the popup should open relative to the iconAnchor
|
|
11157
|
+
shadowUrl: void 0,
|
|
11158
|
+
// No shadow
|
|
11159
|
+
shadowSize: void 0,
|
|
11160
|
+
shadowAnchor: void 0
|
|
11161
|
+
});
|
|
11162
|
+
}
|
|
11069
11163
|
/**
|
|
11070
11164
|
* Creates a Leaflet marker from marker data
|
|
11071
11165
|
*
|
|
@@ -11073,8 +11167,11 @@ var MarkerManager = class {
|
|
|
11073
11167
|
* @returns Leaflet marker instance
|
|
11074
11168
|
*/
|
|
11075
11169
|
createLeafletMarker(marker) {
|
|
11170
|
+
const iconType = marker.iconType || this.defaultIconType;
|
|
11171
|
+
const customIcon = this.createCustomIcon(iconType);
|
|
11076
11172
|
const markerOptions = {
|
|
11077
|
-
title: marker.title
|
|
11173
|
+
title: marker.title,
|
|
11174
|
+
icon: customIcon
|
|
11078
11175
|
};
|
|
11079
11176
|
if (this.interactionConfig.draggable) {
|
|
11080
11177
|
markerOptions.draggable = true;
|
|
@@ -11177,20 +11274,32 @@ var MarkerManager = class {
|
|
|
11177
11274
|
* @param selected - Whether marker is selected
|
|
11178
11275
|
*/
|
|
11179
11276
|
updateMarkerSelectionVisual(id, selected) {
|
|
11277
|
+
const marker = this.markers.get(id);
|
|
11180
11278
|
const leafletMarker = this.leafletMarkers.get(id);
|
|
11181
|
-
if (!leafletMarker) {
|
|
11279
|
+
if (!marker || !leafletMarker) {
|
|
11182
11280
|
return;
|
|
11183
11281
|
}
|
|
11184
|
-
|
|
11185
|
-
if (
|
|
11186
|
-
if (selected) {
|
|
11187
|
-
|
|
11188
|
-
|
|
11282
|
+
let newIconType;
|
|
11283
|
+
if (selected) {
|
|
11284
|
+
if (marker.iconType === "pin-gray" || marker.iconType === "pin-gray-selected") {
|
|
11285
|
+
newIconType = "pin-gray-selected";
|
|
11286
|
+
} else if (marker.iconType === "pin-yellow" || marker.iconType === "pin-yellow-selected") {
|
|
11287
|
+
newIconType = "pin-yellow-selected";
|
|
11288
|
+
} else {
|
|
11289
|
+
newIconType = "pin-gray-selected";
|
|
11290
|
+
}
|
|
11291
|
+
} else {
|
|
11292
|
+
if (marker.iconType === "pin-gray" || marker.iconType === "pin-gray-selected") {
|
|
11293
|
+
newIconType = "pin-gray";
|
|
11294
|
+
} else if (marker.iconType === "pin-yellow" || marker.iconType === "pin-yellow-selected") {
|
|
11295
|
+
newIconType = "pin-yellow";
|
|
11189
11296
|
} else {
|
|
11190
|
-
|
|
11191
|
-
iconElement.style.zIndex = "";
|
|
11297
|
+
newIconType = marker.iconType || this.defaultIconType;
|
|
11192
11298
|
}
|
|
11193
11299
|
}
|
|
11300
|
+
marker.iconType = newIconType;
|
|
11301
|
+
const newIcon = this.createCustomIcon(newIconType);
|
|
11302
|
+
leafletMarker.setIcon(newIcon);
|
|
11194
11303
|
}
|
|
11195
11304
|
/**
|
|
11196
11305
|
* Emits an event to all registered listeners
|
|
@@ -21,6 +21,8 @@ export interface CreateMarkerOptions {
|
|
|
21
21
|
showLabel?: boolean;
|
|
22
22
|
/** Custom marker ID (auto-generated if not provided) */
|
|
23
23
|
id?: string;
|
|
24
|
+
/** Icon type for the marker */
|
|
25
|
+
iconType?: 'pin' | 'pin-gray' | 'pin-yellow' | 'pin-gray-selected' | 'pin-yellow-selected';
|
|
24
26
|
}
|
|
25
27
|
/**
|
|
26
28
|
* MarkerManager - Manages markers on the Leaflet map
|
|
@@ -74,6 +76,8 @@ export declare class MarkerManager {
|
|
|
74
76
|
private eventListeners;
|
|
75
77
|
private selectedIds;
|
|
76
78
|
private interactionConfig;
|
|
79
|
+
private defaultIconType;
|
|
80
|
+
private iconBasePath;
|
|
77
81
|
/**
|
|
78
82
|
* Creates a new MarkerManager instance
|
|
79
83
|
*
|
|
@@ -296,12 +300,51 @@ export declare class MarkerManager {
|
|
|
296
300
|
* @param eventType - Optional event type to clear
|
|
297
301
|
*/
|
|
298
302
|
removeAllListeners(eventType?: MarkerEventType): void;
|
|
303
|
+
/**
|
|
304
|
+
* Sets the default icon type for new markers
|
|
305
|
+
*
|
|
306
|
+
* @param iconType - Icon type to use as default
|
|
307
|
+
*/
|
|
308
|
+
setDefaultIconType(iconType: 'pin' | 'pin-gray' | 'pin-yellow' | 'pin-gray-selected' | 'pin-yellow-selected'): void;
|
|
309
|
+
/**
|
|
310
|
+
* Gets the current default icon type
|
|
311
|
+
*
|
|
312
|
+
* @returns Current default icon type
|
|
313
|
+
*/
|
|
314
|
+
getDefaultIconType(): 'pin' | 'pin-gray' | 'pin-yellow' | 'pin-gray-selected' | 'pin-yellow-selected';
|
|
315
|
+
/**
|
|
316
|
+
* Sets the base path for marker icons
|
|
317
|
+
*
|
|
318
|
+
* @param basePath - Base path for icon files (default: '/')
|
|
319
|
+
*/
|
|
320
|
+
setIconBasePath(basePath: string): void;
|
|
321
|
+
/**
|
|
322
|
+
* Updates the icon type for a specific marker
|
|
323
|
+
*
|
|
324
|
+
* @param id - Marker ID
|
|
325
|
+
* @param iconType - New icon type
|
|
326
|
+
* @returns True if marker was updated, false if not found
|
|
327
|
+
*/
|
|
328
|
+
updateMarkerIcon(id: string, iconType: 'pin' | 'pin-gray' | 'pin-yellow' | 'pin-gray-selected' | 'pin-yellow-selected'): boolean;
|
|
329
|
+
/**
|
|
330
|
+
* Updates all markers to use a new icon type
|
|
331
|
+
*
|
|
332
|
+
* @param iconType - Icon type to apply to all markers
|
|
333
|
+
*/
|
|
334
|
+
updateAllMarkerIcons(iconType: 'pin' | 'pin-gray' | 'pin-yellow' | 'pin-gray-selected' | 'pin-yellow-selected'): void;
|
|
299
335
|
/**
|
|
300
336
|
* Disposes of the marker manager and cleans up resources
|
|
301
337
|
*
|
|
302
338
|
* This should be called when the marker manager is no longer needed.
|
|
303
339
|
*/
|
|
304
340
|
dispose(): void;
|
|
341
|
+
/**
|
|
342
|
+
* Creates a custom icon for a marker
|
|
343
|
+
*
|
|
344
|
+
* @param iconType - Icon type to use
|
|
345
|
+
* @returns Leaflet icon instance
|
|
346
|
+
*/
|
|
347
|
+
private createCustomIcon;
|
|
305
348
|
/**
|
|
306
349
|
* Creates a Leaflet marker from marker data
|
|
307
350
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"marker-manager.d.ts","sourceRoot":"","sources":["../../src/lib/marker-manager.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,SAAS,CAAC;AACxB,OAAO,KAAK,EACV,MAAM,EACN,UAAU,EACV,aAAa,EACb,WAAW,EACX,SAAS,EACT,WAAW,EACX,eAAe,EACf,uBAAuB,EACvB,oBAAoB,EACrB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAI1D;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,qCAAqC;IACrC,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,qCAAqC;IACrC,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,gCAAgC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oCAAoC;IACpC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,0BAA0B;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,6BAA6B;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,yBAAyB;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wDAAwD;IACxD,EAAE,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"marker-manager.d.ts","sourceRoot":"","sources":["../../src/lib/marker-manager.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED