Support Postgis and Mongoid
This project is fork from rails_admin_mongoid_geospatial_field
Adds to RailsAdmin support for setting geospatial information with Baidu Maps.
To enable this gem, add the following to your Gemfile
:
gem "rails_admin_baidu_map"
And then execute:
$ bundle
In your model location field must be an Array:
class Person
include Mongoid::Document
field :location, :type => Array # [lat,lng]
index( { location: '2d' }, { min: -180, max: 180 }) # create an special index
before_save :fix_location, if: :location_changed? # lat and lng must be in float format
def fix_location
self.location = self.location.map(&:to_f)
end
end
Then, add in your config/initializers/rails_admin.rb
initializer:
RailsAdmin.config do |config|
config.model Businessmen do
edit do
field :lonlat, :baidumap do
api_key "apikey"
end
end
end
end
You should use activerecord-postgis-adapter
gem.
Then, add in your config/initializers/rails_admin.rb
initializer:
RailsAdmin.config do |config|
config.model Businessmen do
edit do
field :lonlat, :baidumap_postgis do
api_key "apikey"
end
end
end
end
schema example:
class CreateBusinessmen < ActiveRecord::Migration
def change
create_table :businessmen do |t|
t.point :lonlat, srid: 4326 # must be Point
t.timestamps
end
end
end
api_key
- if you use Baidu Maps API Key, it can be specified here.default_latitude
- the latitude to center the map shown on if the latitude is blank. Defaults to 116.404 , the latitude of Ivano-Frankivsk, Ukrainedefault_longitude
- the longitude used if the longitude is blank. Defaults to 24.7111, the longitude of Ivano-Frankivsk, Ukraine.
Licensed under the MIT license.
Copyright (C) 2014 Oleg Popadyuk
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.