Display address in device location popup

`addr` is part of the response for reverse geolocation lookups. `address` is already used in `LDeviceLocationPopup` and needs to be passed in from the map.

Closes #31
This commit is contained in:
Sascha Hagedorn
2022-03-14 22:27:52 +00:00
committed by Linus Groh
parent 3ea1d02c65
commit f5c1c82010
+2
View File
@@ -53,6 +53,7 @@
:regions="l.inregions"
:wifi="{ ssid: l.SSID, bssid: l.BSSID }"
:options="{ className: 'leaflet-popup--for-pin' }"
:address="l.addr"
/>
</LMarker>
</template>
@@ -92,6 +93,7 @@
:speed="l.vel"
:regions="l.inregions"
:wifi="{ ssid: l.SSID, bssid: l.BSSID }"
:address="l.addr"
></LDeviceLocationPopup>
</LCircleMarker>
</template>