我有一个多边形和一个点
我使用query来检测经纬度位置点,使用query mysqlSELECT X(coord), Y(coord) FROM geometry
而且有效
但是在mysql中如何显示顶点(点)多边形呢?喜欢
POLYGON((
107.623303663647 -6.94958690332541,
107.623303663647 -6.94969839983204,
107.623038859444 -6.94970835487728,
107.623028904398 -6.94956699323494,
107.623303663647 -6.94958690332541))
谢谢您。
最佳答案
试试这个。SELECT AsText(your shape) FROM your table;
关于php - 在mysql中查询显示纬度经度多边形,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12794935/