Update markers_test for the new marker selection stuff.

This commit is contained in:
Oliver Jowett 2016-09-15 15:31:15 +01:00
parent 2a4ee685a2
commit efc47651e7

View file

@ -24,12 +24,16 @@ function setup_markers_test() {
loadTilesWhileInteracting: true
});
for (var type in TypeIcons) {
add_marker(type, TypeIcons[type]);
for (var type in TypeDesignatorIcons) {
add_marker(type, TypeDesignatorIcons[type]);
}
for (var type in TypeDescriptionIcons) {
add_marker(type, TypeDescriptionIcons[type]);
}
for (var category in CategoryIcons) {
add_marker(category, CategoryIcons[category]);
add_marker("Cat " + category, CategoryIcons[category]);
}
add_marker("Default", DefaultIcon);