From efc47651e72c9515aa81ee8074ad6dc983d5dac0 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Thu, 15 Sep 2016 15:31:15 +0100 Subject: [PATCH] Update markers_test for the new marker selection stuff. --- public_html/test/markers_test.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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);