为什么不能将这些纬度和经度值提供给谷歌地图?

发布于 2024-09-14 20:15:18 字数 550 浏览 5 评论 0原文

我正在使用谷歌地图,但我无法获取此类纬度和经度值的地图标记。

蒂鲁内尔维利 纬度:8.44 N 经度:77.44 E。如何将这些转换为谷歌地图可以使用的值?

我用了这个,但是地图视图区域没有地方,

function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(8.44, 77.44), 13);
        var marker = new GMarker(new GLatLng(8.44, 77.44));
         map.addOverlay(marker);

        map.setUIToDefault();
      }
    }


<body onload="initialize()" onunload="GUnload()">

I am using google maps but i can't get map marker for these kind of lat and long values.

Tirunelveli Latitude:8.44 N Longitude:77.44 E. How to convert these to values which can be used by google maps?

I used this but there is no place in the map view area,

function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(8.44, 77.44), 13);
        var marker = new GMarker(new GLatLng(8.44, 77.44));
         map.addOverlay(marker);

        map.setUIToDefault();
      }
    }


<body onload="initialize()" onunload="GUnload()">

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

子栖 2024-09-21 20:15:18

您应该只删除 NE
有效值只是带点的浮点数(不带逗号!)。

纬度:8.44

经度:77.44

You should just remove N and E.
Valid values are just floats with dot (NOT with coma!).

latitude: 8.44

longitude: 77.44

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文