@vidro/map-handler 1.1.194 → 1.1.195
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/README.md +17 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Map Handler
|
|
2
2
|
|
|
3
|
-
#### Version 1.1.
|
|
3
|
+
#### Version 1.1.197 - Sep 2023
|
|
4
4
|
|
|
5
5
|
Tool to achieve the easiest way of communication with the map iframe.
|
|
6
6
|
|
|
@@ -286,6 +286,22 @@ Zooms to given coordinates
|
|
|
286
286
|
zoomToCoordinates(419006.12985785044, 4576698.8136144625,18);
|
|
287
287
|
|
|
288
288
|
```
|
|
289
|
+
##### CenterMap(lat,long)
|
|
290
|
+
|
|
291
|
+
center map to given coordinates
|
|
292
|
+
|
|
293
|
+
> Params
|
|
294
|
+
|
|
295
|
+
- lat (x) `<integer>`
|
|
296
|
+
- long (y) `<integer>`
|
|
297
|
+
|
|
298
|
+
> E.G.
|
|
299
|
+
|
|
300
|
+
```
|
|
301
|
+
CenterMap(419006.12985785044, 4576698.8136144625,18);
|
|
302
|
+
|
|
303
|
+
```
|
|
304
|
+
|
|
289
305
|
|
|
290
306
|
##### AddGeom(string)
|
|
291
307
|
|
package/package.json
CHANGED