Store active route location in dedicated fields (#16032)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2023-12-10 10:36:24 +01:00 committed by GitHub
parent a950f19e60
commit 92383abf57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,16 +49,16 @@ public class TeslaChannelSelectorProxy {
AR_LATITUDE("active_route_latitude", "destinationlocation", DecimalType.class, false) { AR_LATITUDE("active_route_latitude", "destinationlocation", DecimalType.class, false) {
@Override @Override
public State getState(String s, TeslaChannelSelectorProxy proxy, Map<String, String> properties) { public State getState(String s, TeslaChannelSelectorProxy proxy, Map<String, String> properties) {
proxy.latitude = s; proxy.arLatitude = s;
return new PointType(new StringType(proxy.latitude), new StringType(proxy.longitude), return new PointType(new StringType(proxy.arLatitude), new StringType(proxy.arLongitude),
new StringType(proxy.elevation)); new StringType(proxy.elevation));
} }
}, },
AR_LONGITUDE("active_route_longitude", "destinationlocation", DecimalType.class, false) { AR_LONGITUDE("active_route_longitude", "destinationlocation", DecimalType.class, false) {
@Override @Override
public State getState(String s, TeslaChannelSelectorProxy proxy, Map<String, String> properties) { public State getState(String s, TeslaChannelSelectorProxy proxy, Map<String, String> properties) {
proxy.longitude = s; proxy.arLongitude = s;
return new PointType(new StringType(proxy.latitude), new StringType(proxy.longitude), return new PointType(new StringType(proxy.arLatitude), new StringType(proxy.arLongitude),
new StringType(proxy.elevation)); new StringType(proxy.elevation));
} }
}, },
@ -1138,6 +1138,8 @@ public class TeslaChannelSelectorProxy {
public String elevation = "0"; public String elevation = "0";
public String nativeLatitude = "0"; public String nativeLatitude = "0";
public String nativeLongitude = "0"; public String nativeLongitude = "0";
public String arLatitude = "0";
public String arLongitude = "0";
public State getState(String s, TeslaChannelSelector selector, Map<String, String> properties) { public State getState(String s, TeslaChannelSelector selector, Map<String, String> properties) {
return selector.getState(s, this, properties); return selector.getState(s, this, properties);