# geocode-many **Repository Path**: mirrors_mapbox/geocode-many ## Basic Information - **Project Name**: geocode-many - **Description**: given an array of objects and a transform into a geocodable string, geocode them if possible - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-12-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README geocodemany --- Given an array of objects and a transform into a geocodable string, geocode them if possible. Works in both node and the browser. ### example ```js var data = [{ city: 'Chester', state: 'New Jersey' }, { city: 'Washington', state: 'DC' }]; function transform(obj) { return obj.city + ', ' + obj.state; } function progress() { console.log(arguments); } function done() { console.log(arguments); } var geocoder = geocodemany('ACCESSTOKEN'); geocoder(data, transform, progress, done); ```