我正在使用Google Maps API v.3来显示位置标记和来自XML文件的位置信息,该文件是在从MySQL数据库加载页面时构建的(mysql - > xml - > Google Maps API)。 / p>
我需要知道的是如何切换开/关标记取决于我的复选框的id是否与行上定义的变量的值匹配
var nom = markers[i].getAttribute("nom");
仅使用普通的javascript而不是jQuery。这是我正在使用的完整脚本:
//main function
function load() {
var map = new google.maps.Map(document.getElementById("map"), {
center: new google.maps.LatLng(15.31,32.35),
zoom: 2,
mapTypeId: 'terrain',
panControl: false,
streetViewControl: false
});
var infoWindow = new google.maps.InfoWindow;
//calls a php script that builds the xml file from the database and prepares the map -- see below in the question
downloadUrl("phpToXML.php", function(data) {
var xml = data.responseXML;
var markers = xml.documentElement.getElementsByTagName("marker");
for (var i = 0; i < markers.length; i++) {
var nom = markers[i].getAttribute("nom");
var lieu = markers[i].getAttribute("lieu");
var date = markers[i].getAttribute("date");
var dateFin = markers[i].getAttribute("dateFin");
var descCas = markers[i].getAttribute("descCas");
var type = markers[i].getAttribute("type");
var point = new google.maps.LatLng(
parseFloat(markers[i].getAttribute("lat")),
parseFloat(markers[i].getAttribute("lng")));
var html = "<strong>" + nom + " > " + lieu + "</strong><br />" + date + " - " + dateFin + "<p>" + descCas + "</p>";
var icon = customIcons[type] || {};
var marker = new google.maps.Marker({
map: map,
position: point,
icon: icon.icon
});
bindInfoWindow(marker, map, infoWindow, html);
}
});
}
function bindInfoWindow(marker, map, infoWindow, html) {
google.maps.event.addListener(marker, 'click', function() {
infoWindow.setContent(html);
infoWindow.open(map, marker);
});
}
function downloadUrl(url, callback) {
var request = window.ActiveXObject ?
new ActiveXObject('Microsoft.XMLHTTP') :
new XMLHttpRequest;
request.onreadystatechange = function() {
if (request.readyState == 4) {
request.onreadystatechange = doNothing;
callback(request, request.status);
}
};
request.open('GET', url, true);
request.send(null);
}
function doNothing() {}
我想我必须创建一个数组来存储标记并在循环中使用一个函数来运行所有标记,并改变与变量NOM的值相关联的实例的可见性值,该值与复选框。问题很简单,我不知道该怎么做。
要包装它,这里是HTML的基本结构
<div id="selecteur">
<form id="selection" action="#">
<li><input type="checkbox" name="entreprises" id="NAME#1 SOME JS FUNCTION HAS TO BE CALLED HERE I GUESS></li>
</form>
</div>
,XML输出通常如下:
<markers>
<marker nom="Nestlé" lieu="Colombie" date="1986" dateFin="2012" lat="4.115673" lng="-72.930130" type="victHu" victNHu="0" descCas="<p>Entre 1986 et 2009, 13 syndicalistes sont assassin&eacute;s, dont, en 2009, Gustavo Gomez, suite &agrave; une p&eacute;tition du syndicat contre Nestl&eacute; Purina Colombie et en 2007 Jos&eacute; de Jesus Marin Vargas. De m&ecirc;me en 2005, Gustavo Romero, de Nestl&eacute; Cicolac, est assassin&eacute; apr&egrave;s avoir d&eacute;couvert que Nestl&eacute; utilise du lait p&eacute;rim&eacute; pour produire son fameux produit Milo.</p> <hr /> <p>Nestl&eacute; rejette toutes les accusations d'intimidation et de tout comportement anti-syndical. Il reviendrait aux filiales et aux autorit&eacute;s locales de r&eacute;soudre les questions de s&eacute;curit&eacute; et de conflit.</p> <hr /> <p>Sources:</p> <ul> <li>ALLIANCE SUD (2011)</li> <li>MULTIWATCH (2011)</li> <li>MULTIWATCH(2007)</li> <li>ILRF (2006)</li> <li>MULTIWATCH (2012b)</li> <li>MULTIWATCH (2012)</li> </ul>"/>
<marker nom="Nestlé" lieu="Suisse" date="2003" dateFin="2008" lat="46.480400" lng="8.133600" type="victHu" victNHu="0" descCas="<p>Deux cas d'infiltration et d'espionnage du groupe altermondialiste Attac qui menait une enqu&ecirc;te sur Nestl&eacute; afin de publier un livre sur l'entreprise.</p> <hr /> <p>L'organisation Attac, selon Peter Brabeck-Letmathe (PDG de Nestl&eacute; entre 1997 et 2008), se montre violente et repr&eacute;sente donc une menace r&eacute;elle pour Nestl&eacute;. La d&eacute;marche n'avait, selon lui, rien d'illicite et fut men&eacute;e &agrave; titre pr&eacute;ventif contre la menace potentielle d'une guerre id&eacute;ologique men&eacute;e par Attac contre Nestl&eacute;.</p> <hr /> <p>Sources:</p> <ul> <li>ATTAC (2012)</li> <li>MULTIWATCH (2010d)</li> </ul>"/>
<!-- ... --?
</markers>
答案 0 :(得分:0)
gmarkers
)添加&#34; nom&#34;属性作为标记的属性(gmarkers [i] .nom),更改:
var marker = new google.maps.Marker({
map: map,
position: point,
icon: icon.icon
});
要:
var marker = new google.maps.Marker({
nom: nom,
map: map,
position: point,
icon: icon.icon
});
function displayNom(nom, checkbox) {
var inputs = document.getElementsByTagName("input"); //or document.forms[0].elements;
var cbs = []; //will contain all checkboxes
var checkboxes = [];
for (var i = 0; i < inputs.length; i++) {
if (inputs[i].type == "checkbox") {
cbs.push(inputs[i]);
checkboxes[nodeValue(inputs[i].parentNode).trim()] = inputs[i];
}
}
for (var i = 0; i < gmarkers.length; i++) {
if (checkboxes[gmarkers[i].nom].checked) {
if (gmarkers[i].getMap() === null) gmarkers[i].setMap(map);
} else {
if (gmarkers[i].getMap() != null) gmarkers[i].setMap(null);
}
}
}
html来调用上面的内容:
<li><input type="checkbox" name="entreprises" id="NAME#1" onclick="displayNom('Nestlé', this)" />Nestlé</li>
<li><input type="checkbox" name="entreprises" id="NAME#2" onclick="displayNom('Novartis', this)" />Novartis</li>
<li><input type="checkbox" name="entreprises" id="NAME#2" onclick="displayNom('Vitol', this)" />Vitol</li>
<!-- etc. -->
working fiddle (&#34;代码片段&#34;)的代码太多了。