@htmlbricks/hb-map 0.60.61 → 0.61.0
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/manifest.json
CHANGED
|
@@ -6,6 +6,66 @@
|
|
|
6
6
|
"definitions": {
|
|
7
7
|
"Events": {
|
|
8
8
|
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"markerClick": {
|
|
11
|
+
"additionalProperties": false,
|
|
12
|
+
"properties": {
|
|
13
|
+
"coordinates": {
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"properties": {
|
|
16
|
+
"latitude": {
|
|
17
|
+
"type": "number"
|
|
18
|
+
},
|
|
19
|
+
"longitude": {
|
|
20
|
+
"type": "number"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"required": [
|
|
24
|
+
"latitude",
|
|
25
|
+
"longitude"
|
|
26
|
+
],
|
|
27
|
+
"type": "object"
|
|
28
|
+
},
|
|
29
|
+
"id": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": [
|
|
34
|
+
"coordinates",
|
|
35
|
+
"id"
|
|
36
|
+
],
|
|
37
|
+
"type": "object"
|
|
38
|
+
},
|
|
39
|
+
"pointClickCoordinates": {
|
|
40
|
+
"additionalProperties": false,
|
|
41
|
+
"properties": {
|
|
42
|
+
"coordinates": {
|
|
43
|
+
"additionalProperties": false,
|
|
44
|
+
"properties": {
|
|
45
|
+
"latitude": {
|
|
46
|
+
"type": "number"
|
|
47
|
+
},
|
|
48
|
+
"longitude": {
|
|
49
|
+
"type": "number"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"required": [
|
|
53
|
+
"latitude",
|
|
54
|
+
"longitude"
|
|
55
|
+
],
|
|
56
|
+
"type": "object"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"required": [
|
|
60
|
+
"coordinates"
|
|
61
|
+
],
|
|
62
|
+
"type": "object"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"required": [
|
|
66
|
+
"pointClickCoordinates",
|
|
67
|
+
"markerClick"
|
|
68
|
+
],
|
|
9
69
|
"type": "object"
|
|
10
70
|
}
|
|
11
71
|
}
|
|
@@ -372,5 +432,5 @@
|
|
|
372
432
|
"size": {},
|
|
373
433
|
"iifePath": "main.iife.js",
|
|
374
434
|
"repoName": "@htmlbricks/hb-map",
|
|
375
|
-
"version": "0.
|
|
435
|
+
"version": "0.61.0"
|
|
376
436
|
}
|
package/package.json
CHANGED
|
@@ -12,4 +12,7 @@ export type Component = {
|
|
|
12
12
|
options: { centerFromGeometries?: boolean };
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
export type Events = {
|
|
15
|
+
export type Events = {
|
|
16
|
+
pointClickCoordinates: { coordinates: { latitude: number; longitude: number } };
|
|
17
|
+
markerClick: { coordinates: { latitude: number; longitude: number }; id: string };
|
|
18
|
+
};
|
|
@@ -4,6 +4,66 @@
|
|
|
4
4
|
"definitions": {
|
|
5
5
|
"Events": {
|
|
6
6
|
"additionalProperties": false,
|
|
7
|
+
"properties": {
|
|
8
|
+
"markerClick": {
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"coordinates": {
|
|
12
|
+
"additionalProperties": false,
|
|
13
|
+
"properties": {
|
|
14
|
+
"latitude": {
|
|
15
|
+
"type": "number"
|
|
16
|
+
},
|
|
17
|
+
"longitude": {
|
|
18
|
+
"type": "number"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"required": [
|
|
22
|
+
"latitude",
|
|
23
|
+
"longitude"
|
|
24
|
+
],
|
|
25
|
+
"type": "object"
|
|
26
|
+
},
|
|
27
|
+
"id": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"required": [
|
|
32
|
+
"coordinates",
|
|
33
|
+
"id"
|
|
34
|
+
],
|
|
35
|
+
"type": "object"
|
|
36
|
+
},
|
|
37
|
+
"pointClickCoordinates": {
|
|
38
|
+
"additionalProperties": false,
|
|
39
|
+
"properties": {
|
|
40
|
+
"coordinates": {
|
|
41
|
+
"additionalProperties": false,
|
|
42
|
+
"properties": {
|
|
43
|
+
"latitude": {
|
|
44
|
+
"type": "number"
|
|
45
|
+
},
|
|
46
|
+
"longitude": {
|
|
47
|
+
"type": "number"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"required": [
|
|
51
|
+
"latitude",
|
|
52
|
+
"longitude"
|
|
53
|
+
],
|
|
54
|
+
"type": "object"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"required": [
|
|
58
|
+
"coordinates"
|
|
59
|
+
],
|
|
60
|
+
"type": "object"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"required": [
|
|
64
|
+
"pointClickCoordinates",
|
|
65
|
+
"markerClick"
|
|
66
|
+
],
|
|
7
67
|
"type": "object"
|
|
8
68
|
}
|
|
9
69
|
}
|