gpt4 book ai didi

MySQL:在多边形内获取记录

转载 作者:行者123 更新时间:2023-11-30 22:15:31 25 4
gpt4 key购买 nike

我在数据库中有一个表,其中包含纬度和经度属性

CREATE TABLE `companies` (
`ID` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`latitude` decimal(12,8) NOT NULL,
`longitude` decimal(12,8) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


INSERT INTO `companies` (`ID`, `title`, `latitude`, `longitude`) VALUES
(NULL, 'John and SOns', '25.29064622', '55.368462502'),
(NULL, 'Evas', '25.28862850', '55.40107816');

在谷歌地图上,我有一个折线功能,用户可以在其中绘制一条折线,因此我们可以显示该多边形内的所有公司。

这是 map 图片

enter image description here

Google 可能会给出一个纬度经度数组 enter image description here

我如何查询以从位于绘制多边形内的数据库中获取所有记录?

最佳答案

您应该发现,如果您将查询编写为:

select ID,title from companies where st_within(point(companies.longitude,companies.latitude),  ST_GeomFromText('Polygon((75.80278873443604 26.863847231536703, 75.79540729522705 26.85136594544373, 75.81798076629639 26.851595674802315,75.80278873443604 26.863847231536703))'));

那么应该可以工作。

关于MySQL:在多边形内获取记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38429452/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com