gpt4 book ai didi

javascript - jquery 始终以英文格式为 google map API 检索数字

转载 作者:行者123 更新时间:2023-12-03 08:48:06 25 4
gpt4 key购买 nike

我有谷歌地图格式的隐藏输入,例如:

id = SearchedLattitude with the value 45.719997

当我尝试获取值时

var myLat =$('#SearchedLattitude').val();

但是结果 myLat 并不一致,如果我将浏览器设置为法语默认语言,那么我会得到 45,719997(带有 ,),在英语中我会得到 45.719997(带有 .)

它使我的代码失败,因为我将这些值用于谷歌地图 API,它只需要英语格式数字样式作为位置属性

   var marker = new google.maps.Marker({
position: lat and lon numbers here,
map: map,
title: 'Home'
});

如何使其能够跨国家/地区和本地化工作?

感谢您的帮助

最佳答案

您只需进行替换即可:

myLat = myLat.replace(/,/g, '.');

这会将所有 , 替换为 .

关于javascript - jquery 始终以英文格式为 google map API 检索数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32798034/

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