Create a table CREATE TABLE `map` ( `id` int(11) NOT NULL, `address` varchar(255) NOT NULL DEFAULT '', `location` geometry NOT NULL, PRIMARY KEY (`id`), SPATIAL KEY `idx_location` (`location`) ) insert INSERT INTO map (id, address, location) VALUES (1, 'somewhere', ST_GeomFromText('POINT(121.366961 31.190049)')); Note that you must use the ST_GeomFromText function, and POINT() contains: longitude + space + latitude Query 1. Check the latitude and longitude SELECT address, ST_AsText(location) AS location FROM map; 2. Calculate the distance between two points SELECT ST_Distance_Sphere(POINT(121.590347, 31.388094),location) AS distant FROM map; The calculated result is in meters. Note that the latitude and longitude in POINT() are now separated by commas. 3. Search for locations within 1000m and sort them from far to near Copy the code as follows: SELECT id, address, ST_Distance_Sphere(POINT(121.590347, 31.388094),location) AS distant FROM map WHERE ST_Distance_Sphere(POINT(121.590347, 31.388094),location) < 1000 ORDER BY distant; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Solve the cross-domain problem of get and post requests of vue $http
>>: Detailed explanation of how Tomcat implements asynchronous Servlet
Have you ever encountered a situation where we hav...
<html> <head> <meta http-equiv=&quo...
I have previously written an article about file t...
Table of contents animate() animation method Anim...
There are two ways to install MySQL 5.7. One is t...
1. Enter the host machine of the docker container...
1. Scroll Snap is a must-have skill for front-end...
1. Only Chinese characters can be input and pasted...
background Navicat is the best MySQL visualizatio...
Preface The MySQL slow query log is a type of log...
There are few and inadequate installation tutoria...
Everything needs a foundation. To build a house, ...
1. Brief Introduction Vue.js allows you to define...
Table of contents Preface 1. Tomcat class loader ...
The progress bar is not smooth I believe that mos...