Fix in IPGeocode (download, and fallback). Schema improvements
This commit is contained in:
parent
67a2dfbd42
commit
df05b33e82
6 changed files with 77 additions and 11 deletions
|
|
@ -121,7 +121,7 @@ Meteor.publish('activefiresmyloc', function activeInMyLoc(zoom, lat, lng, height
|
|||
if (lat && lng) {
|
||||
return activefires(zoom, lat, lng, height, width);
|
||||
}
|
||||
const location = localize();
|
||||
const geo = localize();
|
||||
// console.log(`${location.latitude}, ${location.longitude}`);
|
||||
return activefires(zoom, location.latitude, location.longitude, height, width);
|
||||
return activefires(zoom, geo.location.latitude, geo.location.longitude, height, width);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue