Browse Source

[enh] display isp that does vpn

Laurent Peuch 9 years ago
parent
commit
3f28fae530
2 changed files with 9 additions and 5 deletions
  1. 8 5
      ffdnispdb/templates/site_embed.js
  2. 1 0
      ffdnispdb/views.py

+ 8 - 5
ffdnispdb/templates/site_embed.js

@@ -303,15 +303,18 @@ function init_map() {
     });
 
 
-    var icon = L.icon({
-        iconUrl: '../static/img/marker.png',
+    var icon_nothing = L.icon({
+        iconUrl: '../static/img/marker_nothing.png',
 
         iconSize:     [14, 20], // size of the icon
         iconAnchor:   [7, 20], // point of the icon which will correspond to marker's location
         popupAnchor:  [0, -20] // point from which the popup should open relative to the iconAnchor
     });
-    var icon_ffdn = $.extend(true, {}, icon);
-    icon_ffdn['options']['iconUrl'] = '../static/img/marker_ffdn.png';
+    var icon_vpn = $.extend(true, {}, icon_nothing);
+    icon_vpn['options']['iconUrl'] = '../static/img/marker_vpn.png';
+
+    var icon_cube = $.extend(true, {}, icon_nothing);
+    icon_cube['options']['iconUrl'] = '../static/img/marker_cube.png';
 
     window.isp_list={};
     $.getJSON('/isp/map_data_cube.json', function(data) {
@@ -323,7 +326,7 @@ function init_map() {
             if (!isp.ffdn_member) return;
 
             var marker = L.marker([isp['coordinates']['latitude'], isp['coordinates']['longitude']],
-                                  {'icon': isp.distribute_zsh:1: ube ? icon_cube : icon_ffdn});
+                                  {'icon': isp.distribute_cube ? icon_cube : (isp.has_vpn? icon_vpn : icon_nothing)});
 
             marker.bindPopup(isp.popup);
             marker.getPopup().on('open', function() {

+ 1 - 0
ffdnispdb/views.py

@@ -83,6 +83,7 @@ def isp_map_data_cube():
 
         d['id'] = isp.id
         d['ffdn_member'] = isp.is_ffdn_member
+        d['has_vpn'] = isp.has_technology("vpn")
         d['distribute_cube'] = isp.has_technology("cube")
         d['popup'] = render_template('map_popup.html', isp=isp)
         data.append(d)