├── static └── .gitkeep ├── .eslintignore ├── config ├── prod.env.js └── index.js ├── .editorconfig ├── .gitignore ├── src ├── App.vue ├── router │ └── index.js ├── main.js ├── components │ ├── StoreList.vue │ └── GoogleMap.vue └── data │ └── serviceCenters.js ├── .babelrc ├── .postcssrc.js ├── index.html ├── .eslintrc.js ├── README.md └── package.json /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /config/ 3 | /dist/ 4 | /*.js 5 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | config/dev.env.js 4 | /dist/ 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Editor directories and files 10 | .idea 11 | .vscode 12 | *.suo 13 | *.ntvs* 14 | *.njsproj 15 | *.sln 16 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 18 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-vue-jsx", "transform-runtime"] 12 | } 13 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | "postcss-import": {}, 6 | "postcss-url": {}, 7 | // to edit target browsers: use "browserslist" field in package.json 8 | "autoprefixer": {} 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Router from 'vue-router' 3 | import GoogleMap from '@/components/GoogleMap' 4 | 5 | Vue.use(Router) 6 | 7 | export default new Router({ 8 | routes: [ 9 | { 10 | path: '/', 11 | name: 'GoogleMap', 12 | component: GoogleMap 13 | } 14 | ] 15 | }) 16 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import router from './router' 4 | import * as VueGoogleMaps from 'vue2-google-maps' 5 | 6 | Vue.config.productionTip = false 7 | 8 | Vue.use(VueGoogleMaps, { 9 | load: { 10 | key: process.env.API_KEY, 11 | libraries: 'places,geometry' 12 | } 13 | }) 14 | 15 | /* eslint-disable no-new */ 16 | new Vue({ 17 | el: '#app', 18 | router, 19 | components: { App }, 20 | template: '' 21 | }) 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | vue-store-locator 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | // https://eslint.org/docs/user-guide/configuring 2 | 3 | module.exports = { 4 | root: true, 5 | parserOptions: { 6 | parser: 'babel-eslint' 7 | }, 8 | env: { 9 | browser: true, 10 | }, 11 | extends: [ 12 | // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention 13 | // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules. 14 | 'plugin:vue/essential', 15 | // https://github.com/standard/standard/blob/master/docs/RULES-en.md 16 | 'standard' 17 | ], 18 | // required to lint *.vue files 19 | plugins: [ 20 | 'vue' 21 | ], 22 | // add your custom rules here 23 | rules: { 24 | // allow async-await 25 | 'generator-star-spacing': 'off', 26 | // allow debugger during development 27 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/components/StoreList.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 29 | 30 | 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-store-locator 2 | 3 | ![store-locator-demo](https://user-images.githubusercontent.com/20526900/42333494-df0910b8-8048-11e8-898f-2ba9a4d08d03.gif) 4 | 5 | ## Description 6 | 7 | This repo is an example of how to build a store locator in Vue. It utilizes [vue-google-maps](https://github.com/xkjyeah/vue-google-maps) and the [Google Maps API](https://developers.google.com/maps/documentation/javascript/reference/3/). Before building this I searched for a good example and was unsuccessful in finding one. So I decided to build one and share the code for others in the same situation as I was. All code is written on the client-side, so no need for a backend to process radius etc. I've brought in static data for the sake of this repo, but in production you most likely will be making an API call to a endpoint. 8 | 9 | ## Features 10 | 11 | * Display locations on a map 12 | * Display store information in sidebar 13 | * Search for locations inside a user supplied radius 14 | * Store list and map share same data, so the store list will update when the markers on the map update 15 | * Get directions from current location 16 | * Display distance from location in miles and sort 17 | 18 | 19 | ## Running 20 | The API key is hidden for obvious reasons. You will need to create ```config/dev.env.js``` and put your own API key in. 21 | ``` 22 | 'use strict' 23 | const merge = require('webpack-merge') 24 | const prodEnv = require('./prod.env') 25 | 26 | module.exports = merge(prodEnv, { 27 | NODE_ENV: '"development"', 28 | API_KEY: '' 29 | }) 30 | 31 | ``` 32 | 33 | ``` bash 34 | # install dependencies 35 | npm install 36 | 37 | # serve with hot reload at localhost:8080 38 | npm run dev 39 | ``` 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-store-locator", 3 | "version": "1.0.0", 4 | "description": "Example custom google maps store locator built in Vue", 5 | "author": "beardedpayton ", 6 | "private": true, 7 | "scripts": { 8 | "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", 9 | "start": "npm run dev", 10 | "lint": "eslint --ext .js,.vue src", 11 | "build": "node build/build.js" 12 | }, 13 | "dependencies": { 14 | "vue": "^2.5.2", 15 | "vue-router": "^3.0.1", 16 | "vue2-google-maps": "^0.9.7" 17 | }, 18 | "devDependencies": { 19 | "autoprefixer": "^7.1.2", 20 | "babel-core": "^6.22.1", 21 | "babel-eslint": "^8.2.1", 22 | "babel-helper-vue-jsx-merge-props": "^2.0.3", 23 | "babel-loader": "^7.1.1", 24 | "babel-plugin-syntax-jsx": "^6.18.0", 25 | "babel-plugin-transform-runtime": "^6.22.0", 26 | "babel-plugin-transform-vue-jsx": "^3.5.0", 27 | "babel-preset-env": "^1.3.2", 28 | "babel-preset-stage-2": "^6.22.0", 29 | "chalk": "^2.0.1", 30 | "copy-webpack-plugin": "^4.0.1", 31 | "css-loader": "^0.28.0", 32 | "eslint": "^4.15.0", 33 | "eslint-config-standard": "^10.2.1", 34 | "eslint-friendly-formatter": "^3.0.0", 35 | "eslint-loader": "^1.7.1", 36 | "eslint-plugin-import": "^2.7.0", 37 | "eslint-plugin-node": "^5.2.0", 38 | "eslint-plugin-promise": "^3.4.0", 39 | "eslint-plugin-standard": "^3.0.1", 40 | "eslint-plugin-vue": "^4.0.0", 41 | "extract-text-webpack-plugin": "^3.0.0", 42 | "file-loader": "^1.1.4", 43 | "friendly-errors-webpack-plugin": "^1.6.1", 44 | "html-webpack-plugin": "^2.30.1", 45 | "node-notifier": "^5.1.2", 46 | "optimize-css-assets-webpack-plugin": "^3.2.0", 47 | "ora": "^1.2.0", 48 | "portfinder": "^1.0.13", 49 | "postcss-import": "^11.0.0", 50 | "postcss-loader": "^2.0.8", 51 | "postcss-url": "^7.2.1", 52 | "rimraf": "^2.6.0", 53 | "semver": "^5.3.0", 54 | "shelljs": "^0.7.6", 55 | "uglifyjs-webpack-plugin": "^1.1.1", 56 | "url-loader": "^0.5.8", 57 | "vue-loader": "^13.3.0", 58 | "vue-style-loader": "^3.0.1", 59 | "vue-template-compiler": "^2.5.2", 60 | "webpack": "^3.6.0", 61 | "webpack-bundle-analyzer": "^2.9.0", 62 | "webpack-dev-server": "^2.9.1", 63 | "webpack-merge": "^4.1.0" 64 | }, 65 | "engines": { 66 | "node": ">= 6.0.0", 67 | "npm": ">= 3.0.0" 68 | }, 69 | "browserslist": [ 70 | "> 1%", 71 | "last 2 versions", 72 | "not ie <= 8" 73 | ] 74 | } 75 | -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | // Template version: 1.3.1 3 | // see http://vuejs-templates.github.io/webpack for documentation. 4 | 5 | const path = require('path') 6 | 7 | module.exports = { 8 | dev: { 9 | 10 | // Paths 11 | assetsSubDirectory: 'static', 12 | assetsPublicPath: '/', 13 | proxyTable: {}, 14 | 15 | // Various Dev Server settings 16 | host: 'localhost', // can be overwritten by process.env.HOST 17 | port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined 18 | autoOpenBrowser: false, 19 | errorOverlay: true, 20 | notifyOnErrors: true, 21 | poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions- 22 | 23 | // Use Eslint Loader? 24 | // If true, your code will be linted during bundling and 25 | // linting errors and warnings will be shown in the console. 26 | useEslint: true, 27 | // If true, eslint errors and warnings will also be shown in the error overlay 28 | // in the browser. 29 | showEslintErrorsInOverlay: false, 30 | 31 | /** 32 | * Source Maps 33 | */ 34 | 35 | // https://webpack.js.org/configuration/devtool/#development 36 | devtool: 'cheap-module-eval-source-map', 37 | 38 | // If you have problems debugging vue-files in devtools, 39 | // set this to false - it *may* help 40 | // https://vue-loader.vuejs.org/en/options.html#cachebusting 41 | cacheBusting: true, 42 | 43 | cssSourceMap: true 44 | }, 45 | 46 | build: { 47 | // Template for index.html 48 | index: path.resolve(__dirname, '../dist/index.html'), 49 | 50 | // Paths 51 | assetsRoot: path.resolve(__dirname, '../dist'), 52 | assetsSubDirectory: 'static', 53 | assetsPublicPath: '/', 54 | 55 | /** 56 | * Source Maps 57 | */ 58 | 59 | productionSourceMap: true, 60 | // https://webpack.js.org/configuration/devtool/#production 61 | devtool: '#source-map', 62 | 63 | // Gzip off by default as many popular static hosts such as 64 | // Surge or Netlify already gzip all static assets for you. 65 | // Before setting to `true`, make sure to: 66 | // npm install --save-dev compression-webpack-plugin 67 | productionGzip: false, 68 | productionGzipExtensions: ['js', 'css'], 69 | 70 | // Run the build command with an extra argument to 71 | // View the bundle analyzer report after build finishes: 72 | // `npm run build --report` 73 | // Set to `true` or `false` to always turn it on or off 74 | bundleAnalyzerReport: process.env.npm_config_report 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /src/components/GoogleMap.vue: -------------------------------------------------------------------------------- 1 | 56 | 57 | 163 | 164 | 194 | 195 | -------------------------------------------------------------------------------- /src/data/serviceCenters.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | export default [ 3 | { 4 | "name": "A & K Repair Inc.", 5 | "address": "609 West 13th Street", 6 | "city": "Glencoe", 7 | "state": "MN", 8 | "zip_code": "55336", 9 | "country": "US", 10 | "lat": "44.7720055", 11 | "lng": "-94.1676877", 12 | "phone_number": "320-864-6077", 13 | "fax_number": "320-864-6077" 14 | }, 15 | { 16 | "name": "Acme Tools", 17 | "address": "2025 30th St NW", 18 | "city": "Memidji", 19 | "state": "MN", 20 | "zip_code": "56601", 21 | "country": "US", 22 | "lat": "47.4977707", 23 | "lng": "-94.9066504", 24 | "phone_number": "218-444-8665", 25 | "fax_number": "(218) 751-5275" 26 | }, 27 | { 28 | "name": "Alpena Electric Motor Service", 29 | "address": "1581 M-32 W", 30 | "city": "Alpena", 31 | "state": "MI", 32 | "zip_code": "49707", 33 | "country": "US", 34 | "lat": "45.0614619", 35 | "lng": "-83.4828975", 36 | "phone_number": "989-354-8780", 37 | "fax_number": "(989) 356-0384" 38 | }, 39 | { 40 | "name": "B & F Electric Motor", 41 | "address": "26 North Valley Street", 42 | "city": "New Ulm", 43 | "state": "MN", 44 | "zip_code": "56073", 45 | "country": "US", 46 | "lat": "44.3157487", 47 | "lng": "-94.4552958", 48 | "phone_number": "507-354-9540", 49 | "fax_number": null 50 | }, 51 | { 52 | "name": "BJ&S Enterprises ", 53 | "address": "2803 Cnty Hwy OO", 54 | "city": "Chippewa Falls", 55 | "state": "WI", 56 | "zip_code": "54729", 57 | "country": "US", 58 | "lat": "44.883198", 59 | "lng": "-91.4314629", 60 | "phone_number": "715-726-9570", 61 | "fax_number": "715-726-8966" 62 | }, 63 | { 64 | "name": "Blink Electric Motors, Inc", 65 | "address": "116 North 1st Ave Rear", 66 | "city": "Marshalltown", 67 | "state": "IA", 68 | "zip_code": "50158", 69 | "country": "US", 70 | "lat": "42.0494674", 71 | "lng": "-92.9080375", 72 | "phone_number": "641-752-3036", 73 | "fax_number": "(641) 752-7475" 74 | }, 75 | { 76 | "name": "Circle Saw Builders Supply", 77 | "address": "2510 Ella Blvd", 78 | "city": "Houston", 79 | "state": "TX", 80 | "zip_code": "77008", 81 | "country": "US", 82 | "lat": "29.809313", 83 | "lng": "-95.428682", 84 | "phone_number": "713-864-8444", 85 | "fax_number": "713-864-601" 86 | }, 87 | { 88 | "name": "Corpus Christi Power Tool ", 89 | "address": "3701 Agnes St", 90 | "city": "Corpus Christi", 91 | "state": "TX", 92 | "zip_code": "78405", 93 | "country": "US", 94 | "lat": "27.7862053", 95 | "lng": "-97.4322293", 96 | "phone_number": "361-883-1117", 97 | "fax_number": "(361) 883-7365" 98 | }, 99 | { 100 | "name": "Dave's Tool Service & Supply, LLC", 101 | "address": "1307 State Rd 70E", 102 | "city": "Calera", 103 | "state": "OK", 104 | "zip_code": "74730", 105 | "country": "US", 106 | "lat": "33.9250864", 107 | "lng": "-96.3730485", 108 | "phone_number": "580-434-8188", 109 | "fax_number": "580-434-4455" 110 | }, 111 | { 112 | "name": "Deko Factory Service, Inc.", 113 | "address": "3048 Bloomington Ave", 114 | "city": "Minneapolis", 115 | "state": "MN", 116 | "zip_code": "55407", 117 | "country": "US", 118 | "lat": "44.946915", 119 | "lng": "-93.252895", 120 | "phone_number": "(612)721-6651", 121 | "fax_number": "(612)721-3077" 122 | }, 123 | { 124 | "name": "Denny's Small Engines", 125 | "address": "1235 12 Ave NW", 126 | "city": "Owatonna", 127 | "state": "MN", 128 | "zip_code": "55060", 129 | "country": "US", 130 | "lat": "44.098413", 131 | "lng": "-93.2415181", 132 | "phone_number": "507-455-1183", 133 | "fax_number": "507-455-1183" 134 | }, 135 | { 136 | "name": "Electric Motor Center, Inc.", 137 | "address": "521 Minnie St", 138 | "city": "Paynesville", 139 | "state": "MN", 140 | "zip_code": "56362", 141 | "country": "US", 142 | "lat": "45.3836701", 143 | "lng": "-94.7054146", 144 | "phone_number": "320-243-3695", 145 | "fax_number": "320-243-1754" 146 | }, 147 | { 148 | "name": "Independent Machine Service & Repair, LLC ", 149 | "address": "S51 W23861 Turners Pike W", 150 | "city": "Waukesha", 151 | "state": "WI", 152 | "zip_code": "53189-7936", 153 | "country": "US", 154 | "lat": "42.9529709", 155 | "lng": "-88.2246636", 156 | "phone_number": "262-313-7700", 157 | "fax_number": "262-548-9848" 158 | }, 159 | { 160 | "name": "Industrial Motors Inc.", 161 | "address": "1511 Mt. Pleasant St", 162 | "city": "Burlington", 163 | "state": "IA", 164 | "zip_code": "52601", 165 | "country": "US", 166 | "lat": "40.818919", 167 | "lng": "-91.11949", 168 | "phone_number": "319-752-4917", 169 | "fax_number": "319-752-0796" 170 | }, 171 | { 172 | "name": "James Machinery", 173 | "address": "223 N Mac Arthur", 174 | "city": "Springfield", 175 | "state": "IL", 176 | "zip_code": "62702", 177 | "country": "US", 178 | "lat": "39.8039556", 179 | "lng": "-89.668263", 180 | "phone_number": "800-522-9115", 181 | "fax_number": "(217) 698-9179" 182 | }, 183 | { 184 | "name": "Joe's Electrical Power Tools", 185 | "address": "808 E Carlton St", 186 | "city": "Sulphur", 187 | "state": "LA", 188 | "zip_code": "70663", 189 | "country": "US", 190 | "lat": "30.246316", 191 | "lng": "-93.369929", 192 | "phone_number": "337-527-3020", 193 | "fax_number": "(337) 527-2002" 194 | }, 195 | { 196 | "name": "Kitz & Pfeil, Inc", 197 | "address": "427 N Main St", 198 | "city": "Oshkosh", 199 | "state": "WI", 200 | "zip_code": "54901", 201 | "country": "US", 202 | "lat": "44.0186562", 203 | "lng": "-88.5376448", 204 | "phone_number": "920-236-3340", 205 | "fax_number": "920-236-3348" 206 | }, 207 | { 208 | "name": "Lackore Electric Motor ", 209 | "address": "4102 Mormon Coulee Ct", 210 | "city": "La Crosse", 211 | "state": "WI", 212 | "zip_code": "54602-0802", 213 | "country": "US", 214 | "lat": "43.773034", 215 | "lng": "-91.220015", 216 | "phone_number": "608-782-7635", 217 | "fax_number": "608-782-7612" 218 | }, 219 | { 220 | "name": "Lackore Electric Motor Sales & Repair", 221 | "address": "108 W 2nd St", 222 | "city": "Winona", 223 | "state": "MN", 224 | "zip_code": "55987", 225 | "country": "US", 226 | "lat": "44.054114", 227 | "lng": "-91.637775", 228 | "phone_number": "507-452-3103", 229 | "fax_number": "507-454-8273" 230 | }, 231 | { 232 | "name": "BLUE BALL MACHINE CO INC", 233 | "address": "4225 DIVISION HWY", 234 | "city": "BLUE BALL ", 235 | "state": "PA", 236 | "zip_code": "17506", 237 | "country": "US", 238 | "lat": "40.1176559", 239 | "lng": "-76.046758", 240 | "phone_number": "717-354-4478", 241 | "fax_number": null 242 | }, 243 | { 244 | "name": "Nelsons Airtool Service", 245 | "address": "709 N Fair", 246 | "city": "Marion", 247 | "state": "IL", 248 | "zip_code": "62959", 249 | "country": "US", 250 | "lat": "37.7352519", 251 | "lng": "-88.9154882", 252 | "phone_number": "618-997-2101", 253 | "fax_number": "681-997-2101" 254 | }, 255 | { 256 | "name": "Power Tool Service", 257 | "address": "300 N. Webster Ave", 258 | "city": "Green Bay", 259 | "state": "WI", 260 | "zip_code": "54301", 261 | "country": "US", 262 | "lat": "44.5122498", 263 | "lng": "-88.0034249", 264 | "phone_number": "920-437-2594", 265 | "fax_number": "920-432-0726" 266 | }, 267 | { 268 | "name": "Quality Serviced Tools LLC", 269 | "address": "1221 W. Conway Rd", 270 | "city": "Harbor Springs", 271 | "state": "MI", 272 | "zip_code": "49740", 273 | "country": "US", 274 | "lat": "45.4289569", 275 | "lng": "-84.888262", 276 | "phone_number": "31-487-0152", 277 | "fax_number": "231-487-0153" 278 | }, 279 | { 280 | "name": "R.A. Miller Supply", 281 | "address": "303 Ross Avenue", 282 | "city": "Schofield", 283 | "state": "WI", 284 | "zip_code": "54476", 285 | "country": "US", 286 | "lat": "44.913846", 287 | "lng": "-89.608463", 288 | "phone_number": "715-355-7999", 289 | "fax_number": "715-355-0099" 290 | }, 291 | { 292 | "name": "Range Repair Service", 293 | "address": "108 S 15th Ave W", 294 | "city": "Virginia", 295 | "state": "MN", 296 | "zip_code": "55792", 297 | "country": "US", 298 | "lat": "47.5215955", 299 | "lng": "-92.5575699", 300 | "phone_number": "1-218-749-1265", 301 | "fax_number": null 302 | }, 303 | { 304 | "name": "Shannon Supply", 305 | "address": "8554 Carter Rd", 306 | "city": "Freeland", 307 | "state": "MI", 308 | "zip_code": "48623", 309 | "country": "US", 310 | "lat": "43.533025", 311 | "lng": "-84.12866", 312 | "phone_number": "989-695-5573", 313 | "fax_number": "(989) 695-2229" 314 | }, 315 | { 316 | "name": "Stan Houston", 317 | "address": "501 S Marion Rd", 318 | "city": "Sioux Falls", 319 | "state": "SD", 320 | "zip_code": "57107", 321 | "country": "US", 322 | "lat": "43.5426174", 323 | "lng": "-96.791156", 324 | "phone_number": "605-336-3727", 325 | "fax_number": "(605) 336-7860" 326 | }, 327 | { 328 | "name": "Tighton Tools & Fasteners", 329 | "address": "7820 L St", 330 | "city": "Omaha", 331 | "state": "NE", 332 | "zip_code": "68127", 333 | "country": "US", 334 | "lat": "41.2133899", 335 | "lng": "-96.0360199", 336 | "phone_number": "402-331-5550", 337 | "fax_number": "(402) 331-5666" 338 | }, 339 | { 340 | "name": "Tool Doctor", 341 | "address": "607 Ave D", 342 | "city": "Kearney", 343 | "state": "NE", 344 | "zip_code": "68847", 345 | "country": "US", 346 | "lat": "40.6796421", 347 | "lng": "-99.0768818", 348 | "phone_number": "308-237-0802", 349 | "fax_number": "(308) 237-0802" 350 | }, 351 | { 352 | "name": "Tool Medic", 353 | "address": "11395 N Saginaw Rd", 354 | "city": "Clio", 355 | "state": "MI", 356 | "zip_code": "48420", 357 | "country": "US", 358 | "lat": "43.1714707", 359 | "lng": "-83.7108582", 360 | "phone_number": "810-687-6691", 361 | "fax_number": null 362 | }, 363 | { 364 | "name": "Total Tool & Equipment", 365 | "address": "200 N 12th St", 366 | "city": "Escanaba", 367 | "state": "MI", 368 | "zip_code": "49829", 369 | "country": "US", 370 | "lat": "45.746859", 371 | "lng": "-87.0644168", 372 | "phone_number": "906-786-7242", 373 | "fax_number": "906-786-1006" 374 | }, 375 | { 376 | "name": "Trupke Electric Motor Service and Sales", 377 | "address": "600 Diagonal St", 378 | "city": "Algona", 379 | "state": "IA", 380 | "zip_code": "50511", 381 | "country": "US", 382 | "lat": "43.0735953", 383 | "lng": "-94.2231597", 384 | "phone_number": "515-295-5242", 385 | "fax_number": null 386 | }, 387 | { 388 | "name": "West Shore Tool Service LLC", 389 | "address": "680 Maple St", 390 | "city": "Peshtigo", 391 | "state": "WI", 392 | "zip_code": "54157", 393 | "country": "US", 394 | "lat": "45.053458", 395 | "lng": "-87.734945", 396 | "phone_number": "715-582-0300", 397 | "fax_number": "715-582-0220" 398 | }, 399 | { 400 | "name": "Whitton Supply", 401 | "address": "1419 West Reno", 402 | "city": "Oklahoma City", 403 | "state": "OK", 404 | "zip_code": "73106", 405 | "country": "US", 406 | "lat": "35.464417", 407 | "lng": "-97.5383251", 408 | "phone_number": "405-236-5561", 409 | "fax_number": "(405) 236-5595" 410 | }, 411 | { 412 | "name": "Specialty Tool Repair, LLC", 413 | "address": "410 W Saint Peter St", 414 | "city": "New Iberia", 415 | "state": "LA", 416 | "zip_code": "70560", 417 | "country": "US", 418 | "lat": "30.009418", 419 | "lng": "-91.8228929", 420 | "phone_number": "337-365-3680", 421 | "fax_number": null 422 | }, 423 | { 424 | "name": "Dinero Compressors & Equipment", 425 | "address": "623 N. Front St", 426 | "city": "Mathis", 427 | "state": "TX", 428 | "zip_code": "78368", 429 | "country": "US", 430 | "lat": "28.0986086", 431 | "lng": "-97.824525", 432 | "phone_number": "361-547-3992", 433 | "fax_number": "361-547-7300" 434 | }, 435 | { 436 | "name": "WYCO INC Reed's Sales & Service", 437 | "address": "1260 Payne Ave", 438 | "city": "St. Paul", 439 | "state": "MN", 440 | "zip_code": "55130", 441 | "country": "US", 442 | "lat": "44.9791471", 443 | "lng": "-93.073452", 444 | "phone_number": "651-774-9515", 445 | "fax_number": "651-774-1532" 446 | }, 447 | { 448 | "name": "A-Line Machine Tool Co.", 449 | "address": "800 Monitor St", 450 | "city": "La Crosse", 451 | "state": "WI", 452 | "zip_code": "54603", 453 | "country": "US", 454 | "lat": "43.8284286", 455 | "lng": "-91.2452682", 456 | "phone_number": "608-785-1515", 457 | "fax_number": "(608) 784-3300" 458 | }, 459 | { 460 | "name": "Behning Tool Co Inc. ", 461 | "address": "785 Washington Street", 462 | "city": "Hanover", 463 | "state": "MA", 464 | "zip_code": "2339", 465 | "country": "US", 466 | "lat": "42.1271307", 467 | "lng": "-70.8295666", 468 | "phone_number": "781-826-4767", 469 | "fax_number": null 470 | }, 471 | { 472 | "name": "DC Auto Electric, Inc", 473 | "address": "441 Knudsen Dr", 474 | "city": "Kingsford", 475 | "state": "MI", 476 | "zip_code": "49802", 477 | "country": "US", 478 | "lat": "45.7949561", 479 | "lng": "-88.0720706", 480 | "phone_number": "906-774-9139", 481 | "fax_number": "906-774-9153" 482 | }, 483 | { 484 | "name": "Grayson Compressor Service", 485 | "address": "2525 W. Morton St", 486 | "city": "Denison", 487 | "state": "TX", 488 | "zip_code": "75021", 489 | "country": "US", 490 | "lat": "33.761184", 491 | "lng": "-96.574757", 492 | "phone_number": "903-465-2355", 493 | "fax_number": "(903) 465-6165" 494 | }, 495 | { 496 | "name": "Allied Equipment, Inc.", 497 | "address": "851 Potts Ave", 498 | "city": "Green Bay", 499 | "state": "WI", 500 | "zip_code": "54304", 501 | "country": "US", 502 | "lat": "44.496743", 503 | "lng": "-88.05893", 504 | "phone_number": "920-499-2992", 505 | "fax_number": null 506 | }, 507 | { 508 | "name": "Jet Power Tool Repair Inc", 509 | "address": "970 Jonathon Drï¾ ", 510 | "city": "Madison", 511 | "state": "WI", 512 | "zip_code": "53713", 513 | "country": "US", 514 | "lat": "43.0324123", 515 | "lng": "-89.3843206", 516 | "phone_number": "608-271-2315", 517 | "fax_number": "608-271-2158" 518 | }, 519 | { 520 | "name": "Avanti Tools & Accessories Inc", 521 | "address": "421 E. 5th St", 522 | "city": "Peru", 523 | "state": "IL", 524 | "zip_code": "61354", 525 | "country": "US", 526 | "lat": "41.3291488", 527 | "lng": "-89.1109888", 528 | "phone_number": "815-780-8677", 529 | "fax_number": "815-780-8677" 530 | }, 531 | { 532 | "name": "Woodworker's Depot Inc", 533 | "address": "2965 Ramada Way", 534 | "city": "Green Bay", 535 | "state": "WI", 536 | "zip_code": "54304", 537 | "country": "US", 538 | "lat": "44.468163", 539 | "lng": "-88.0774266", 540 | "phone_number": "920-336-6900", 541 | "fax_number": "(920) 336-8683" 542 | }, 543 | { 544 | "name": "Marsh Power Tools", 545 | "address": "20579 Middlebelt Rd", 546 | "city": "Livonia", 547 | "state": "MI", 548 | "zip_code": "48152", 549 | "country": "US", 550 | "lat": "42.4409215", 551 | "lng": "-83.3368395", 552 | "phone_number": "248-476-7744", 553 | "fax_number": "(248) 476-1090" 554 | }, 555 | { 556 | "name": "Dalton Sports & Repair", 557 | "address": "26986 125th St", 558 | "city": "Dalton", 559 | "state": "MN", 560 | "zip_code": "56324", 561 | "country": "US", 562 | "lat": "46.1455725", 563 | "lng": "-95.9332554", 564 | "phone_number": "218-589-8761", 565 | "fax_number": "218-589-7190" 566 | }, 567 | { 568 | "name": "America Grinding & Sales", 569 | "address": "1020 W. 29th", 570 | "city": "Kansas City", 571 | "state": "MO", 572 | "zip_code": "64108", 573 | "country": "US", 574 | "lat": "39.0749726", 575 | "lng": "-94.5973024", 576 | "phone_number": "800-304-6844", 577 | "fax_number": "816-561-1778" 578 | }, 579 | { 580 | "name": "Tool Depot", 581 | "address": "2121 Lincoln Ave SW", 582 | "city": "LeMars", 583 | "state": "IA", 584 | "zip_code": "51031", 585 | "country": "US", 586 | "lat": "42.7615108", 587 | "lng": "-96.1958123", 588 | "phone_number": null, 589 | "fax_number": null 590 | }, 591 | { 592 | "name": "Campbell Supply Company", 593 | "address": "2127 N Towne Lane NE", 594 | "city": "Cedar Rapids", 595 | "state": "IA", 596 | "zip_code": "52402", 597 | "country": "US", 598 | "lat": "42.031652", 599 | "lng": "-91.672799", 600 | "phone_number": "319-234-6613", 601 | "fax_number": "319-234-01" 602 | }, 603 | { 604 | "name": "Olson Trading Post", 605 | "address": "80860 110th St", 606 | "city": "Glenville", 607 | "state": "MN", 608 | "zip_code": "56036", 609 | "country": "US", 610 | "lat": "43.5140391", 611 | "lng": "-93.2603051", 612 | "phone_number": "507-448-3302", 613 | "fax_number": "507-448-2832" 614 | }, 615 | { 616 | "name": "The Tool Source", 617 | "address": "950 Airport Rd", 618 | "city": "Hot Springs", 619 | "state": "AR", 620 | "zip_code": "71913", 621 | "country": "US", 622 | "lat": "34.479966", 623 | "lng": "-93.108972", 624 | "phone_number": "501-760-5000", 625 | "fax_number": "501-760-5055" 626 | }, 627 | { 628 | "name": "Rio Industrial Supply", 629 | "address": "3522 Frutas Ave,", 630 | "city": "El Paso", 631 | "state": "TX", 632 | "zip_code": "79905", 633 | "country": "US", 634 | "lat": "31.7743804", 635 | "lng": "-106.4513771", 636 | "phone_number": "915-533-0984", 637 | "fax_number": "(915) 544-2658" 638 | }, 639 | { 640 | "name": "Thacker Electric", 641 | "address": "8517 \"I\" St", 642 | "city": "Omaha", 643 | "state": "NE", 644 | "zip_code": "68127", 645 | "country": "US", 646 | "lat": "41.2163657", 647 | "lng": "-96.0451752", 648 | "phone_number": "402-592-9433", 649 | "fax_number": "402-592-3768" 650 | }, 651 | { 652 | "name": "Coastal Electric & Rewinding", 653 | "address": "928 Osceola Street", 654 | "city": "Myrtle Beach", 655 | "state": "SC", 656 | "zip_code": "29577", 657 | "country": "US", 658 | "lat": "33.705748", 659 | "lng": "-78.8942839", 660 | "phone_number": "843-448-3586", 661 | "fax_number": null 662 | }, 663 | { 664 | "name": "1-800 ToolRepair (Direct all Mailings/Calls here) - unpublish", 665 | "address": "707 West Main Street", 666 | "city": "Hendersonville", 667 | "state": "TN", 668 | "zip_code": "37075", 669 | "country": "US", 670 | "lat": "36.302553", 671 | "lng": "-86.640883", 672 | "phone_number": "615-851-5490", 673 | "fax_number": null 674 | }, 675 | { 676 | "name": "1-800 ToolRepair (ToolServe Inc)", 677 | "address": "601 Cowan Street", 678 | "city": "Nashville", 679 | "state": "TN", 680 | "zip_code": "37207", 681 | "country": "US", 682 | "lat": "36.1822859", 683 | "lng": "-86.7755492", 684 | "phone_number": "615-242-7500", 685 | "fax_number": null 686 | }, 687 | { 688 | "name": "Trado Supplies", 689 | "address": "1015 Whitehall Rd", 690 | "city": "Anderson", 691 | "state": "SC", 692 | "zip_code": "29625", 693 | "country": "US", 694 | "lat": "34.529761", 695 | "lng": "-82.687337", 696 | "phone_number": "(864) 225-4438", 697 | "fax_number": null 698 | }, 699 | { 700 | "name": "Allied Tool Repair", 701 | "address": "1005 Second Ave South", 702 | "city": "Nashville", 703 | "state": "TN", 704 | "zip_code": "37210", 705 | "country": "US", 706 | "lat": "36.15008", 707 | "lng": "-86.76789", 708 | "phone_number": "615-242-8026", 709 | "fax_number": "(615) 254-9370" 710 | }, 711 | { 712 | "name": "Burns Tools Inc", 713 | "address": "350 Mariano S Bishop Blvd", 714 | "city": "Fall River", 715 | "state": "MA", 716 | "zip_code": "2721", 717 | "country": "US", 718 | "lat": "41.672643", 719 | "lng": "-71.163281", 720 | "phone_number": "508-675-0381 x101", 721 | "fax_number": "(508) 677-1300" 722 | }, 723 | { 724 | "name": "City Electric Motor Company", 725 | "address": "631 Kennedy Rd", 726 | "city": "Lexington", 727 | "state": "KY", 728 | "zip_code": "40511", 729 | "country": "US", 730 | "lat": "38.072009", 731 | "lng": "-84.497293", 732 | "phone_number": "859-254-5581", 733 | "fax_number": "859-253-0121" 734 | }, 735 | { 736 | "name": "Dapco LTD", 737 | "address": "2212 Asheville Hwy", 738 | "city": "Hendersonville", 739 | "state": "NC", 740 | "zip_code": "28792", 741 | "country": "US", 742 | "lat": "35.340848", 743 | "lng": "-82.474554", 744 | "phone_number": "828-693-8567", 745 | "fax_number": "828-697-9126" 746 | }, 747 | { 748 | "name": "Dorward Electric", 749 | "address": "450 West Church St", 750 | "city": "Slatington", 751 | "state": "PA", 752 | "zip_code": "18080", 753 | "country": "US", 754 | "lat": "40.749655", 755 | "lng": "-75.6150007", 756 | "phone_number": "610-767-8148", 757 | "fax_number": "(610) 767-8731" 758 | }, 759 | { 760 | "name": "Forestiere Power Tool & Equipment Co.", 761 | "address": "62-02 64th Street", 762 | "city": "Middle Village", 763 | "state": "NY", 764 | "zip_code": "11379", 765 | "country": "US", 766 | "lat": "40.7142122", 767 | "lng": "-73.8979166", 768 | "phone_number": "718-416-0378", 769 | "fax_number": "718-416-0379" 770 | }, 771 | { 772 | "name": "George Smith Tool Repair", 773 | "address": "80 Buena Vista Drive", 774 | "city": "New Castle", 775 | "state": "DE", 776 | "zip_code": "19720", 777 | "country": "US", 778 | "lat": "39.639385", 779 | "lng": "-75.637016", 780 | "phone_number": "302-322-2258", 781 | "fax_number": null 782 | }, 783 | { 784 | "name": "Gottier Small Engine Repair", 785 | "address": "427 Tolland Stage Rd", 786 | "city": "Tolland", 787 | "state": "CT", 788 | "zip_code": "6084", 789 | "country": "US", 790 | "lat": "41.8769475", 791 | "lng": "-72.3938847", 792 | "phone_number": "860-875-2802", 793 | "fax_number": "860-871-8135" 794 | }, 795 | { 796 | "name": "Hartville Hardware, Inc", 797 | "address": "1315 Edison St NW", 798 | "city": "Hartville", 799 | "state": "OH", 800 | "zip_code": "44632", 801 | "country": "US", 802 | "lat": "40.9728421", 803 | "lng": "-81.3621926", 804 | "phone_number": "330-877-3631", 805 | "fax_number": "(330) 877-4423" 806 | }, 807 | { 808 | "name": "Hemp's Power Tool Repair, Inc.", 809 | "address": "13407 Graceham Rd", 810 | "city": "Thurmont", 811 | "state": "MD", 812 | "zip_code": "21788", 813 | "country": "US", 814 | "lat": "39.604963", 815 | "lng": "-77.373154", 816 | "phone_number": "301-898-9916", 817 | "fax_number": "301-271-3610" 818 | }, 819 | { 820 | "name": "Hogan Tire", 821 | "address": "135 Bangor St", 822 | "city": "Houlton", 823 | "state": "ME", 824 | "zip_code": "4730", 825 | "country": "US", 826 | "lat": "46.1191288", 827 | "lng": "-67.851973", 828 | "phone_number": "207-532-2211", 829 | "fax_number": "207-532-4083" 830 | }, 831 | { 832 | "name": "Kauffman Family Tool Repair", 833 | "address": "10706 Morning View Rd", 834 | "city": "Singers Glen", 835 | "state": "VA", 836 | "zip_code": "22850", 837 | "country": "US", 838 | "lat": "38.5919359", 839 | "lng": "-78.900499", 840 | "phone_number": "540-820-4879", 841 | "fax_number": null 842 | }, 843 | { 844 | "name": "Keim Lumber Co.", 845 | "address": "4465 State Route 557", 846 | "city": "Charm", 847 | "state": "OH", 848 | "zip_code": "44654", 849 | "country": "US", 850 | "lat": "40.507013", 851 | "lng": "-81.785059", 852 | "phone_number": "330-893-2251 x 383", 853 | "fax_number": "330-893-3325" 854 | }, 855 | { 856 | "name": "Keystone Air Power", 857 | "address": "60 Elco Drive", 858 | "city": "Myerstown", 859 | "state": "PA", 860 | "zip_code": "17067", 861 | "country": "US", 862 | "lat": "40.3422553", 863 | "lng": "-76.3009975", 864 | "phone_number": "717-866-9224", 865 | "fax_number": "(717) 866-9024" 866 | }, 867 | { 868 | "name": "N. H. Bragg", 869 | "address": "92 Perry Road", 870 | "city": "Bangor", 871 | "state": "ME", 872 | "zip_code": "4401", 873 | "country": "US", 874 | "lat": "44.7838099", 875 | "lng": "-68.792073", 876 | "phone_number": "207-217-6225", 877 | "fax_number": "207-217-6238" 878 | }, 879 | { 880 | "name": "North Canton Repair Shop", 881 | "address": "1555 N Main St", 882 | "city": "North Canton", 883 | "state": "OH", 884 | "zip_code": "44720", 885 | "country": "US", 886 | "lat": "40.894853", 887 | "lng": "-81.406904", 888 | "phone_number": "330-499-3529", 889 | "fax_number": "(330) 499-3529" 890 | }, 891 | { 892 | "name": "Paul B LLC", 893 | "address": "50 Woodcorner Rd3", 894 | "city": "Lititz", 895 | "state": "PA", 896 | "zip_code": "17543", 897 | "country": "US", 898 | "lat": "40.1995992", 899 | "lng": "-76.21889", 900 | "phone_number": "717-738-7350", 901 | "fax_number": "717-738-7360" 902 | }, 903 | { 904 | "name": "Piedmont Tool Repair", 905 | "address": "2811 Hydraulic Rd", 906 | "city": "Charlottesville", 907 | "state": "VA", 908 | "zip_code": "22901", 909 | "country": "US", 910 | "lat": "38.0756835", 911 | "lng": "-78.4979314", 912 | "phone_number": "434-817-3090", 913 | "fax_number": "434-817-5401" 914 | }, 915 | { 916 | "name": "Power Tool Sales & Service", 917 | "address": "6713 Angola Rd", 918 | "city": "Holland", 919 | "state": "OH", 920 | "zip_code": "43528", 921 | "country": "US", 922 | "lat": "41.624331", 923 | "lng": "-83.701464", 924 | "phone_number": "419-868-8665", 925 | "fax_number": "(419) 868-9084" 926 | }, 927 | { 928 | "name": "Pro Tool Repair", 929 | "address": "1550 Dickson Ave", 930 | "city": "Scranton", 931 | "state": "PA", 932 | "zip_code": "18509", 933 | "country": "US", 934 | "lat": "41.4296968", 935 | "lng": "-75.6528493", 936 | "phone_number": "570-961-5163", 937 | "fax_number": "570-961-5160" 938 | }, 939 | { 940 | "name": "Reliable Tool Service", 941 | "address": "91B Moffitt Blvd", 942 | "city": "Bay Shore", 943 | "state": "NY", 944 | "zip_code": "11706", 945 | "country": "US", 946 | "lat": "40.732835", 947 | "lng": "-73.228932", 948 | "phone_number": "631-581-8180", 949 | "fax_number": "631-581-0924" 950 | }, 951 | { 952 | "name": "Specialty Services Unlimited", 953 | "address": "612 N. Davis Dr", 954 | "city": "Warner Robins", 955 | "state": "GA", 956 | "zip_code": "31093", 957 | "country": "US", 958 | "lat": "32.637047", 959 | "lng": "-83.612563", 960 | "phone_number": "478-328-3190", 961 | "fax_number": "478-329-1308" 962 | }, 963 | { 964 | "name": "Swam Electric Co. Inc", 965 | "address": "490 High Street", 966 | "city": "Hanover", 967 | "state": "PA", 968 | "zip_code": "17331-2125", 969 | "country": "US", 970 | "lat": "39.807267", 971 | "lng": "-76.9966479", 972 | "phone_number": "717-637-3821 x301", 973 | "fax_number": "717-637-8964" 974 | }, 975 | { 976 | "name": "The Saw Center", 977 | "address": "427 main street", 978 | "city": "Springfield", 979 | "state": "MA", 980 | "zip_code": "1105", 981 | "country": "US", 982 | "lat": "42.092648", 983 | "lng": "-72.580881", 984 | "phone_number": "413-331-3115", 985 | "fax_number": null 986 | }, 987 | { 988 | "name": "Total Tool Service, Inc", 989 | "address": "266 Sailors Dr #1", 990 | "city": "Elijay", 991 | "state": "GA", 992 | "zip_code": "30540", 993 | "country": "US", 994 | "lat": "34.6907431", 995 | "lng": "-84.4812258", 996 | "phone_number": "706-276-3141", 997 | "fax_number": "706-276-3120" 998 | }, 999 | { 1000 | "name": "Warden Electric Co.", 1001 | "address": "604 N 7th St", 1002 | "city": "Paducah", 1003 | "state": "KY", 1004 | "zip_code": "42001", 1005 | "country": "US", 1006 | "lat": "37.0900566", 1007 | "lng": "-88.6048253", 1008 | "phone_number": "270-443-4622", 1009 | "fax_number": "270-442-7151" 1010 | }, 1011 | { 1012 | "name": "Witmer Motor Service", 1013 | "address": "2352 Division Hwy", 1014 | "city": "Ephrata", 1015 | "state": "PA", 1016 | "zip_code": "17522", 1017 | "country": "US", 1018 | "lat": "40.1415799", 1019 | "lng": "-76.1081587", 1020 | "phone_number": "717-354-6141", 1021 | "fax_number": "717-354-8662" 1022 | }, 1023 | { 1024 | "name": "Appliance Servicenter Inc", 1025 | "address": "3317 モBï¾” Old Capitol Trail", 1026 | "city": "Wilmington", 1027 | "state": "DE", 1028 | "zip_code": "19808", 1029 | "country": "US", 1030 | "lat": "39.7329896", 1031 | "lng": "-75.6789905", 1032 | "phone_number": "302-994-6259", 1033 | "fax_number": "302-994-5538" 1034 | }, 1035 | { 1036 | "name": "Authorized Tool Service", 1037 | "address": "2210 Heller Dr", 1038 | "city": "Beaver Creek", 1039 | "state": "OH", 1040 | "zip_code": "45434", 1041 | "country": "US", 1042 | "lat": "39.7065934", 1043 | "lng": "-84.0179973", 1044 | "phone_number": "937-429-5593", 1045 | "fax_number": "(937) 429-2243" 1046 | }, 1047 | { 1048 | "name": "Panda Electrical Service, Inc", 1049 | "address": "165 Main Street", 1050 | "city": "Everett", 1051 | "state": "MA", 1052 | "zip_code": "2149", 1053 | "country": "US", 1054 | "lat": "42.4066405", 1055 | "lng": "-71.061842", 1056 | "phone_number": "617-389-1442", 1057 | "fax_number": "617-389-6823" 1058 | }, 1059 | { 1060 | "name": "Lawter Electric Motor Co", 1061 | "address": "202 Adams Ave", 1062 | "city": "Huntington", 1063 | "state": "WV", 1064 | "zip_code": "25701", 1065 | "country": "US", 1066 | "lat": "38.4168918", 1067 | "lng": "-82.4594604", 1068 | "phone_number": "304-522-8297", 1069 | "fax_number": "(304) 253-9004" 1070 | }, 1071 | { 1072 | "name": "M&D Limited of Ohio", 1073 | "address": "25405 Broadway Ave., Unit 4", 1074 | "city": "Oakwood Village", 1075 | "state": "OH", 1076 | "zip_code": "44146", 1077 | "country": "US", 1078 | "lat": "41.3605373", 1079 | "lng": "-81.501448", 1080 | "phone_number": "440-914-1252", 1081 | "fax_number": "877-571-4602" 1082 | }, 1083 | { 1084 | "name": "May & Company", 1085 | "address": "838 West Capital St", 1086 | "city": "Jackson", 1087 | "state": "MS", 1088 | "zip_code": "39203", 1089 | "country": "US", 1090 | "lat": "32.3049231", 1091 | "lng": "-90.2010233", 1092 | "phone_number": "601-354-5781", 1093 | "fax_number": "(601) 355-4804" 1094 | }, 1095 | { 1096 | "name": "Mountain View Tool Repair", 1097 | "address": "330 Route 125", 1098 | "city": "Brentwood", 1099 | "state": "NH", 1100 | "zip_code": "3833", 1101 | "country": "US", 1102 | "lat": "42.9999265", 1103 | "lng": "-71.0793527", 1104 | "phone_number": "603-679-2023", 1105 | "fax_number": "603-679-2956" 1106 | }, 1107 | { 1108 | "name": "Quality Tool Repair", 1109 | "address": "39 Wedgewood Drive Ste. K", 1110 | "city": "Jewett City", 1111 | "state": "CT", 1112 | "zip_code": "6351", 1113 | "country": "US", 1114 | "lat": "41.603169", 1115 | "lng": "-71.9832699", 1116 | "phone_number": "860-376-5634", 1117 | "fax_number": "860-376-5639" 1118 | }, 1119 | { 1120 | "name": "Affordable Electrical Repair", 1121 | "address": "707 north indiana ave", 1122 | "city": "crown point", 1123 | "state": "IN", 1124 | "zip_code": "46307", 1125 | "country": "US", 1126 | "lat": "41.426082", 1127 | "lng": "-87.355228", 1128 | "phone_number": "219-696-7792", 1129 | "fax_number": "219-696-7793" 1130 | }, 1131 | { 1132 | "name": "Creative Sheds", 1133 | "address": "24263 Pirate Harbor Blvd", 1134 | "city": "Punta Gorda", 1135 | "state": "FL", 1136 | "zip_code": "33955", 1137 | "country": "US", 1138 | "lat": "26.8039457", 1139 | "lng": "-82.0461164", 1140 | "phone_number": "941-637-6111", 1141 | "fax_number": null 1142 | }, 1143 | { 1144 | "name": "Engineered Maintenance Services", 1145 | "address": "7234 Governors West", 1146 | "city": "Huntsville", 1147 | "state": "AL", 1148 | "zip_code": "35806-2051", 1149 | "country": "US", 1150 | "lat": "34.7050032", 1151 | "lng": "-86.6812582", 1152 | "phone_number": "256-837-2950", 1153 | "fax_number": "256-837-2600" 1154 | }, 1155 | { 1156 | "name": "J&A Repair Shop Inc.", 1157 | "address": "6206 20th Ave.", 1158 | "city": "Brookyln", 1159 | "state": "NY", 1160 | "zip_code": "11204", 1161 | "country": "US", 1162 | "lat": "40.618184", 1163 | "lng": "-73.984504", 1164 | "phone_number": "718-232-5746", 1165 | "fax_number": null 1166 | }, 1167 | { 1168 | "name": "Scranton Grinder & Hardware", 1169 | "address": "1020 Hemlock St", 1170 | "city": "Scranton", 1171 | "state": "PA", 1172 | "zip_code": "18505", 1173 | "country": "US", 1174 | "lat": "41.3964819", 1175 | "lng": "-75.6518847", 1176 | "phone_number": "570-344-2520", 1177 | "fax_number": "(570) 344-0852" 1178 | }, 1179 | { 1180 | "name": "Netcoh Sales Co.", 1181 | "address": "1301 Jefferson Blvd", 1182 | "city": "Warwick", 1183 | "state": "RI", 1184 | "zip_code": "2886", 1185 | "country": "US", 1186 | "lat": "41.7132859", 1187 | "lng": "-71.4487259", 1188 | "phone_number": "401-739-9008", 1189 | "fax_number": null 1190 | }, 1191 | { 1192 | "name": "A-1 Tool & Repair Inc", 1193 | "address": "1851 Blanding Blvd", 1194 | "city": "Middleburg", 1195 | "state": "FL", 1196 | "zip_code": "32068", 1197 | "country": "US", 1198 | "lat": "30.101934", 1199 | "lng": "-81.832019", 1200 | "phone_number": "904-282-3707", 1201 | "fax_number": "(904) 282-4511" 1202 | }, 1203 | { 1204 | "name": "AIR SUPPLY & FASTENER", 1205 | "address": "91 CORONADO DR", 1206 | "city": "KERRVILLE", 1207 | "state": "tx", 1208 | "zip_code": "78028", 1209 | "country": "US", 1210 | "lat": "30.0672653", 1211 | "lng": "-99.1780617", 1212 | "phone_number": "830-896-3922", 1213 | "fax_number": null 1214 | }, 1215 | { 1216 | "name": "Brian's Tool Sales", 1217 | "address": "9 Moody Rd", 1218 | "city": "Enfield", 1219 | "state": "CT", 1220 | "zip_code": "6082", 1221 | "country": "US", 1222 | "lat": "42.0001523", 1223 | "lng": "-72.5519278", 1224 | "phone_number": "860-763-2084", 1225 | "fax_number": "(860) 763-2084" 1226 | }, 1227 | { 1228 | "name": "Dixie Industrial Service Inc.", 1229 | "address": "2108 E. Main St", 1230 | "city": "Chattanooga", 1231 | "state": "TN", 1232 | "zip_code": "37404", 1233 | "country": "US", 1234 | "lat": "35.0246728", 1235 | "lng": "-85.276664", 1236 | "phone_number": "423-698-8063", 1237 | "fax_number": "423-698-8065" 1238 | }, 1239 | { 1240 | "name": "Sada Tool Repair", 1241 | "address": "6805 South Orange Ave.", 1242 | "city": "Orlando", 1243 | "state": "FL", 1244 | "zip_code": "32809", 1245 | "country": "US", 1246 | "lat": "28.4640414", 1247 | "lng": "-81.3672543", 1248 | "phone_number": "407-438-5888", 1249 | "fax_number": null 1250 | }, 1251 | { 1252 | "name": "Triangle Building Supplies & Services", 1253 | "address": "1076 E Bishop St", 1254 | "city": "Bellefonte", 1255 | "state": "PA", 1256 | "zip_code": "16823", 1257 | "country": "US", 1258 | "lat": "40.9142717", 1259 | "lng": "-77.7576013", 1260 | "phone_number": "814-355-7368", 1261 | "fax_number": "(814) 355-8811" 1262 | }, 1263 | { 1264 | "name": "C & L Electric Motor Repair Inc", 1265 | "address": "1402 Chicago Ave", 1266 | "city": "Goshen", 1267 | "state": "IN", 1268 | "zip_code": "46528", 1269 | "country": "US", 1270 | "lat": "41.5945596", 1271 | "lng": "-85.8535361", 1272 | "phone_number": "574-533-2643", 1273 | "fax_number": "574-533-1511" 1274 | }, 1275 | { 1276 | "name": "Gap Power", 1277 | "address": "5399 Lincoln Hwy East", 1278 | "city": "Gap", 1279 | "state": "PA", 1280 | "zip_code": "17527-9701", 1281 | "country": "US", 1282 | "lat": "39.9912758", 1283 | "lng": "-76.015315", 1284 | "phone_number": "(717) 442-8970 ext. 311 or 302", 1285 | "fax_number": null 1286 | }, 1287 | { 1288 | "name": "Power Tool Repair", 1289 | "address": "891 Moe Dr", 1290 | "city": "Akron", 1291 | "state": "OH", 1292 | "zip_code": "44310", 1293 | "country": "US", 1294 | "lat": "41.108635", 1295 | "lng": "-81.482664", 1296 | "phone_number": "330-630-0022", 1297 | "fax_number": null 1298 | }, 1299 | { 1300 | "name": "Hufhams Small Engine", 1301 | "address": "3301 NC Highway 133", 1302 | "city": "Rocky Point", 1303 | "state": "NC", 1304 | "zip_code": "28457", 1305 | "country": "US", 1306 | "lat": "34.411668", 1307 | "lng": "-77.940937", 1308 | "phone_number": "910-675-2029", 1309 | "fax_number": "(910) 675-2029" 1310 | }, 1311 | { 1312 | "name": "Woodshop Specialties", 1313 | "address": "889 Post Rd", 1314 | "city": "Rutland", 1315 | "state": "VT", 1316 | "zip_code": "5701", 1317 | "country": "US", 1318 | "lat": "43.63855", 1319 | "lng": "-72.949234", 1320 | "phone_number": "802-773-3240", 1321 | "fax_number": "802-775-3790" 1322 | }, 1323 | { 1324 | "name": "441 Tool Repair", 1325 | "address": "1975-A South Park Rd", 1326 | "city": "Pembroke Park", 1327 | "state": "FL", 1328 | "zip_code": "33009", 1329 | "country": "US", 1330 | "lat": "25.9931688", 1331 | "lng": "-80.1710192", 1332 | "phone_number": "954-981-8270", 1333 | "fax_number": "954-9814715" 1334 | }, 1335 | { 1336 | "name": "Mecanair Inc.", 1337 | "address": "1380 Newton, Suite 109", 1338 | "city": "Boucherville", 1339 | "state": "QC", 1340 | "zip_code": "J4B 5H2", 1341 | "country": "Canada", 1342 | "lat": "45.5652394", 1343 | "lng": "-73.4231286", 1344 | "phone_number": "1-866-206-0888", 1345 | "fax_number": null 1346 | }, 1347 | { 1348 | "name": "Vamaco Tool & Equipment", 1349 | "address": "6718 E. 38th St", 1350 | "city": "Indianapolis", 1351 | "state": "IN", 1352 | "zip_code": "46226", 1353 | "country": "US", 1354 | "lat": "39.826096", 1355 | "lng": "-86.050685", 1356 | "phone_number": "317-632-2208", 1357 | "fax_number": "317-244-3920" 1358 | }, 1359 | { 1360 | "name": "Tool & Equipment Service Solutions", 1361 | "address": "2554 State St", 1362 | "city": "Hamden", 1363 | "state": "CT", 1364 | "zip_code": "6517", 1365 | "country": "US", 1366 | "lat": "41.350761", 1367 | "lng": "-72.892719", 1368 | "phone_number": "203-248-7553", 1369 | "fax_number": "(203) 248-4896" 1370 | }, 1371 | { 1372 | "name": "Seymour Rent All", 1373 | "address": "314 Thompson Rd", 1374 | "city": "Seymour", 1375 | "state": "IN", 1376 | "zip_code": "47274", 1377 | "country": "US", 1378 | "lat": "38.947033", 1379 | "lng": "-85.911623", 1380 | "phone_number": "812-522-8392", 1381 | "fax_number": "(812) 522-8392" 1382 | }, 1383 | { 1384 | "name": "Panda Electrical Service, Inc", 1385 | "address": "165 Main Street", 1386 | "city": "Everett", 1387 | "state": "MA", 1388 | "zip_code": "2149", 1389 | "country": "US", 1390 | "lat": "42.4066405", 1391 | "lng": "-71.061842", 1392 | "phone_number": "617-389-1442", 1393 | "fax_number": "617-389-6823" 1394 | }, 1395 | { 1396 | "name": "Hinson Chain Saw", 1397 | "address": "404 Snowden Dr", 1398 | "city": "Andalusia", 1399 | "state": "AL", 1400 | "zip_code": "36420", 1401 | "country": "US", 1402 | "lat": "31.3151476", 1403 | "lng": "-86.4977622", 1404 | "phone_number": "334-222-5910", 1405 | "fax_number": "334-222-8203" 1406 | }, 1407 | { 1408 | "name": "scotty b's llc", 1409 | "address": "1306 n exeter ave", 1410 | "city": "indianapolis", 1411 | "state": "IN", 1412 | "zip_code": "46222", 1413 | "country": "US", 1414 | "lat": "39.7853372", 1415 | "lng": "-86.2198925", 1416 | "phone_number": null, 1417 | "fax_number": null 1418 | }, 1419 | { 1420 | "name": "JWB Supply Co Inc", 1421 | "address": "126 N Market St", 1422 | "city": "Lisbon", 1423 | "state": "OH", 1424 | "zip_code": "44432", 1425 | "country": "US", 1426 | "lat": "40.7724913", 1427 | "lng": "-80.7679952", 1428 | "phone_number": "330-424-9211", 1429 | "fax_number": "330-424-0582" 1430 | }, 1431 | { 1432 | "name": "Perry's Tool Repair", 1433 | "address": "313 Sweetwater Rd", 1434 | "city": "North Augusta", 1435 | "state": "SC", 1436 | "zip_code": "29860", 1437 | "country": "US", 1438 | "lat": "33.6085091", 1439 | "lng": "-81.961699", 1440 | "phone_number": "803-278-3366", 1441 | "fax_number": "803-278-3366" 1442 | }, 1443 | { 1444 | "name": "LTM Services", 1445 | "address": "481 Mohouli St", 1446 | "city": "Hilo", 1447 | "state": "HI", 1448 | "zip_code": "96720", 1449 | "country": "US", 1450 | "lat": "19.706365", 1451 | "lng": "-155.089219", 1452 | "phone_number": "808-935-9635", 1453 | "fax_number": "808-933-1571" 1454 | }, 1455 | { 1456 | "name": "Industrial Cutters Co.", 1457 | "address": "501 Sumner St #101", 1458 | "city": "Honolulu", 1459 | "state": "HI", 1460 | "zip_code": "96817", 1461 | "country": "US", 1462 | "lat": "21.317005", 1463 | "lng": "-157.868889", 1464 | "phone_number": "808-538-3545", 1465 | "fax_number": null 1466 | }, 1467 | { 1468 | "name": "Tool Depot", 1469 | "address": "1510 Dace Ave", 1470 | "city": "Sioux City ", 1471 | "state": "IA", 1472 | "zip_code": "51101", 1473 | "country": "US", 1474 | "lat": "42.4887362", 1475 | "lng": "-96.3907871", 1476 | "phone_number": null, 1477 | "fax_number": null 1478 | }, 1479 | { 1480 | "name": "Albeni Falls Building Supply", 1481 | "address": "520 Hwy 2, Old Town", 1482 | "city": "Old Town", 1483 | "state": "ID", 1484 | "zip_code": "83822", 1485 | "country": "US", 1486 | "lat": "48.1419401", 1487 | "lng": "-116.9962233", 1488 | "phone_number": "208-437-3153", 1489 | "fax_number": "(208) 437-3562" 1490 | }, 1491 | { 1492 | "name": "Fairbanks Aero Service", 1493 | "address": "1915 Ada St", 1494 | "city": "Fairbanks", 1495 | "state": "AK", 1496 | "zip_code": "99709", 1497 | "country": "US", 1498 | "lat": "64.8304259", 1499 | "lng": "-147.7839325", 1500 | "phone_number": "907-479-6666", 1501 | "fax_number": "(907) 474-2005" 1502 | }, 1503 | { 1504 | "name": "Northwest Tool Repair", 1505 | "address": "1000 Baker Ave", 1506 | "city": "Whitefish", 1507 | "state": "MT", 1508 | "zip_code": "59937", 1509 | "country": "US", 1510 | "lat": "48.40186", 1511 | "lng": "-114.338271", 1512 | "phone_number": "406-862-6275", 1513 | "fax_number": "(406) 862-6860" 1514 | }, 1515 | { 1516 | "name": "Prescott's Power Tool", 1517 | "address": "1050 Willow Creek #1", 1518 | "city": "Prescott", 1519 | "state": "AZ", 1520 | "zip_code": "86301", 1521 | "country": "US", 1522 | "lat": "34.563477", 1523 | "lng": "-112.483695", 1524 | "phone_number": "928-445-2628", 1525 | "fax_number": "(928) 776-8159" 1526 | }, 1527 | { 1528 | "name": "Ricks Electric Motor Service", 1529 | "address": "1298 N Yellowstone Hwy", 1530 | "city": "Rexburg", 1531 | "state": "ID", 1532 | "zip_code": "83440", 1533 | "country": "US", 1534 | "lat": "43.852902", 1535 | "lng": "-111.768415", 1536 | "phone_number": "208-356-3062", 1537 | "fax_number": "(208) 359-0555" 1538 | }, 1539 | { 1540 | "name": "Tool Service, Inc", 1541 | "address": "2912 S Highland Suite C", 1542 | "city": "Las Vegas", 1543 | "state": "NV", 1544 | "zip_code": "89109", 1545 | "country": "US", 1546 | "lat": "36.1369804", 1547 | "lng": "-115.1731085", 1548 | "phone_number": "702-734-9161", 1549 | "fax_number": "(702) 734-8330" 1550 | }, 1551 | { 1552 | "name": "Toolmart Inc.", 1553 | "address": "2750 Auto Park Way #13", 1554 | "city": "Escondido", 1555 | "state": "CA", 1556 | "zip_code": "92029", 1557 | "country": "US", 1558 | "lat": "33.1295479", 1559 | "lng": "-117.122506", 1560 | "phone_number": "760-480-1444 x 14", 1561 | "fax_number": "760-480-0411" 1562 | }, 1563 | { 1564 | "name": "Hahn Tool Repair", 1565 | "address": "2101 Main St", 1566 | "city": "Lewiston", 1567 | "state": "ID", 1568 | "zip_code": "83501", 1569 | "country": "US", 1570 | "lat": "46.416831", 1571 | "lng": "-117.0024579", 1572 | "phone_number": "208-743-1577", 1573 | "fax_number": "(208) 748-1592" 1574 | }, 1575 | { 1576 | "name": "Idaho Tool & Equpment", 1577 | "address": "452 Caldwell Blvd", 1578 | "city": "Nampa", 1579 | "state": "ID", 1580 | "zip_code": "83651", 1581 | "country": "US", 1582 | "lat": "43.594036", 1583 | "lng": "-116.584819", 1584 | "phone_number": "208-465-7533", 1585 | "fax_number": "208-467-4757" 1586 | }, 1587 | { 1588 | "name": "Rossiter Electric Motor", 1589 | "address": "1501 South Capital Ave", 1590 | "city": "Idaho Falls", 1591 | "state": "ID", 1592 | "zip_code": "83402", 1593 | "country": "US", 1594 | "lat": "43.4847993", 1595 | "lng": "-112.0469564", 1596 | "phone_number": "208-529-3665", 1597 | "fax_number": "(208) 529-4050" 1598 | }, 1599 | { 1600 | "name": "Allen's Tool Repair, Inc", 1601 | "address": "115 5th St West", 1602 | "city": "Billings", 1603 | "state": "MT", 1604 | "zip_code": "59101", 1605 | "country": "US", 1606 | "lat": "45.77185", 1607 | "lng": "-108.52731", 1608 | "phone_number": "406-248-3865", 1609 | "fax_number": "(406) 248-3741" 1610 | }, 1611 | { 1612 | "name": "Valley Tool Repair", 1613 | "address": "4131 B Power Inn Rd", 1614 | "city": "Sacramento", 1615 | "state": "CA", 1616 | "zip_code": "95826", 1617 | "country": "US", 1618 | "lat": "38.5377378", 1619 | "lng": "-121.4091257", 1620 | "phone_number": "916-737-6300", 1621 | "fax_number": "(916) 737-3234" 1622 | }, 1623 | { 1624 | "name": "Bill Wilson Machine Setup & Repair", 1625 | "address": "9 Viento Drive", 1626 | "city": "Irvine", 1627 | "state": "CA", 1628 | "zip_code": "92620", 1629 | "country": "US", 1630 | "lat": "33.7174883", 1631 | "lng": "-117.7639675", 1632 | "phone_number": "714 381 0585", 1633 | "fax_number": "714 389 1870" 1634 | }, 1635 | { 1636 | "name": "Tools For Living, Inc.", 1637 | "address": "1301 Grand Ave, Suite 5", 1638 | "city": "Glenwood Springs", 1639 | "state": "CO", 1640 | "zip_code": "81602", 1641 | "country": "US", 1642 | "lat": "39.540296", 1643 | "lng": "-107.325397", 1644 | "phone_number": "970-945-5760", 1645 | "fax_number": "970-945-5267" 1646 | }, 1647 | { 1648 | "name": "Humboldt Fasteners", 1649 | "address": "5100 Valley East Blvd", 1650 | "city": "Arcata", 1651 | "state": "CA", 1652 | "zip_code": "95521", 1653 | "country": "US", 1654 | "lat": "40.904303", 1655 | "lng": "-124.080685", 1656 | "phone_number": "707-822-0209", 1657 | "fax_number": "(707) 826-1851" 1658 | }, 1659 | { 1660 | "name": "Ideal Saw Works", 1661 | "address": "351 O St", 1662 | "city": "Fresno", 1663 | "state": "CA", 1664 | "zip_code": "93721", 1665 | "country": "US", 1666 | "lat": "36.731048", 1667 | "lng": "-119.778425", 1668 | "phone_number": "559-237-0809", 1669 | "fax_number": "(559) 237-8879" 1670 | }, 1671 | { 1672 | "name": "Mosch Electric Motors", 1673 | "address": "2513 17th St NE", 1674 | "city": "Black Eagle", 1675 | "state": "MT", 1676 | "zip_code": "59414", 1677 | "country": "US", 1678 | "lat": "47.5285347", 1679 | "lng": "-111.2789745", 1680 | "phone_number": "406-453-2481", 1681 | "fax_number": "(406) 453-2482" 1682 | }, 1683 | { 1684 | "name": "Western Tool Inc", 1685 | "address": "702 S Campbell", 1686 | "city": "Tucson", 1687 | "state": "AZ", 1688 | "zip_code": "85719", 1689 | "country": "US", 1690 | "lat": "32.21338", 1691 | "lng": "-110.944092", 1692 | "phone_number": "520-884-0504", 1693 | "fax_number": "(520) 623-9341" 1694 | }, 1695 | { 1696 | "name": "Glenn's Tool Service", 1697 | "address": "2149 E Indian School Road", 1698 | "city": "Phoenix", 1699 | "state": "AZ", 1700 | "zip_code": "85016", 1701 | "country": "US", 1702 | "lat": "33.4947755", 1703 | "lng": "-112.034951", 1704 | "phone_number": "602-264-6203", 1705 | "fax_number": "602-956-3787" 1706 | }, 1707 | { 1708 | "name": "Jim Klippel Tool Repair", 1709 | "address": "424 Laguna St", 1710 | "city": "Santa Barbara", 1711 | "state": "CA", 1712 | "zip_code": "93101", 1713 | "country": "US", 1714 | "lat": "34.4208171", 1715 | "lng": "-119.6905159", 1716 | "phone_number": "805-963-0020", 1717 | "fax_number": "805-966-5544" 1718 | }, 1719 | { 1720 | "name": "Northwest Tool Repair Corp", 1721 | "address": "2000 County Rd 204", 1722 | "city": "Craig", 1723 | "state": "CO", 1724 | "zip_code": "81625", 1725 | "country": "US", 1726 | "lat": "40.5707721", 1727 | "lng": "-107.6365406", 1728 | "phone_number": "970-824-9335", 1729 | "fax_number": "970-824-8466" 1730 | }, 1731 | { 1732 | "name": "Hellgate Tool Repair", 1733 | "address": "2006 North Ave West", 1734 | "city": "Missoula", 1735 | "state": "MT", 1736 | "zip_code": "59801", 1737 | "country": "US", 1738 | "lat": "46.8526697", 1739 | "lng": "-114.0287506", 1740 | "phone_number": "406-549-3067", 1741 | "fax_number": "(406) 721-0067" 1742 | }, 1743 | { 1744 | "name": "eReplacementParts.com", 1745 | "address": "7036 South High Tech Dr", 1746 | "city": "Midvale", 1747 | "state": "UT", 1748 | "zip_code": "84047", 1749 | "country": "US", 1750 | "lat": "40.623219", 1751 | "lng": "-111.897795", 1752 | "phone_number": "866-802-6383", 1753 | "fax_number": "801-676-0172" 1754 | }, 1755 | { 1756 | "name": "Apex Saw Works", 1757 | "address": "570 Kietzke Lane", 1758 | "city": "Reno", 1759 | "state": "NV", 1760 | "zip_code": "89502", 1761 | "country": "US", 1762 | "lat": "39.5224422", 1763 | "lng": "-119.789017", 1764 | "phone_number": "775-329-3076", 1765 | "fax_number": "(775) 329-8981" 1766 | }, 1767 | { 1768 | "name": "Timber Woodworking Mach", 1769 | "address": "935 E Southern Ave", 1770 | "city": "Mesa", 1771 | "state": "AZ", 1772 | "zip_code": "85204", 1773 | "country": "US", 1774 | "lat": "33.3929484", 1775 | "lng": "-111.8104828", 1776 | "phone_number": "480-926-2131", 1777 | "fax_number": "(480) 926-2857" 1778 | }, 1779 | { 1780 | "name": "Coeur D'Alene Power Tool", 1781 | "address": "451 W. Cherry Lane", 1782 | "city": "Coeur d'Alene", 1783 | "state": "ID", 1784 | "zip_code": "83815", 1785 | "country": "US", 1786 | "lat": "47.704523", 1787 | "lng": "-116.792424", 1788 | "phone_number": "208-667-1158", 1789 | "fax_number": "(208) 665-1818" 1790 | }, 1791 | { 1792 | "name": "Nevada Carbide & Cutter Inc", 1793 | "address": "2120 S Highland Ave #F", 1794 | "city": "Las Vegas", 1795 | "state": "NV", 1796 | "zip_code": "89102", 1797 | "country": "US", 1798 | "lat": "36.147566", 1799 | "lng": "-115.1670557", 1800 | "phone_number": "702-383-0800", 1801 | "fax_number": "702-383-6993" 1802 | }, 1803 | { 1804 | "name": "Powerhouse Distributing, LLC", 1805 | "address": "11011 I Street", 1806 | "city": "Omaha", 1807 | "state": "NE", 1808 | "zip_code": "68137", 1809 | "country": "US", 1810 | "lat": "41.215786", 1811 | "lng": "-96.084912", 1812 | "phone_number": "402-715-5999", 1813 | "fax_number": "402-715-5998" 1814 | }, 1815 | { 1816 | "name": "Warranty One", 1817 | "address": "1785 Fort Henry Dr", 1818 | "city": "Kinsport", 1819 | "state": "TN", 1820 | "zip_code": "37664", 1821 | "country": "US", 1822 | "lat": "36.5306068", 1823 | "lng": "-82.5257655", 1824 | "phone_number": "423-245-7303", 1825 | "fax_number": "423-245-4162" 1826 | }, 1827 | { 1828 | "name": "Blackwater River Tools", 1829 | "address": "2503 North V St", 1830 | "city": "Pensacola", 1831 | "state": "FL", 1832 | "zip_code": "32505", 1833 | "country": "US", 1834 | "lat": "30.438571", 1835 | "lng": "-87.2484829", 1836 | "phone_number": "850-470-9959", 1837 | "fax_number": "850-470-9668" 1838 | }, 1839 | { 1840 | "name": "Lee's Tools", 1841 | "address": "1924 N Long Beach Blvd", 1842 | "city": "Compton", 1843 | "state": "CA", 1844 | "zip_code": "90221", 1845 | "country": "US", 1846 | "lat": "33.9112742", 1847 | "lng": "-118.2089561", 1848 | "phone_number": "310-639-1900", 1849 | "fax_number": "310-639-1800" 1850 | }, 1851 | { 1852 | "name": "Lindl's Electric Motor Service, Inc.", 1853 | "address": "7016 E Hwy 22", 1854 | "city": "Panama City", 1855 | "state": "FL", 1856 | "zip_code": "32404-2315", 1857 | "country": "US", 1858 | "lat": "30.151933", 1859 | "lng": "-85.569002", 1860 | "phone_number": "850-871-1722", 1861 | "fax_number": "850-871-1726" 1862 | }, 1863 | { 1864 | "name": "Buena Tool Company", 1865 | "address": "433 Laguna St", 1866 | "city": "Barbara", 1867 | "state": "CA", 1868 | "zip_code": "93101", 1869 | "country": "US", 1870 | "lat": "34.4207408", 1871 | "lng": "-119.6908172", 1872 | "phone_number": "805-963-3885", 1873 | "fax_number": "805-966-2956" 1874 | }, 1875 | { 1876 | "name": "Weatherford", 1877 | "address": "900 shelby ln suite 4", 1878 | "city": "austin", 1879 | "state": "tx", 1880 | "zip_code": "78745", 1881 | "country": "US", 1882 | "lat": "30.2124745", 1883 | "lng": "-97.7582217", 1884 | "phone_number": "512-444-6765", 1885 | "fax_number": null 1886 | }, 1887 | { 1888 | "name": "Ideal Tool & Equipment Service, Inc.", 1889 | "address": "456 N 8th St", 1890 | "city": "Philadelphia", 1891 | "state": "PA", 1892 | "zip_code": "19123", 1893 | "country": "US", 1894 | "lat": "39.959903", 1895 | "lng": "-75.15194", 1896 | "phone_number": "215-925-0672", 1897 | "fax_number": "215-440-9786" 1898 | }, 1899 | { 1900 | "name": "A & T Power Tools Inc.", 1901 | "address": "515 East Jericho Turnpike", 1902 | "city": "Huntington Service", 1903 | "state": "NY", 1904 | "zip_code": "11746", 1905 | "country": "US", 1906 | "lat": "40.8414477", 1907 | "lng": "-73.304822", 1908 | "phone_number": "631-271-2141", 1909 | "fax_number": "631-271-2148" 1910 | }, 1911 | { 1912 | "name": "MATS Equipment Co., Inc.", 1913 | "address": "51 Pierce Ave", 1914 | "city": "West Carrollton", 1915 | "state": "OH", 1916 | "zip_code": "45449", 1917 | "country": "US", 1918 | "lat": "39.6704113", 1919 | "lng": "-84.2499211", 1920 | "phone_number": "937-859-8057", 1921 | "fax_number": "937-859-6505" 1922 | }, 1923 | { 1924 | "name": "Parr's Hardware", 1925 | "address": "2618 W Moholt Dr", 1926 | "city": "EauClaire", 1927 | "state": "WI", 1928 | "zip_code": "54703", 1929 | "country": "US", 1930 | "lat": "44.8238403", 1931 | "lng": "-91.5455682", 1932 | "phone_number": "715-835-9929", 1933 | "fax_number": "715-835-9929" 1934 | }, 1935 | { 1936 | "name": "K Tool & Fire LLC", 1937 | "address": "1309 E State Road", 1938 | "city": "LaPorte", 1939 | "state": "IN", 1940 | "zip_code": "46350", 1941 | "country": "US", 1942 | "lat": "41.609355", 1943 | "lng": "-86.727708", 1944 | "phone_number": "219-262-3557", 1945 | "fax_number": null 1946 | }, 1947 | { 1948 | "name": "Advanced Fastening Supply", 1949 | "address": "2201 Advance Rd", 1950 | "city": "Madison", 1951 | "state": "WI", 1952 | "zip_code": "53718", 1953 | "country": "US", 1954 | "lat": "43.065882", 1955 | "lng": "-89.3029233", 1956 | "phone_number": "608-441-1950", 1957 | "fax_number": "608-441-1952" 1958 | }, 1959 | { 1960 | "name": "Ornamental Products Tool & Supply Inc.", 1961 | "address": "5105 Pearl Rd", 1962 | "city": "Cleveland", 1963 | "state": "OH", 1964 | "zip_code": "44129", 1965 | "country": "US", 1966 | "lat": "41.420125", 1967 | "lng": "-81.725702", 1968 | "phone_number": "216-749-5050", 1969 | "fax_number": "216-749-7677" 1970 | }, 1971 | { 1972 | "name": "Acme Tool Repair, Inc.", 1973 | "address": "452 Moore Lane", 1974 | "city": "Healdsburg", 1975 | "state": "CA", 1976 | "zip_code": "95448", 1977 | "country": "US", 1978 | "lat": "38.6121318", 1979 | "lng": "-122.8749529", 1980 | "phone_number": "707-431-0444", 1981 | "fax_number": "707-431-0461" 1982 | }, 1983 | { 1984 | "name": "Stronghold Supply Inc", 1985 | "address": "12189 Balls Ford Road", 1986 | "city": "Manassas", 1987 | "state": "VA", 1988 | "zip_code": "20109", 1989 | "country": "US", 1990 | "lat": "38.793007", 1991 | "lng": "-77.556653", 1992 | "phone_number": "703-257-5910", 1993 | "fax_number": null 1994 | }, 1995 | { 1996 | "name": "Industrial Tool & Tool", 1997 | "address": "839 N Main St", 1998 | "city": "Logan", 1999 | "state": "UT", 2000 | "zip_code": "84321", 2001 | "country": "US", 2002 | "lat": "41.747101", 2003 | "lng": "-111.835006", 2004 | "phone_number": "435-753-4256", 2005 | "fax_number": "435-753-7429" 2006 | }, 2007 | { 2008 | "name": "Wolfe Machinery Co.", 2009 | "address": "6300 NW Beaver Dr", 2010 | "city": "Johnston", 2011 | "state": "IA", 2012 | "zip_code": "50131", 2013 | "country": "US", 2014 | "lat": "41.675431", 2015 | "lng": "-93.681242", 2016 | "phone_number": "515-270-2766", 2017 | "fax_number": "515-270-0628" 2018 | }, 2019 | { 2020 | "name": "Reid's Appliance Service Inc.", 2021 | "address": "906 S Georgia", 2022 | "city": "Amarillo", 2023 | "state": "TX", 2024 | "zip_code": "79102", 2025 | "country": "US", 2026 | "lat": "35.2059546", 2027 | "lng": "-101.8663591", 2028 | "phone_number": "806-373-8812", 2029 | "fax_number": "806-371-0844" 2030 | }, 2031 | { 2032 | "name": "Craig & Green Power Tools Service", 2033 | "address": "1595 fairfax ave", 2034 | "city": "San Francisco", 2035 | "state": "CA", 2036 | "zip_code": "94124", 2037 | "country": "US", 2038 | "lat": "37.742024", 2039 | "lng": "-122.388968", 2040 | "phone_number": "415-642-8698", 2041 | "fax_number": "415-285-1455" 2042 | }, 2043 | { 2044 | "name": "F.S.M. Tools & Supply", 2045 | "address": "255 N Ulrich St", 2046 | "city": "Annville", 2047 | "state": "PA", 2048 | "zip_code": "17003", 2049 | "country": "US", 2050 | "lat": "40.3321712", 2051 | "lng": "-76.5103081", 2052 | "phone_number": "717-867-5359", 2053 | "fax_number": "717-867-5362" 2054 | }, 2055 | { 2056 | "name": "Philipps Bros. Supply, Inc", 2057 | "address": "2525 Kensington Ave", 2058 | "city": "Amherst", 2059 | "state": "NY", 2060 | "zip_code": "14226", 2061 | "country": "US", 2062 | "lat": "42.957929", 2063 | "lng": "-78.76823", 2064 | "phone_number": "716-839-4800", 2065 | "fax_number": "716-839-4051" 2066 | }, 2067 | { 2068 | "name": "A&A Power Tool Repair Inc.", 2069 | "address": "10 Nihan Dr", 2070 | "city": "St. Catharines", 2071 | "state": "ON", 2072 | "zip_code": "L2N 1L1", 2073 | "country": "Canada", 2074 | "lat": "43.1832315", 2075 | "lng": "-79.2490312", 2076 | "phone_number": "905-646-4881", 2077 | "fax_number": "905-646-7271" 2078 | }, 2079 | { 2080 | "name": "Abbotsford Tool Centre", 2081 | "address": "33723Aï¾ King Road", 2082 | "city": "Abbotsford", 2083 | "state": "BC", 2084 | "zip_code": "V2S 7M9", 2085 | "country": "Canada", 2086 | "lat": "49.0312341", 2087 | "lng": "-122.2935659", 2088 | "phone_number": "604-859-9023", 2089 | "fax_number": "604-859-4303" 2090 | }, 2091 | { 2092 | "name": "Central Electric Motor Rewind Ltd. ", 2093 | "address": "104 - 1765 Springfield Road", 2094 | "city": "Kelowna", 2095 | "state": "BC", 2096 | "zip_code": "V1Y 5V5", 2097 | "country": "Canada", 2098 | "lat": "49.8768138", 2099 | "lng": "-119.4571677", 2100 | "phone_number": "250-860-4415", 2101 | "fax_number": "250-862-9575" 2102 | }, 2103 | { 2104 | "name": "Gem Electric Motor Service Inc.", 2105 | "address": "151 Wilson Avenue", 2106 | "city": "Timmins", 2107 | "state": "ON", 2108 | "zip_code": "P4N 2T2", 2109 | "country": "Canada", 2110 | "lat": "48.4753593", 2111 | "lng": "-81.3396121", 2112 | "phone_number": "705-264-0668", 2113 | "fax_number": "705-264-0669" 2114 | }, 2115 | { 2116 | "name": "J.Sirois Electrique Inc", 2117 | "address": "2203, rue Roussel", 2118 | "city": "Chicoutimi", 2119 | "state": "QC", 2120 | "zip_code": "G7G 1W4", 2121 | "country": "Canada", 2122 | "lat": "48.4385048", 2123 | "lng": "-71.0598266", 2124 | "phone_number": "418-543-3308 x 231", 2125 | "fax_number": null 2126 | }, 2127 | { 2128 | "name": "KC's Repair Center", 2129 | "address": "156 Blandford St", 2130 | "city": "Innerkip", 2131 | "state": "ON", 2132 | "zip_code": "N0J 1M0", 2133 | "country": "Canada", 2134 | "lat": "43.2081174", 2135 | "lng": "-80.6973356", 2136 | "phone_number": "519-469-3351", 2137 | "fax_number": "519-469-9224" 2138 | }, 2139 | { 2140 | "name": "Minis Moteurs L'Assomption", 2141 | "address": "1510 Boul. L'Ange-Gardien Nord", 2142 | "city": "L'Assomption", 2143 | "state": "QC", 2144 | "zip_code": "J5W 5G9", 2145 | "country": "Canada", 2146 | "lat": "45.8483444", 2147 | "lng": "-73.426364", 2148 | "phone_number": "450-589-4700", 2149 | "fax_number": null 2150 | }, 2151 | { 2152 | "name": "Quality Tool Repair Ltd.", 2153 | "address": "11420 156 Street", 2154 | "city": "Edmonton", 2155 | "state": "AB", 2156 | "zip_code": "T5M 3N2", 2157 | "country": "Canada", 2158 | "lat": "53.5636547", 2159 | "lng": "-113.5905343", 2160 | "phone_number": "780-702-1686", 2161 | "fax_number": "780-702-1689" 2162 | }, 2163 | { 2164 | "name": "Steve's Electric Motor Service Ltd", 2165 | "address": "605 Bridge Bathurst", 2166 | "city": "Bathurst", 2167 | "state": "NB", 2168 | "zip_code": "E2A 1W9", 2169 | "country": "Canada", 2170 | "lat": "47.6128366", 2171 | "lng": "-65.6344978", 2172 | "phone_number": "506-548-4681", 2173 | "fax_number": null 2174 | }, 2175 | { 2176 | "name": "Tancot Equipment & Tools", 2177 | "address": "21692 122nd Ave", 2178 | "city": "Maple Ridge", 2179 | "state": "BC", 2180 | "zip_code": "V2X 3W9", 2181 | "country": "Canada", 2182 | "lat": "49.2248104", 2183 | "lng": "-122.6209454", 2184 | "phone_number": "604-454-8844", 2185 | "fax_number": "888-858-0419" 2186 | }, 2187 | { 2188 | "name": "Tony's Power Tool and Vacuum Service", 2189 | "address": "59 Bell Farm Road Unit #4", 2190 | "city": "Barrie", 2191 | "state": "ON", 2192 | "zip_code": "L4M 5G1", 2193 | "country": "Canada", 2194 | "lat": "44.4088681", 2195 | "lng": "-79.680256", 2196 | "phone_number": "705-726-1142", 2197 | "fax_number": "705-726-1142" 2198 | }, 2199 | { 2200 | "name": "United Motor Electric", 2201 | "address": "1234 Scarth Street", 2202 | "city": "Regina", 2203 | "state": "SK", 2204 | "zip_code": "S4R 2E5", 2205 | "country": "Canada", 2206 | "lat": "50.4591831", 2207 | "lng": "-104.611003", 2208 | "phone_number": "306-352-9744", 2209 | "fax_number": "306-352-7410" 2210 | }, 2211 | { 2212 | "name": "Lawrence Electric Motor Repair", 2213 | "address": "720 Confederation St", 2214 | "city": "Sarnia", 2215 | "state": "ON", 2216 | "zip_code": "N7T 2C9", 2217 | "country": "Canada", 2218 | "lat": "42.9608473", 2219 | "lng": "-82.3859218", 2220 | "phone_number": "519-344-4112", 2221 | "fax_number": "519-337-9619" 2222 | }, 2223 | { 2224 | "name": "Active Tool Repair", 2225 | "address": "955 Barton St E.", 2226 | "city": "Hamilton", 2227 | "state": "ON", 2228 | "zip_code": "L8L 3C4", 2229 | "country": "Canada", 2230 | "lat": "43.2531295", 2231 | "lng": "-79.8228757", 2232 | "phone_number": "905-545-7646", 2233 | "fax_number": "905-545-5415" 2234 | }, 2235 | { 2236 | "name": "The Fernand Group", 2237 | "address": "83 Fulwell Cr", 2238 | "city": "Toronto", 2239 | "state": "ON", 2240 | "zip_code": "M3J 1Y4", 2241 | "country": "Canada", 2242 | "lat": "43.750994", 2243 | "lng": "-79.5037215", 2244 | "phone_number": "416-631-0722", 2245 | "fax_number": "416-631-8082" 2246 | }, 2247 | { 2248 | "name": "Murray's Sharpening & Tool Repair", 2249 | "address": "1190 2nd Ave E", 2250 | "city": "Owen sound", 2251 | "state": "ON", 2252 | "zip_code": "N4K 2H9", 2253 | "country": "Canada", 2254 | "lat": "44.571687", 2255 | "lng": "-80.9408838", 2256 | "phone_number": "519-376-2495", 2257 | "fax_number": "519-376-2635" 2258 | }, 2259 | { 2260 | "name": "Solar Electric Repairs 1981 LTD", 2261 | "address": "20A Cliff St ï¾ ", 2262 | "city": "Nanaimo", 2263 | "state": "BC", 2264 | "zip_code": "V9R 5E5", 2265 | "country": "Canada", 2266 | "lat": "49.1692901", 2267 | "lng": "-123.9392533", 2268 | "phone_number": "250-753-1731", 2269 | "fax_number": "250-753-0983" 2270 | }, 2271 | { 2272 | "name": "Northern Machine and Repair", 2273 | "address": "526 Welham Rd Unit #6", 2274 | "city": "Bararie", 2275 | "state": "ON", 2276 | "zip_code": "L4N 8Z7", 2277 | "country": "Canada", 2278 | "lat": "44.3426128", 2279 | "lng": "-79.6700856", 2280 | "phone_number": "705-734-1073", 2281 | "fax_number": "705-734-0992" 2282 | }, 2283 | { 2284 | "name": "Quality Tool Repair Ltd.", 2285 | "address": "311A 47th St East", 2286 | "city": "Saskatoon", 2287 | "state": "SK", 2288 | "zip_code": "S7K 5H2", 2289 | "country": "Canada", 2290 | "lat": "52.1663351", 2291 | "lng": "-106.6660858", 2292 | "phone_number": "306-244-9981", 2293 | "fax_number": "306-244-9985" 2294 | }, 2295 | { 2296 | "name": "Gateway Professional Tools", 2297 | "address": "790B Cassells St", 2298 | "city": "North Bay", 2299 | "state": "ON", 2300 | "zip_code": "P1B 4A4", 2301 | "country": "Canada", 2302 | "lat": "46.3157565", 2303 | "lng": "-79.4610804", 2304 | "phone_number": "705-495-4906", 2305 | "fax_number": "705-495-6167" 2306 | }, 2307 | { 2308 | "name": "Baril Electrique ", 2309 | "address": "10 Boul Labbe S", 2310 | "city": "Victoriaville", 2311 | "state": "QC", 2312 | "zip_code": "G6S 1B5", 2313 | "country": "Canada", 2314 | "lat": "46.0657821", 2315 | "lng": "-71.9394852", 2316 | "phone_number": "819-752-4480", 2317 | "fax_number": "819-795-3314" 2318 | }, 2319 | { 2320 | "name": "Outillage Granby", 2321 | "address": "303 Robinson Sud", 2322 | "city": "Granby", 2323 | "state": "QC", 2324 | "zip_code": "J2G 7M7", 2325 | "country": "Canada", 2326 | "lat": "45.3978107", 2327 | "lng": "-72.7409843", 2328 | "phone_number": "450-378-2499", 2329 | "fax_number": "450-991-2499" 2330 | }, 2331 | { 2332 | "name": "Troy Electric", 2333 | "address": "1-3131 Delta Street", 2334 | "city": "Victoria", 2335 | "state": "BC", 2336 | "zip_code": "V8Z 1A6", 2337 | "country": "Canada", 2338 | "lat": "48.4458286", 2339 | "lng": "-123.3751791", 2340 | "phone_number": "250-382-7442", 2341 | "fax_number": null 2342 | }, 2343 | { 2344 | "name": "Sandham Electric Ltd", 2345 | "address": "337 St Paul St", 2346 | "city": "St. Catharines", 2347 | "state": "ON", 2348 | "zip_code": "L2R 3N1", 2349 | "country": "Canada", 2350 | "lat": "43.1600631", 2351 | "lng": "-79.2419685", 2352 | "phone_number": "905-682-9948", 2353 | "fax_number": null 2354 | }, 2355 | { 2356 | "name": "Seaboard Industrial Supply Co.Ltd.", 2357 | "address": "15 School Street", 2358 | "city": "Sydney", 2359 | "state": "NS", 2360 | "zip_code": "B1S 3G1", 2361 | "country": "Canada", 2362 | "lat": "46.1301258", 2363 | "lng": "-60.1952189", 2364 | "phone_number": "902-564-0400", 2365 | "fax_number": "902-539-1090" 2366 | }, 2367 | { 2368 | "name": "Clinique d'outillage ", 2369 | "address": "2427 ave du pont sud", 2370 | "city": "Alma", 2371 | "state": "QC", 2372 | "zip_code": "G8B 5V2", 2373 | "country": "Canada", 2374 | "lat": "48.5167205", 2375 | "lng": "-71.6562444", 2376 | "phone_number": "418-668-3607", 2377 | "fax_number": "418-668-3181" 2378 | }, 2379 | { 2380 | "name": "Rapid Tool Repair & Sales", 2381 | "address": "Unit 3 - 7551 Vantage Way", 2382 | "city": "Delta", 2383 | "state": "BC", 2384 | "zip_code": "V4G 1C9", 2385 | "country": "Canada", 2386 | "lat": "49.1387275", 2387 | "lng": "-123.0142702", 2388 | "phone_number": "604-940-8603", 2389 | "fax_number": "604-940-8614" 2390 | }, 2391 | { 2392 | "name": "Equipment Lavigne Inc.", 2393 | "address": "3095 Des Ormeaux", 2394 | "city": "Montreal", 2395 | "state": "QC", 2396 | "zip_code": "H1L 4Y1", 2397 | "country": "Canada", 2398 | "lat": "45.6039604", 2399 | "lng": "-73.5277651", 2400 | "phone_number": "514-351-6004, ext 110", 2401 | "fax_number": "514-352-2018" 2402 | }, 2403 | { 2404 | "name": "Starlight Tool Services, Ltd.", 2405 | "address": "4655 Crescent Rd", 2406 | "city": "Nelson", 2407 | "state": "BC", 2408 | "zip_code": "V1L 6N3", 2409 | "country": "Canada", 2410 | "lat": "49.604593", 2411 | "lng": "-117.1321037", 2412 | "phone_number": "250-825-3428", 2413 | "fax_number": "250-825-3429" 2414 | }, 2415 | { 2416 | "name": "Appliance Medic", 2417 | "address": "766 Tecumseh Rd E", 2418 | "city": "Windsor", 2419 | "state": "ON", 2420 | "zip_code": "N8X 2S2", 2421 | "country": "Canada", 2422 | "lat": "42.2987864", 2423 | "lng": "-83.0138587", 2424 | "phone_number": "519-292-1500", 2425 | "fax_number": "519-292-1590" 2426 | }, 2427 | { 2428 | "name": "Tool Depot/Tool Doktor", 2429 | "address": "2715 E 10th St", 2430 | "city": "Sioux Falls", 2431 | "state": "SD", 2432 | "zip_code": "57103", 2433 | "country": "US", 2434 | "lat": "43.546631", 2435 | "lng": "-96.6924867", 2436 | "phone_number": "605-334-9700", 2437 | "fax_number": null 2438 | }, 2439 | { 2440 | "name": "Mid-Michigan Repair Service Inc", 2441 | "address": "680 S Poseyville Rd", 2442 | "city": "Midland", 2443 | "state": "MI", 2444 | "zip_code": "48640", 2445 | "country": "US", 2446 | "lat": "43.5937517", 2447 | "lng": "-84.2476715", 2448 | "phone_number": "989-835-6014", 2449 | "fax_number": null 2450 | }, 2451 | { 2452 | "name": "Kay Dee Air and Electric Tool Repair", 2453 | "address": "5466 Lake Ct", 2454 | "city": "Cleveland", 2455 | "state": "OH", 2456 | "zip_code": "44114", 2457 | "country": "US", 2458 | "lat": "41.526924", 2459 | "lng": "-81.653128", 2460 | "phone_number": "216-881-2565", 2461 | "fax_number": null 2462 | }, 2463 | { 2464 | "name": "Tool Depot/Tool Doktor", 2465 | "address": "1510 Dave Ave", 2466 | "city": "Sioux City", 2467 | "state": "IA", 2468 | "zip_code": "51101", 2469 | "country": "US", 2470 | "lat": "43.5329013", 2471 | "lng": "-96.6727604", 2472 | "phone_number": "712-293-0274", 2473 | "fax_number": null 2474 | }, 2475 | { 2476 | "name": "Bath Industrial Sales", 2477 | "address": "56 New Meadows Rd", 2478 | "city": "West Bath", 2479 | "state": "ME", 2480 | "zip_code": "4530", 2481 | "country": "US", 2482 | "lat": "43.912679", 2483 | "lng": "-69.866342", 2484 | "phone_number": "207-443-9754", 2485 | "fax_number": null 2486 | }, 2487 | { 2488 | "name": "American Industrial Supplies and Tool Repair, Inc.", 2489 | "address": "1101-A West Business 83", 2490 | "city": "Pharr", 2491 | "state": "TX", 2492 | "zip_code": "78577", 2493 | "country": "US", 2494 | "lat": "26.1972773", 2495 | "lng": "-98.1979629", 2496 | "phone_number": "956-702-4410", 2497 | "fax_number": null 2498 | }, 2499 | { 2500 | "name": "A A Casey Company/Gator Repair Co.", 2501 | "address": "5124 Nebraska Ave.", 2502 | "city": "Tampa", 2503 | "state": "FL", 2504 | "zip_code": "33603", 2505 | "country": "US", 2506 | "lat": "27.9938532", 2507 | "lng": "-82.4516137", 2508 | "phone_number": "813-234-8831", 2509 | "fax_number": null 2510 | }, 2511 | { 2512 | "name": "Northern Tool and Equipment Store 411", 2513 | "address": "4969 Miller Trunk Hwy", 2514 | "city": "Duluth", 2515 | "state": "MN", 2516 | "zip_code": "55811", 2517 | "country": "US", 2518 | "lat": "46.8329865", 2519 | "lng": "-92.2043143", 2520 | "phone_number": "218-729-0700", 2521 | "fax_number": "218-729-0678" 2522 | }, 2523 | { 2524 | "name": "Northern Tool and Equipment Store 460", 2525 | "address": "4701 Agassiz Crossing St", 2526 | "city": "Fargo", 2527 | "state": "ND", 2528 | "zip_code": "58104", 2529 | "country": "US", 2530 | "lat": "46.845976", 2531 | "lng": "-96.866212", 2532 | "phone_number": "701-893-3088", 2533 | "fax_number": "701-893-3099" 2534 | }, 2535 | { 2536 | "name": "Northern Tool and Equipment Store 403", 2537 | "address": "2717 Hwy 14 W.", 2538 | "city": "Rochester", 2539 | "state": "MN", 2540 | "zip_code": "55901", 2541 | "country": "US", 2542 | "lat": "44.034819", 2543 | "lng": "-92.503124", 2544 | "phone_number": "507-282-5559", 2545 | "fax_number": "507-282-1289" 2546 | }, 2547 | { 2548 | "name": "Northern Tool and Equipment Store 455", 2549 | "address": "2601 S. Louise Ave., Ste 300", 2550 | "city": "Sioux Falls", 2551 | "state": "SD", 2552 | "zip_code": "57106", 2553 | "country": "US", 2554 | "lat": "43.5190906", 2555 | "lng": "-96.8458204", 2556 | "phone_number": "605-373-5885", 2557 | "fax_number": "605-373-5888" 2558 | }, 2559 | { 2560 | "name": "Northern Tool and Equipment Store 416", 2561 | "address": "230 2nd St. S.", 2562 | "city": "Waite Park", 2563 | "state": "MN", 2564 | "zip_code": "56387", 2565 | "country": "US", 2566 | "lat": "45.5497351", 2567 | "lng": "-94.2168722", 2568 | "phone_number": "320-258-2230", 2569 | "fax_number": "320-258-2233" 2570 | }, 2571 | { 2572 | "name": "Northern Tool and Equipment Store 432", 2573 | "address": "4365 Merle Hay Rd", 2574 | "city": "Des Moines", 2575 | "state": "IA", 2576 | "zip_code": "50310", 2577 | "country": "US", 2578 | "lat": "41.64068", 2579 | "lng": "-93.695836", 2580 | "phone_number": "515-252-1516", 2581 | "fax_number": "515-252-0938" 2582 | }, 2583 | { 2584 | "name": "Northern Tool and Equipment Store 445", 2585 | "address": "2118 W. Beltline Hwy", 2586 | "city": "Madison", 2587 | "state": "WI", 2588 | "zip_code": "53713", 2589 | "country": "US", 2590 | "lat": "43.036961", 2591 | "lng": "-89.4143579", 2592 | "phone_number": "608-234-5338", 2593 | "fax_number": "608-234-5343" 2594 | }, 2595 | { 2596 | "name": "Northern Tool and Equipment Store 465", 2597 | "address": "7202 Pacific St", 2598 | "city": "Omaha", 2599 | "state": "NE", 2600 | "zip_code": "68114", 2601 | "country": "US", 2602 | "lat": "41.249029", 2603 | "lng": "-96.0244824", 2604 | "phone_number": "402-255 6766", 2605 | "fax_number": "402-255 6772" 2606 | }, 2607 | { 2608 | "name": "Northern Tool and Equipment Store 480", 2609 | "address": "4055 Veterans Memorial Hwy", 2610 | "city": "St Peters", 2611 | "state": "MO", 2612 | "zip_code": "63376", 2613 | "country": "US", 2614 | "lat": "38.7874699", 2615 | "lng": "-90.6298922", 2616 | "phone_number": "636-486-4641", 2617 | "fax_number": "636-486-4599" 2618 | }, 2619 | { 2620 | "name": "Northern Tool and Equipment Store 604", 2621 | "address": "18100 S. Dixie Hwy", 2622 | "city": "Cutler Ridge", 2623 | "state": "FL", 2624 | "zip_code": "33157", 2625 | "country": "US", 2626 | "lat": "25.6013266", 2627 | "lng": "-80.3533177", 2628 | "phone_number": "305-251-9261", 2629 | "fax_number": "305-256-9575" 2630 | }, 2631 | { 2632 | "name": "Northern Tool and Equipment Store 630", 2633 | "address": "10000 Atlantic Blvd.", 2634 | "city": "Jacksonville", 2635 | "state": "FL", 2636 | "zip_code": "32225", 2637 | "country": "US", 2638 | "lat": "30.3224934", 2639 | "lng": "-81.5408138", 2640 | "phone_number": "904-222-8124", 2641 | "fax_number": "904-222-8128" 2642 | }, 2643 | { 2644 | "name": "Northern Tool and Equipment Store 610", 2645 | "address": "35555 W. New Haven Ave.", 2646 | "city": "Melbourne", 2647 | "state": "FL", 2648 | "zip_code": "32904", 2649 | "country": "US", 2650 | "lat": "28.0789524", 2651 | "lng": "-80.6710275", 2652 | "phone_number": "321-952-4916", 2653 | "fax_number": "321-984-4414" 2654 | }, 2655 | { 2656 | "name": "Northern Tool and Equipment Store 608", 2657 | "address": "14571 N. Cleveland Ave., N.", 2658 | "city": "Fort Myers", 2659 | "state": "FL", 2660 | "zip_code": "33903", 2661 | "country": "US", 2662 | "lat": "26.6760309", 2663 | "lng": "-81.898786", 2664 | "phone_number": "239-652-1009", 2665 | "fax_number": "239-652-9098" 2666 | }, 2667 | { 2668 | "name": "Northern Tool and Equipment Store 616", 2669 | "address": "167 SR 436", 2670 | "city": "Fern Park", 2671 | "state": "FL", 2672 | "zip_code": "32730", 2673 | "country": "US", 2674 | "lat": "28.65833", 2675 | "lng": "-81.339152", 2676 | "phone_number": "321-304-2599", 2677 | "fax_number": "321-304-2797" 2678 | }, 2679 | { 2680 | "name": "Northern Tool and Equipment Store 611", 2681 | "address": "3970 SW 3rd St., Unit 100", 2682 | "city": "Ocala", 2683 | "state": "FL", 2684 | "zip_code": "34474", 2685 | "country": "US", 2686 | "lat": "29.183808", 2687 | "lng": "-82.186955", 2688 | "phone_number": "352-484-1827", 2689 | "fax_number": "352-484-1830" 2690 | }, 2691 | { 2692 | "name": "Northern Tool and Equipment Store 615", 2693 | "address": "795 W. Sand Lake Rd.", 2694 | "city": "Orlando", 2695 | "state": "FL", 2696 | "zip_code": "32809", 2697 | "country": "US", 2698 | "lat": "28.4503334", 2699 | "lng": "-81.4009246", 2700 | "phone_number": "407-856-5612", 2701 | "fax_number": "407-856-5592" 2702 | }, 2703 | { 2704 | "name": "Northern Tool and Equipment Store 620", 2705 | "address": "3906A W. Hillsbourough Ave.", 2706 | "city": "Tampa", 2707 | "state": "FL", 2708 | "zip_code": "33614", 2709 | "country": "US", 2710 | "lat": "27.9959126", 2711 | "lng": "-82.5087003", 2712 | "phone_number": "813-878-0120", 2713 | "fax_number": "813-876-6189" 2714 | }, 2715 | { 2716 | "name": "Northern Tool and Equipment Store 619", 2717 | "address": "44091 US Hwy 19N, Bldg C, Unit 21", 2718 | "city": "Tarpon Springs", 2719 | "state": "FL", 2720 | "zip_code": "34689", 2721 | "country": "US", 2722 | "lat": "28.170817", 2723 | "lng": "-82.7404839", 2724 | "phone_number": "727-493-0400", 2725 | "fax_number": "727-493-0403" 2726 | }, 2727 | { 2728 | "name": "Northern Tool and Equipment Store 550", 2729 | "address": "7658 Lee Hwy", 2730 | "city": "Chattanooga", 2731 | "state": "TN", 2732 | "zip_code": "37421", 2733 | "country": "US", 2734 | "lat": "35.0599", 2735 | "lng": "-85.133976", 2736 | "phone_number": "423-510-0646", 2737 | "fax_number": "423-510-9226" 2738 | }, 2739 | { 2740 | "name": "Northern Tool and Equipment Store 522", 2741 | "address": "1242 Woodruff Rd.", 2742 | "city": "Greenville", 2743 | "state": "SC", 2744 | "zip_code": "29607", 2745 | "country": "US", 2746 | "lat": "34.8241683", 2747 | "lng": "-82.2928092", 2748 | "phone_number": "864-288-3402", 2749 | "fax_number": "864-288-5604" 2750 | }, 2751 | { 2752 | "name": "Northern Tool and Equipment Store 640", 2753 | "address": "5465 I-55 N, Ste E", 2754 | "city": "Jackson", 2755 | "state": "MS", 2756 | "zip_code": "39206", 2757 | "country": "US", 2758 | "lat": "32.377482", 2759 | "lng": "-90.149231", 2760 | "phone_number": "601-714-1240", 2761 | "fax_number": "601-812-5224" 2762 | }, 2763 | { 2764 | "name": "Northern Tool and Equipment Store 523", 2765 | "address": "4040 Fernandina Rd.", 2766 | "city": " Columbia", 2767 | "state": "SC", 2768 | "zip_code": "29210", 2769 | "country": "US", 2770 | "lat": "34.0685835", 2771 | "lng": "-81.1389453", 2772 | "phone_number": "803-551-5808", 2773 | "fax_number": "803-551-5812" 2774 | }, 2775 | { 2776 | "name": "Northern Tool and Equipment Store 514", 2777 | "address": "3502 Bragg Blvd.", 2778 | "city": "Fayetteville", 2779 | "state": "NC", 2780 | "zip_code": "28303", 2781 | "country": "US", 2782 | "lat": "35.079693", 2783 | "lng": "-78.938704", 2784 | "phone_number": "910-487-2466", 2785 | "fax_number": "910-487-6438" 2786 | }, 2787 | { 2788 | "name": "Northern Tool and Equipment Store 504", 2789 | "address": "12527 E. Independence Blvd.", 2790 | "city": "Matthews", 2791 | "state": "NC", 2792 | "zip_code": "28105", 2793 | "country": "US", 2794 | "lat": "35.103934", 2795 | "lng": "-80.6808099", 2796 | "phone_number": "704-847-1033", 2797 | "fax_number": "704-893-8085" 2798 | }, 2799 | { 2800 | "name": "Northern Tool and Equipment Store 526", 2801 | "address": "5900 Rivers Ave., Ste A", 2802 | "city": "N. Charleston", 2803 | "state": "SC", 2804 | "zip_code": "29406", 2805 | "country": "US", 2806 | "lat": "32.9027423", 2807 | "lng": "-80.0191145", 2808 | "phone_number": "843-747-7578", 2809 | "fax_number": "843-747-7706" 2810 | }, 2811 | { 2812 | "name": "Northern Tool and Equipment Store 524", 2813 | "address": "2146 Stanton Dr.", 2814 | "city": "Rock Hill", 2815 | "state": "SC", 2816 | "zip_code": "29731", 2817 | "country": "US", 2818 | "lat": "34.9427568", 2819 | "lng": "-80.972777", 2820 | "phone_number": "803-329-1716", 2821 | "fax_number": "803-329-4633" 2822 | }, 2823 | { 2824 | "name": "Northern Tool and Equipment Store 518", 2825 | "address": "2945 Eric Ln.", 2826 | "city": "Burlington", 2827 | "state": "NC", 2828 | "zip_code": "27215", 2829 | "country": "US", 2830 | "lat": "36.0674218", 2831 | "lng": "-79.4811616", 2832 | "phone_number": "336-506-6837", 2833 | "fax_number": "336-506-6841" 2834 | }, 2835 | { 2836 | "name": "Northern Tool and Equipment Store 512", 2837 | "address": "1297-A Buck Jones Rd.", 2838 | "city": " Raleigh", 2839 | "state": "NC", 2840 | "zip_code": "27606", 2841 | "country": "US", 2842 | "lat": "35.7658711", 2843 | "lng": "-78.7420279", 2844 | "phone_number": "919-388-9960", 2845 | "fax_number": "919-338-9965" 2846 | }, 2847 | { 2848 | "name": "Northern Tool and Equipment Store 537", 2849 | "address": "2330 Mercury Blvd", 2850 | "city": "Hampton", 2851 | "state": "VA", 2852 | "zip_code": "23666", 2853 | "country": "US", 2854 | "lat": "37.0377437", 2855 | "lng": "-76.4075268", 2856 | "phone_number": "757-825 3210", 2857 | "fax_number": "757-825 3213" 2858 | }, 2859 | { 2860 | "name": "Northern Tool and Equipment Store 536", 2861 | "address": "2317 Wards Rd.", 2862 | "city": " Lynchburg", 2863 | "state": "VA", 2864 | "zip_code": "24502", 2865 | "country": "US", 2866 | "lat": "37.367403", 2867 | "lng": "-79.184235", 2868 | "phone_number": "434-237-0395", 2869 | "fax_number": "434-832-8100" 2870 | }, 2871 | { 2872 | "name": "Northern Tool and Equipment Store 538", 2873 | "address": "1120 Military Hwy", 2874 | "city": "Norfolk", 2875 | "state": "VA", 2876 | "zip_code": "23502", 2877 | "country": "US", 2878 | "lat": "36.859787", 2879 | "lng": "-76.20848", 2880 | "phone_number": "757-552-0726", 2881 | "fax_number": "757-554-0558" 2882 | }, 2883 | { 2884 | "name": "Northern Tool and Equipment Store 532", 2885 | "address": "8400 Midlothian Tpke", 2886 | "city": "Richmond", 2887 | "state": "VA", 2888 | "zip_code": "23235", 2889 | "country": "US", 2890 | "lat": "37.4961139", 2891 | "lng": "-77.5528112", 2892 | "phone_number": "804-560-0187", 2893 | "fax_number": "804-560-0191" 2894 | }, 2895 | { 2896 | "name": "Northern Tool and Equipment Store 535", 2897 | "address": "301 Electric Rd.", 2898 | "city": "Salem", 2899 | "state": "VA", 2900 | "zip_code": "24153", 2901 | "country": "US", 2902 | "lat": "37.294793", 2903 | "lng": "-80.028118", 2904 | "phone_number": "540-986-0264", 2905 | "fax_number": "540-986-0643" 2906 | }, 2907 | { 2908 | "name": "Northern Tool and Equipment Store 658", 2909 | "address": "9621 S. Fwy", 2910 | "city": " Fort Worth", 2911 | "state": "TX", 2912 | "zip_code": "76140", 2913 | "country": "US", 2914 | "lat": "32.7985673", 2915 | "lng": "-97.4419034", 2916 | "phone_number": "817-293-5600", 2917 | "fax_number": "817-293-5773" 2918 | }, 2919 | { 2920 | "name": "Northern Tool and Equipment Store 654", 2921 | "address": "584 W I-30 @ Belt Line Rd.", 2922 | "city": " Garland", 2923 | "state": "TX", 2924 | "zip_code": "75043", 2925 | "country": "US", 2926 | "lat": "32.9385137", 2927 | "lng": "-96.634803", 2928 | "phone_number": "972-226-6906", 2929 | "fax_number": "972-203-8356" 2930 | }, 2931 | { 2932 | "name": "Northern Tool and Equipment Store 656", 2933 | "address": "2630 W. Interstate 20", 2934 | "city": " Grand Prairie", 2935 | "state": "TX", 2936 | "zip_code": "75052", 2937 | "country": "US", 2938 | "lat": "32.6773568", 2939 | "lng": "-97.0552977", 2940 | "phone_number": "972-602-8877", 2941 | "fax_number": "972-602-8804" 2942 | }, 2943 | { 2944 | "name": "Northern Tool and Equipment Store 653", 2945 | "address": "111 W. Spring Creek Pkwy, Ste 101", 2946 | "city": "Plano", 2947 | "state": "TX", 2948 | "zip_code": "75023", 2949 | "country": "US", 2950 | "lat": "33.0574488", 2951 | "lng": "-96.6947308", 2952 | "phone_number": "214-501-5139", 2953 | "fax_number": "214-501-5143" 2954 | }, 2955 | { 2956 | "name": "Northern Tool and Equipment Store 680", 2957 | "address": "10111 E. 71st", 2958 | "city": "Tulsa", 2959 | "state": "OK", 2960 | "zip_code": "74133", 2961 | "country": "US", 2962 | "lat": "36.062175", 2963 | "lng": "-95.863197", 2964 | "phone_number": "918-994-1240", 2965 | "fax_number": "918-994-1186" 2966 | }, 2967 | { 2968 | "name": "Northern Tool and Equipment Store 665", 2969 | "address": "2016 North I-45 Fwy", 2970 | "city": "Conroe", 2971 | "state": "TX", 2972 | "zip_code": "77304", 2973 | "country": "US", 2974 | "lat": "30.3315253", 2975 | "lng": "-95.509247", 2976 | "phone_number": "936-647 2535", 2977 | "fax_number": "936-647 2622" 2978 | }, 2979 | { 2980 | "name": "Northern Tool and Equipment Store 667", 2981 | "address": "4914 S. Padre Island Dr.", 2982 | "city": "Corpus Christi", 2983 | "state": "TX", 2984 | "zip_code": "78418", 2985 | "country": "US", 2986 | "lat": "27.714469", 2987 | "lng": "-97.381671", 2988 | "phone_number": "361-288-4994", 2989 | "fax_number": "361-288-4998" 2990 | }, 2991 | { 2992 | "name": "Northern Tool and Equipment Store 660", 2993 | "address": "7994 Bellfort Ave.", 2994 | "city": " Houston", 2995 | "state": "TX", 2996 | "zip_code": "77061", 2997 | "country": "US", 2998 | "lat": "29.674998", 2999 | "lng": "-95.268634", 3000 | "phone_number": "713-643-2342", 3001 | "fax_number": "713-643-6193" 3002 | }, 3003 | { 3004 | "name": "Northern Tool and Equipment Store 556", 3005 | "address": "5124 Summer Ave., Ste 110", 3006 | "city": " Memphis", 3007 | "state": "TN", 3008 | "zip_code": "38122", 3009 | "country": "US", 3010 | "lat": "35.153233", 3011 | "lng": "-89.890682", 3012 | "phone_number": "901-767-3739", 3013 | "fax_number": "901-682-4227" 3014 | }, 3015 | { 3016 | "name": "Northern Tool and Equipment Store 663", 3017 | "address": "14950 N. Fwy", 3018 | "city": "Houston", 3019 | "state": "TX", 3020 | "zip_code": "77090", 3021 | "country": "US", 3022 | "lat": "30.0117919", 3023 | "lng": "-95.4279194", 3024 | "phone_number": "281-821-8000", 3025 | "fax_number": "281-821-8002" 3026 | }, 3027 | { 3028 | "name": "Emile-Boyer", 3029 | "address": "159 St. Alphone Nd", 3030 | "city": "Thetford-Mines", 3031 | "state": "QC", 3032 | "zip_code": "G6G 3W5", 3033 | "country": "Canada", 3034 | "lat": "46.0933305", 3035 | "lng": "-71.3022798", 3036 | "phone_number": "418-317-0106", 3037 | "fax_number": null 3038 | }, 3039 | { 3040 | "name": "FC Machinery Ltd.", 3041 | "address": "400 D Turenne", 3042 | "city": "Winnipeg", 3043 | "state": "MB", 3044 | "zip_code": "R2J 3W8", 3045 | "country": "Canada", 3046 | "lat": "49.8839363", 3047 | "lng": "-97.0805503", 3048 | "phone_number": "204-233-3070", 3049 | "fax_number": null 3050 | }, 3051 | { 3052 | "name": "L and L Electrical Repairs & Services", 3053 | "address": "269 Royal Avenue", 3054 | "city": "Sydney", 3055 | "state": "NS", 3056 | "zip_code": "B1P 4N1", 3057 | "country": "Canada", 3058 | "lat": "46.1363443", 3059 | "lng": "-60.1750713", 3060 | "phone_number": "902-564-0125", 3061 | "fax_number": null 3062 | }, 3063 | { 3064 | "name": "Enterprise Paint & Industrial, Inc.", 3065 | "address": "210 West College St.", 3066 | "city": "Enterprise", 3067 | "state": "AL", 3068 | "zip_code": "36330", 3069 | "country": "US", 3070 | "lat": "31.3136475", 3071 | "lng": "-85.8553587", 3072 | "phone_number": "334-347-9612", 3073 | "fax_number": null 3074 | }, 3075 | { 3076 | "name": "Bryan Electric Co.", 3077 | "address": "424 West 25th Street", 3078 | "city": "Norfolk", 3079 | "state": "VA", 3080 | "zip_code": "23517", 3081 | "country": "US", 3082 | "lat": "36.872256", 3083 | "lng": "-76.289704", 3084 | "phone_number": "757-625-2525", 3085 | "fax_number": null 3086 | }, 3087 | { 3088 | "name": "Hudson Saw & Tool", 3089 | "address": "2919 N. Pacific Hwy", 3090 | "city": "Medford", 3091 | "state": "OR", 3092 | "zip_code": "97501", 3093 | "country": "US", 3094 | "lat": "42.350489", 3095 | "lng": "-122.8959506", 3096 | "phone_number": "541-772-2293", 3097 | "fax_number": null 3098 | }, 3099 | { 3100 | "name": "Stroudsburg Electric Motor Service", 3101 | "address": "756 Phillips St.", 3102 | "city": "Stroudsburg", 3103 | "state": "PA", 3104 | "zip_code": "18360", 3105 | "country": "US", 3106 | "lat": "40.9912319", 3107 | "lng": "-75.200415", 3108 | "phone_number": "570-421-8909", 3109 | "fax_number": null 3110 | }, 3111 | { 3112 | "name": "Unicoa Industrial Supply", 3113 | "address": "2224 N. 23rd Ave.", 3114 | "city": "Phoenix", 3115 | "state": "AZ", 3116 | "zip_code": "85009", 3117 | "country": "US", 3118 | "lat": "33.472132", 3119 | "lng": "-112.108952", 3120 | "phone_number": "602-254-4666", 3121 | "fax_number": null 3122 | }, 3123 | { 3124 | "name": "Godwin tool & hardware suppy", 3125 | "address": "189 GREENWOOD AVE", 3126 | "city": "MIDLAND PARK", 3127 | "state": "nj", 3128 | "zip_code": "7432", 3129 | "country": "US", 3130 | "lat": "40.9966195", 3131 | "lng": "-74.1526981", 3132 | "phone_number": "201-445-4431", 3133 | "fax_number": null 3134 | }, 3135 | { 3136 | "name": "Romans Repair Center", 3137 | "address": "1521 Old Louisville Rd", 3138 | "city": "Bowling Green", 3139 | "state": "KY", 3140 | "zip_code": "42101", 3141 | "country": "US", 3142 | "lat": "37.0046413", 3143 | "lng": "-86.4215578", 3144 | "phone_number": "270-746-0857", 3145 | "fax_number": null 3146 | }, 3147 | { 3148 | "name": "The New Sioux City Iron Company", 3149 | "address": "310 So Floyd Blvd", 3150 | "city": "Sioux City", 3151 | "state": "IA", 3152 | "zip_code": "51101", 3153 | "country": "US", 3154 | "lat": "42.4879853", 3155 | "lng": "-96.393041", 3156 | "phone_number": null, 3157 | "fax_number": null 3158 | }, 3159 | { 3160 | "name": "Tool Depot", 3161 | "address": "411 11th St SW", 3162 | "city": "Spencer", 3163 | "state": "IA", 3164 | "zip_code": "51301", 3165 | "country": "US", 3166 | "lat": "43.127716", 3167 | "lng": "-95.151487", 3168 | "phone_number": null, 3169 | "fax_number": null 3170 | }, 3171 | { 3172 | "name": "Conway Electric Motor Service", 3173 | "address": "402 Lewis Street", 3174 | "city": "Conway", 3175 | "state": "SC", 3176 | "zip_code": "29526", 3177 | "country": "US", 3178 | "lat": "33.83435", 3179 | "lng": "-79.0522825", 3180 | "phone_number": "843-248-5302", 3181 | "fax_number": null 3182 | }, 3183 | { 3184 | "name": "Jerome Tool Repair", 3185 | "address": "1331 Noble Ave", 3186 | "city": "Bronx", 3187 | "state": "NY", 3188 | "zip_code": "10472", 3189 | "country": "US", 3190 | "lat": "40.833442", 3191 | "lng": "-73.870932", 3192 | "phone_number": "917-887-8739", 3193 | "fax_number": "718-295-7996" 3194 | }, 3195 | { 3196 | "name": "Rustic Enterprises", 3197 | "address": "1565 Rock Springs Road", 3198 | "city": "Kingsport", 3199 | "state": "TN", 3200 | "zip_code": "37664", 3201 | "country": "US", 3202 | "lat": "36.467843", 3203 | "lng": "-82.546201", 3204 | "phone_number": "423-349-4312", 3205 | "fax_number": "423-349-4311" 3206 | }, 3207 | { 3208 | "name": "Burton's Saw Sharpening & Power Equipment Inc.", 3209 | "address": "4525 West Rosecranes Ave", 3210 | "city": "Hawthorn", 3211 | "state": "CA", 3212 | "zip_code": "90250", 3213 | "country": "US", 3214 | "lat": "33.9023071", 3215 | "lng": "-118.3554819", 3216 | "phone_number": "310-675-2200", 3217 | "fax_number": null 3218 | }, 3219 | { 3220 | "name": "Economy Rentals & Repairs LTD.", 3221 | "address": "4500 Manson Ave", 3222 | "city": "Powell River", 3223 | "state": "BC", 3224 | "zip_code": "V8A 3N2", 3225 | "country": "Canada", 3226 | "lat": "49.8377697", 3227 | "lng": "-124.5094027", 3228 | "phone_number": "604-485-2707", 3229 | "fax_number": "604-485-2708" 3230 | }, 3231 | { 3232 | "name": "Renovo Parts", 3233 | "address": "211 S. Saginaw Street", 3234 | "city": "Holly", 3235 | "state": "MI", 3236 | "zip_code": "48442", 3237 | "country": "US", 3238 | "lat": "42.7906444", 3239 | "lng": "-83.6276247", 3240 | "phone_number": "(248) 634-6234", 3241 | "fax_number": null 3242 | }, 3243 | { 3244 | "name": "County-Line Tool Repair", 3245 | "address": "2517 Franklin Drive", 3246 | "city": "Mesquite", 3247 | "state": "TX", 3248 | "zip_code": "75150", 3249 | "country": "US", 3250 | "lat": "32.7977636", 3251 | "lng": "-96.6197615", 3252 | "phone_number": "972-289-8665", 3253 | "fax_number": null 3254 | } 3255 | ] --------------------------------------------------------------------------------