我是一个新手,尝试使用 Rgeo 和 GeoJSON。我想从我的数据中提取 GeoJSON 以在传单中使用。
安装GeoJSON(和/或地点)的正确方法是什么。
宝石文件:
gem 'activerecord-postgis-adapter'
gem 'rgeo-geojson'
gem 'rgeo'
gem 'rgeo-activerecord'
是否需要任何其他配置以及安装它的正确方法是什么(GeoJSON)
require 'rgeo/geo_json'
RGeo::ActiveRecord::SpatialFactoryStore.instance.tap do |config|
# By default, use the GEOS implementation for spatial columns.
config.default = RGeo::Geos.factory_generator
# But use a geographic implementation for point columns.
config.register(RGeo::Geographic.spherical_factory(srid: 4326),
geo_type: "point")
end