Add properties to Chandler's location
This commit is contained in:
parent
0c6f056543
commit
572a8c6d3c
|
@ -13,14 +13,15 @@ const res = await fetch("https://whereis.chandlerswift.com/api/0/last");
|
||||||
const locs = await res.json();
|
const locs = await res.json();
|
||||||
const loc = locs[0];
|
const loc = locs[0];
|
||||||
|
|
||||||
let geometry = new Point(fromLonLat([loc.lon, loc.lat]));
|
let feature = new Feature({
|
||||||
|
geometry: new Point(fromLonLat([loc.lon, loc.lat])),
|
||||||
|
...loc
|
||||||
|
});
|
||||||
|
|
||||||
const vectorLayer = new VectorLayer({
|
const vectorLayer = new VectorLayer({
|
||||||
source: new VectorSource({
|
source: new VectorSource({
|
||||||
features: [
|
features: [
|
||||||
new Feature({
|
feature,
|
||||||
geometry: geometry,
|
|
||||||
})
|
|
||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
style: new Style({
|
style: new Style({
|
||||||
|
@ -35,7 +36,8 @@ setInterval(async function(){
|
||||||
const res = await fetch("https://whereis.chandlerswift.com/api/0/last");
|
const res = await fetch("https://whereis.chandlerswift.com/api/0/last");
|
||||||
const locs = await res.json();
|
const locs = await res.json();
|
||||||
const loc = locs[0];
|
const loc = locs[0];
|
||||||
geometry.setCoordinates(fromLonLat([loc.lon, loc.lat]));
|
feature.setProperties(loc); // TODO: this won't remove a property if it was in a previous response but not this one
|
||||||
|
feature.getGeometry().setCoordinates(fromLonLat([loc.lon, loc.lat]));
|
||||||
}, 10 * 1000);
|
}, 10 * 1000);
|
||||||
|
|
||||||
export default vectorLayer;
|
export default vectorLayer;
|
||||||
|
|
Loading…
Reference in a new issue