Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
postGIS 中是否有某种方法可以计算我在 web 应用程序(leaflet.js)中需要的缩放以可视化地理表的全部范围?我知道我可以在 Leaflet.js 上通过它的界限得到它,但我需要在 postGIS 中计算。
我可以像这样获得我的 geo_table 的质心和范围
SELECT ST_AsText(ST_centroid(extent(the_geom))), ST_AsText(extent(the_geom)) FROM my_geo_table
谢谢
你不能,因为它取决于地图的大小。换句话说,如果大小是固定的(几乎没有数学!),这是可能的。参考传单源代码。