嗨,我一直在看这张热图 https://developers.google.com/maps/documentation/javascript/examples/layer-heatmap#maps_layer_heatmap-html
它使用 javascript 并且有很长的时间。但我的 Oracle Sql 数据库中有东移和北移。 我只是想检查一下我不能从
更改javafunction getPoints() {
返回[ 新的 google.maps.LatLng(37.782551, -122.445368),
到
function getPoints() {
返回[ 新的 google.maps.place (LN21334),
我似乎无法在文档中找到任何接受 lat long 以外的任何东西的地方。在我将网站上的所有坐标转换为经纬度之前,我只是想检查一下我是否错过了一个技巧。我确实在这里看到了 mysql 而不是 oracle 的复杂转换代码。
有人知道制作热图的好方法吗?
谢谢