gpt4 book ai didi

mysql - MySQL中的一个点的坐标是否对应于GoogleMap中的经度、纬度?

转载 作者:行者123 更新时间:2023-11-29 09:32:39 29 4
gpt4 key购买 nike

在 GoogleMap 中,有标记的纬度和经度概念。 MySQL 中的 Point 数据类型有两个坐标 x 和 y。我不知道 Point 的坐标代表什么;所以我想知道什么表示 Point 根据 GoogleMap 坐标的坐标

最佳答案

惯例是关联 longitudex-coordinate map 的,以及 latitudey-coordinate .

google.maps.LatLng为例类 latitude坐标始终先写,然后是 longitude 。例如,

myLatLng = new google.maps.LatLng({lat: -34, lng: 151}); 

但是还有一个google.maps.Point类,与 xy作为属性,在本例中为 x首先在类构造函数中传递:

Point(x, y)

与要传递的参数的顺序无关,在二维平面上都是 latitudey坐标值沿着垂直线增长,并且 longitudex坐标值沿着水平(垂直)线增长。

https://developers.google.com/maps/documentation/javascript/reference/coordinates

关于mysql - MySQL中的一个点的坐标是否对应于GoogleMap中的经度、纬度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58361616/

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