Convert S-T examples to strapless template

This commit is contained in:
Tim Schaub
2015-11-16 15:20:20 -07:00
parent c984bedd09
commit baed03d50d
26 changed files with 204 additions and 307 deletions

View File

@@ -71,9 +71,10 @@ var changeInteraction = function() {
if (select !== null) {
map.addInteraction(select);
select.on('select', function(e) {
$('#status').html(' ' + e.target.getFeatures().getLength() +
document.getElementById('status').innerText = ' ' +
e.target.getFeatures().getLength() +
' selected features (last operation selected ' + e.selected.length +
' and deselected ' + e.deselected.length + ' features)');
' and deselected ' + e.deselected.length + ' features)';
});
}
};