From d332f477b8a810f8f39f6705ec9a77baaffe3222 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 25 Jan 2017 18:19:09 -0600 Subject: [PATCH] Add ground vehicle icons --- public_html/markers.js | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/public_html/markers.js b/public_html/markers.js index 1777b96..732fedf 100755 --- a/public_html/markers.js +++ b/public_html/markers.js @@ -48,6 +48,22 @@ var shapes = { svg: 'twin_small_live', size: [19,16] }, + 'ground_emergency': { + svg: 'emergency_dark', + size: [6, 15] + } + 'ground_service': { + svg: 'service_dark', + size: [6, 15] + }, + 'ground_unknown': { + svg: 'unknown_dark', + size: [6, 15] + }, + 'ground_fixed': { + svg: 'fixed_dark', + size: [12, 12] + }, 'unknown': { svg: 'unknown_live', size: [17,17] @@ -228,7 +244,15 @@ var CategoryIcons = { "A7" : 'helicopter', - "B2" : 'balloon' + "B2" : 'balloon', + + 'C0' : 'ground_unknown', + + 'C1' : 'ground_emergency', + + 'C2' : 'ground_service', + + 'C3' : 'ground_fixed' }; function getBaseMarker(category, typeDesignator, typeDescription, wtc) {