我正在尝试使用以下代码在Google地图上添加批量标记。
var map = null;
var geocoder = null;
var bounds = null;
var gdir;
var properties_address = new Array();
var blueIcon = new GIcon(G_DEFAULT_ICON);
blueIcon.iconSize = new GSize(26, 33);
markerOptions = { icon:blueIcon };
blueIcon.image = "https://mysite/images/marker.gif";
properties_address = ["Abohar,Punjab,india", "Achhalda,Uttar Pradesh,india", "Achhnera,Uttar Pradesh,india", "Adari,Uttar Pradesh,india", "Adilabad,Andhra Pradesh,india", "Adipur,Gujarat,india", "Adoni,Andhra Pradesh,india", "Adoor,Kerala,india", "Agartala,Tripura,india", "Agra,Uttar Pradesh,india", "Ahmedabad,Gujarat,india", "Ahmedgarh,Punjab,india", "Ahmednagar,Maharashtra,india", "Aizawl,Mizoram,india", "Ajmer,Rajasthan,india", "Akaltara,Chhattisgarh,india", "Akola,Maharashtra,india", "Alappuzha,Kerala,india"];
$(document).ready(function() {
bounds = new GLatLngBounds;
initialize();
});
function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(21.88, 78.442626), 5);
geocoder = new GClientGeocoder();
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
$.each(properties_address, function(index, property) {
showAddressByAddress(index, property, false);
});
}
}
function showAddressByAddress(index,address, is_custom)
{
if(address){
geocoder.getLatLng(address,function(point) {
var marker = new GMarker(point,markerOptions);
map.addOverlay(marker);
bounds.extend(marker.getPoint());
map.setZoom(map.getBoundsZoomLevel(bounds));
map.setCenter(bounds.getCenter());
GEvent.addListener(marker, "mouseover", function() {
if(!is_custom){
address_html = address + '<br /><a id="route_'+index+'" href="#" class="route_url" data-address="'+ address +'">Route from here</a>';
}else{
address_html = address;
}
marker.openInfoWindowHtml(address_html);
});
});
}
}
代码工作正常,直到我在properties_address数组中提供了10个地址,但是超过10个地址它给了我跟随错误。
a is null http://maps.gstatic.com/intl/en_ALL/mapfiles/377a/maps2.api/main.js Line 1131
答案 0 :(得分:0)
您是否尝试过使用firebug来查看数组声音的属性,就像其中的一个项目是null一样。
<html>
<script type="text/javascript">
var myCars=["Saab","Volvo","BMW"];;
console.log(myCars);
</script>
</html>`
然后查看firebug控制台窗口以查看数组的属性
答案 1 :(得分:0)
数组名称错误:
var properties_add21ress = new Array();
答案 2 :(得分:0)
它的固定,我只是跳过地理编码找不到的点。
function showAddressByAddress(index,address, is_custom)
{
if(address){
geocoder.getLatLng(address,function(point) {
if(point){
var marker = new GMarker(point,markerOptions);
map.addOverlay(marker);
bounds.extend(marker.getPoint());
map.setZoom(map.getBoundsZoomLevel(bounds));
map.setCenter(bounds.getCenter());
GEvent.addListener(marker, "mouseover", function() {
if(!is_custom){
address_html = address + '<br /><a id="route_'+index+'" href="#" class="route_url" data-address="'+ address +'">Route from here</a>';
}else{
address_html = address;
}
marker.openInfoWindowHtml(address_html);
});
}
});
}