How do I implement continuous checking (time based) of a property-change in a component using an event listener in Polymer 3?
These are my component's properties:
static get properties() {
return {
longitude: {
type: Number
},
latitude: {
type: Number
},
accuracy: {
type: Number
}
};
}