🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

baidu_api-geocoding

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baidu_api-geocoding

1.1.2
Rubygems
Version published
Maintainers
1
Created
Source

BaiduApi::Geocoding

A ruby version of Baidu API Geocoder client.

Installation

Add this line to your application's Gemfile:

gem 'baidu_api-geocoding'

And then execute:

$ bundle

Or install it yourself as:

$ gem install baidu_api-geocoding

Usage

require 'baidu_api/geocoding'
BaiduApi::Geocoding.setup ak: 'xxxx', sk: 'xxxx'

or

BaiduApi::Geocoding.setup do |config|
  config.ak = 'xxxx'
  config.sk = 'xxxx'
end

To geocode an address:


BaiduApi::Geocoding.geocode(address: '百度大厦')
=> {"status"=>0, "result"=>{"location"=>{"lng"=>116.30814954222, "lat"=>40.056885091681}, "precise"=>1, "confidence"=>80, "level"=>"商务大厦"}}

BaiduApi::Geocoding.geocode(location: '40.056885091681,116.30814954222')
=> {"status"=>0,
 "result"=>
  {"location"=>{"lng"=>116.30814954222, "lat"=>40.056885160713},
   "formatted_address"=>"北京市海淀区上地十街10",
   "business"=>"西二旗,龙泽,回龙观",
   "addressComponent"=>{"city"=>"北京市", "direction"=>"附近", "distance"=>"1", "district"=>"海淀区", "province"=>"北京市", "street"=>"上地十街", "street_number"=>"10"},
   "poiRegions"=>[{"direction_desc"=>"内", "name"=>"百度大厦"}],
   "cityCode"=>131}}

More options for parameter of BaiduApi::Geocoding.geocode, please see http://developer.baidu.com/map/index.php?title=webapi/guide/webservice-geocoding

Contributing

  • Fork it ( https://github.com/[my-github-username]/baidu_api-geocoding/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

FAQs

Package last updated on 09 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts