@abi-software/flatmapvuer 0.4.6-fixes-1 → 0.4.6-fixes-2
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/dist/flatmapvuer.common.js +30 -29
- package/dist/flatmapvuer.common.js.map +1 -1
- package/dist/flatmapvuer.css +1 -1
- package/dist/flatmapvuer.umd.js +30 -29
- package/dist/flatmapvuer.umd.js.map +1 -1
- package/dist/flatmapvuer.umd.min.js +2 -2
- package/dist/flatmapvuer.umd.min.js.map +1 -1
- package/package-lock.json +1 -1
- package/package.json +1 -1
- package/src/components/FlatmapVuer.vue +2 -1
package/package-lock.json
CHANGED
package/package.json
CHANGED
|
@@ -844,9 +844,10 @@ export default {
|
|
|
844
844
|
if (displayLabel &&
|
|
845
845
|
searchResults.results[0].featureId &&
|
|
846
846
|
searchResults.results[0].text) {
|
|
847
|
+
const annotation = this.mapImp.annotation(searchResults.results[0].featureId);
|
|
847
848
|
this.mapImp.showPopup(
|
|
848
849
|
searchResults.results[0].featureId,
|
|
849
|
-
|
|
850
|
+
annotation.label,
|
|
850
851
|
{ className: "custom-popup", positionAtLastClick: false, preserveSelection: true }
|
|
851
852
|
)
|
|
852
853
|
}
|