@opensystemslab/map 1.0.0-alpha.10 → 1.0.0-alpha.12
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 +5 -3
- package/dist/component-lib.es.js +1 -1
- package/dist/component-lib.umd.js +184 -146
- package/dist/{index-AOpK_3ZR.mjs → index-IocjROo3.mjs} +32852 -31085
- package/dist/{index.es-BucgMOE8.mjs → index.es-C_lWlU7r.mjs} +1134 -1116
- package/dist/index.html +3 -1
- package/dist/map.css +1 -1
- package/dist/purify.es-Cm3utOpm.mjs +560 -0
- package/package.json +27 -30
- package/types/components/address-autocomplete/main.test.d.ts +0 -5
- package/types/components/geocode-autocomplete/main.test.d.ts +0 -5
- package/types/components/my-map/drawing.d.ts +8 -2
- package/types/components/my-map/index.d.ts +7 -8
- package/types/components/my-map/layers.test.d.ts +0 -9
- package/types/components/my-map/main.test.d.ts +0 -5
- package/types/components/my-map/os-features.d.ts +8 -2
- package/types/components/my-map/snapping.d.ts +10 -3
- package/types/components/postcode-search/main.test.d.ts +0 -5
- package/types/test-utils.d.ts +1 -0
- package/dist/purify.es-DHbHSKL1.mjs +0 -528
package/dist/index.html
CHANGED
|
@@ -79,10 +79,11 @@
|
|
|
79
79
|
<address-autocomplete postcode="SE5 0HU" id="example-autocomplete" initialAddress="75, COBOURG ROAD, LONDON" />
|
|
80
80
|
-->
|
|
81
81
|
<address-autocomplete
|
|
82
|
-
postcode="
|
|
82
|
+
postcode="NW5 2JT"
|
|
83
83
|
id="example-autocomplete"
|
|
84
84
|
arrowStyle="light"
|
|
85
85
|
labelStyle="static"
|
|
86
|
+
osProxyEndpoint="https://api.editor.planx.dev/proxy/ordnance-survey"
|
|
86
87
|
/>
|
|
87
88
|
</div>
|
|
88
89
|
<div style="margin-bottom: 1em; background-color: white">
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
id="example-geocode-autocomplete"
|
|
91
92
|
arrowStyle="light"
|
|
92
93
|
labelStyle="static"
|
|
94
|
+
osProxyEndpoint="https://api.editor.planx.dev/proxy/ordnance-survey"
|
|
93
95
|
/>
|
|
94
96
|
</div>
|
|
95
97
|
</div>
|