Welcome to Advanced Interactive Web Mapping, Programming, and Design, Class 7
This is a web page that can be viewed as slides.
→ to move forward
← to go back
Class 7
var map = L.map('map');
map.on('mouseover', function () {
console.log('mouseover!');
});
onEachFeature
optionL.geoJson(data, {
onEachFeature: function (feature, layer) {
layer.on('click', function () {
console.log('click.');
};
}
};
L.geoJson(data, {
onEachFeature: function (feature, layer) {
layer.on('click', function () {
console.log('click.');
};
}
};