我有谷歌地图的javascript代码
$(document).ready(function() {
var zoom = 16; // zoom level
var latitude = $('#latitude').text(); //latitude
var longitude = $('#longitude').text(); //longitude
var map_description = $('#map_description').text();
if (GBrowserIsCompatible()) { // if the browser is compatible with Google Map's
var map = document.getElementById("myMap"); // Get div element
var m = new GMap2(map); // new instance of the GMap2 class and pass in our div location.
m.setCenter(new GLatLng(latitude, longitude), zoom);
m.openInfoWindow(m.getCenter(), map_description); // displays the text
m.setMapType(G_SATELLITE_MAP); // sets the default mode. G_NORMAL_MAP, G_HYBRID_MAP
var c = new GMapTypeControl(); // switch map modes
m.addControl(c);
m.addControl(new GLargeMapControl()); // creates the zoom feature
}
else {
alert("Upgrade your browser, man!");
}
});
问题是我无法从javascript中删除数据“缩放”。我想在html文件中找到数据。我已经用纬度,经度,描述
制作了它var zoom = $('#zoom').text(); //zoom
<div id='zoom'>16</div>
这不要了。有人可以帮我解决这个问题吗?
答案 0 :(得分:2)
我认为您需要将缩放解析为整数值,例如:
var zoom=parseInt($('zoom').text());