Reverse Geocoding (Latitude/Longitude)

node v6.17.1
version: 1.0.0
endpointsharetweet
Node.js example showing how to utilize the temporalData endpoint for reverse geocoding.
var Breinify = require('breinify-node'); var breinify = new Breinify({ apiKey: '938D-3120-64DD-413F-BB55-6573-90CE-473A' }); // use a promise to return the resolved information var response = await new Promise(function(resolve) { breinify.temporalData(40.4406, -79.9959, resolve); }); response.location;
Loading…

no comments

    sign in to comment