@abi-software/flatmapvuer 1.5.6-beta.2 → 1.5.6-beta.3
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/package.json +1 -1
- package/src/App.vue +2 -1
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -175,7 +175,8 @@ export default {
|
|
|
175
175
|
const results = this.$refs.multi
|
|
176
176
|
.getCurrentFlatmap()
|
|
177
177
|
.searchSuggestions(term)
|
|
178
|
-
results.__featureIds
|
|
178
|
+
const featureIds = results.__featureIds || results.featureIds;
|
|
179
|
+
featureIds.forEach((id) => {
|
|
179
180
|
const annotation = this.$refs.multi
|
|
180
181
|
.getCurrentFlatmap()
|
|
181
182
|
.mapImp.annotation(id)
|