-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorporate "node-geocoder" #182
Conversation
>>
>> ###
>> ### The "request" library is not installed automatically anymore.
>> ### But is a dependency of "request-promise".
>> ### Please install it with:
>> ### npm install request --save
>> ###
>> at
>> dist/Leaflet.BlurredLocation.js:63099 Doing |
"os-tmpdir": "^1.0.0" | ||
} | ||
}, | ||
"path-is-abso |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, here this seems to be a new req. So is it saying just to add request
to our package.json
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jywarren, yep. I tried including the request-promise
in the dev deps too and wrapped up geocode.reverse
in the same (var wrapper = require('request-promise')
then wrap using wrapper
). But no luck there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
However, it is worth noting that all the tests pass when I employ an alternative for the geocode.reverse
method, be it the original ajax snippet, a native promise, or a custom one from npm libs.
Hmm, this is odd. is this a recent change in |
Hmm. I wonder if anyone from @publiclab/is-reviewers would be able to offer input here? Folks there are really good at JS issues and maybe would notice something. |
Will fix #81 once done, WIP. Started off by documentinggetPlacenameFromCoordinates
inGeocoding.js
.Fixes #81.
/cc @jywarren