mapping-component-package-jp 0.1.7 → 0.1.10
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.d.ts +9 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/js/mapEncapsulation/mapOverlayManager.d.ts +9 -0
- package/src/js/mapEncapsulation/mapOverlayManager.js +109 -0
package/dist/index.d.ts
CHANGED
|
@@ -203,6 +203,13 @@ declare class MapOverlayManager {
|
|
|
203
203
|
eventHandlers_set(eH: any): void;
|
|
204
204
|
eventHandlers_get(): any;
|
|
205
205
|
|
|
206
|
+
// Getters
|
|
207
|
+
center_get(): any;
|
|
208
|
+
zoom_get(): number;
|
|
209
|
+
fpolies_get(): any;
|
|
210
|
+
locPolygons_get(): any;
|
|
211
|
+
overlayMapTypes_get(): any;
|
|
212
|
+
|
|
206
213
|
// Shape Management
|
|
207
214
|
Shape_IsShapeHole(ShapeId: string | number): boolean;
|
|
208
215
|
Shape_PolygonCustomEdit_Add(isHole: boolean, config: any, isMobile: boolean, mapWidth: number, mapHeight: number, vmWidth: number, offsetX: number, offsetY: number): string;
|
|
@@ -215,6 +222,7 @@ declare class MapOverlayManager {
|
|
|
215
222
|
Shape_DeleteAll(isMobile?: boolean): void;
|
|
216
223
|
Shape_Convert(ShapeId: string | number): string;
|
|
217
224
|
SelectedShape_GetType(ShapeId: string | number, shapeTypes: any): string;
|
|
225
|
+
SelectedShape_GetByShapeId(ShapeId: string | number): any;
|
|
218
226
|
|
|
219
227
|
// Rendering Methods
|
|
220
228
|
RenderFields(locations: any[], properties: any, editMode?: boolean): void;
|
|
@@ -240,6 +248,7 @@ declare class MapOverlayManager {
|
|
|
240
248
|
CircleSegment_Edit(ShapeId: string | number, isMobile: boolean): void;
|
|
241
249
|
|
|
242
250
|
// Field Management
|
|
251
|
+
DrawField_DrawLocation(locationsJson: any[], locationId: any, shapeConfig: any): void;
|
|
243
252
|
TriggerField_ChangeEvent(): any;
|
|
244
253
|
DrawField_AttachEvents(eHandlers: any): void;
|
|
245
254
|
DrawField_DetachEvents(StrokeColor: string, SelectedShapeId: string): void;
|