Update markers_test for the new marker selection stuff.
This commit is contained in:
parent
2a4ee685a2
commit
efc47651e7
|
@ -24,12 +24,16 @@ function setup_markers_test() {
|
||||||
loadTilesWhileInteracting: true
|
loadTilesWhileInteracting: true
|
||||||
});
|
});
|
||||||
|
|
||||||
for (var type in TypeIcons) {
|
for (var type in TypeDesignatorIcons) {
|
||||||
add_marker(type, TypeIcons[type]);
|
add_marker(type, TypeDesignatorIcons[type]);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (var type in TypeDescriptionIcons) {
|
||||||
|
add_marker(type, TypeDescriptionIcons[type]);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var category in CategoryIcons) {
|
for (var category in CategoryIcons) {
|
||||||
add_marker(category, CategoryIcons[category]);
|
add_marker("Cat " + category, CategoryIcons[category]);
|
||||||
}
|
}
|
||||||
|
|
||||||
add_marker("Default", DefaultIcon);
|
add_marker("Default", DefaultIcon);
|
||||||
|
|
Loading…
Reference in a new issue