diff --git a/public_html/test/markers_test.js b/public_html/test/markers_test.js index c8e7bcf..dbc5281 100644 --- a/public_html/test/markers_test.js +++ b/public_html/test/markers_test.js @@ -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);