editor.html 1019 B

123456789101112131415161718192021222324
  1. <div class="row-fluid">
  2. <div class="span11">
  3. The map panel uses 2 letter country or US state codes to plot concentrations on a map. Darker terroritories mean more records matched that area. If multiple queries are sent from a single panel the <strong>first query will be displayed</strong>
  4. </div>
  5. </div>
  6. <div class="row-fluid">
  7. <div class="span3">
  8. <form>
  9. <h6>Field</h6>
  10. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.field">
  11. </form>
  12. </div>
  13. <div class="span1"><h6>Map</h6>
  14. <select ng-change="$emit('render')" class="input-small" ng-model="panel.map" ng-options="f for f in ['world','europe','usa']"></select>
  15. </div>
  16. </div>
  17. <div class="row-fluid" ng-include="'partials/querySelect.html'"></div>
  18. <h5>Panel Spy</h5>
  19. <div class="row-fluid">
  20. <div class="span2">
  21. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  22. </div>
  23. </div>