@woosmap/ui 4.113.2 → 4.113.4

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.113.2",
3
+ "version": "4.113.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -119,7 +119,7 @@ export default class W3WDemo extends Component {
119
119
  this.marker = [];
120
120
  }
121
121
  w3w.results.forEach((address) => {
122
- if (address.geometry.location) {
122
+ if (address.geometry && address.geometry.location) {
123
123
  const marker = new window.woosmap.map.Marker({
124
124
  icon: {
125
125
  url: address === selectedAddress ? markerIconAlt : markerIcon,