我有一个名为的数组value
,当console.log(value)
我得到大约 30 行代码时,代码如下[6.443663, 3.419248]
数字随着纬度和经度而变化。但我需要以某种方式摆脱每个方括号。
我尝试过var replaced = value.toString().replace(/\[.*\]/g,'');
,但这将上面的示例更改为6.443407,3.419035000000008
并且使我的代码失败。
换句话说,我需要帮助摆脱数组中的方括号,以便在我的地图上绘制点。
我的数组由以下代码组成,因为每个纬度和经度值都保存在链接内的onClick
函数中。a
所以这里的一个成员好心地提供了下面的代码来将我的值放入一个数组中,但现在我正在努力在没有任何括号破坏它的情况下取出这些值。
var obj = {};
$('.choice-location-inner a').each(function(){
var $this = $(this);
var text = $this.attr('onClick').replace('findLocation(\'', '').replace('\');return false;', '');
var array = text.split(',')
obj[this.id]= [parseFloat(array[0]), parseFloat(array[1])];
});
该数组正在尝试使用以下代码在我的 Google 地图上绘制标记
$.each(obj , function(index, value){
geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': value}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
marker = new google.maps.Marker({
map: map,
icon: image,
position: results[0].geometry.location
});
} else if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT) {
wait = true;
setTimeout("wait = false", 1000);
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
});