editor.html 971 B

123456789101112131415161718192021222324
  1. <div class="row-fluid" ng-controller="map">
  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 type="text" class="input-small" ng-model="panel.field">
  11. </form>
  12. </div>
  13. <div class="span6">
  14. <form class="input-append">
  15. <h6>Query</h6>
  16. <input type="text" ng-model="panel.query">
  17. <button class="btn" ng-click="get_data();"><i class="icon-search"></i></button>
  18. </form>
  19. </div>
  20. <div class="span1"><h6>Map</h6>
  21. <select ng-change="$emit('render')" class="input-small" ng-model="panel.map" ng-options="f for f in ['world','europe','usa']"></select>
  22. </div>
  23. </div>