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.
我想用多边形填充表格。我得到代表lat和的 8 字节数字lng。这些数字是x和y坐标。那么第一名和第二名是什么?
lat
lng
x
y
var aSrid = sphericalmercator.forward([lng, lat]); // [x, y] are returned values
现在我创建 MySQL 函数。什么是正确的:
POLYGON((x y, x y, x y, ...)) or POLYGON((y x, y x, y x, ...))
WKT 格式先使用 x,然后使用 y
POLYGON((x y, x y, x y, ...))