谷歌地图设置隐藏输入值的缩放
我有一个带有隐藏输入的表单,可以保存用户当前的缩放级别
<input type="hidden" name="zoom" value="15" id="zoom" /> <!-- default value="" -->
但是,当我在提交表单后尝试使用输入中的缩放值时,它不会使用输入的值
var zoom = $("#zoom").val();
var point;
var gmap = new GMap2(document.getElementById("gmap"));
if (zoom == "") {
point = new google.maps.LatLng(latitude,longitude);
gmap.setCenter(point, 13);
} else {
console.log(zoom); //shows 15
point = new google.maps.LatLng(latitude,longitude);
gmap.setCenter(point, zoom); //here the zoom is undefined
}
I have a form with a hidden input that saves user's current zoom level
<input type="hidden" name="zoom" value="15" id="zoom" /> <!-- default value="" -->
However, when I try to use the zoom value from the input after I submit my form it doesn't use the input's value
var zoom = $("#zoom").val();
var point;
var gmap = new GMap2(document.getElementById("gmap"));
if (zoom == "") {
point = new google.maps.LatLng(latitude,longitude);
gmap.setCenter(point, 13);
} else {
console.log(zoom); //shows 15
point = new google.maps.LatLng(latitude,longitude);
gmap.setCenter(point, zoom); //here the zoom is undefined
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输入字段中的“zoom”值是一个字符串,该函数需要一个数字。使用
parseInt()
将字段值转换为数值。The value of 'zoom' from the input field is a string, and the function requires a number. Use
parseInt()
to cast the field value as a numeric value.