editor.html 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <div class="row-fluid">
  2. <div class="span4">
  3. <form>
  4. <h6>Coordinate Field <i class="icon-question-sign" bs-tooltip="'geoJSON array! Long,Lat NOT Lat,Long'"></i></h6>
  5. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.field">
  6. </form>
  7. </div>
  8. <div class="span4">
  9. <form>
  10. <h6>Tooltip Field</h6>
  11. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.tooltip">
  12. </form>
  13. </div>
  14. <div class="span2"><h6>Max Points</h6>
  15. <input type="number" class="input-small" ng-model="panel.size">
  16. </div>
  17. </div>
  18. <div class="row-fluid" ng-include="'partials/querySelect.html'"></div>
  19. <h5>Panel Spy</h5>
  20. <div class="row-fluid">
  21. <div class="span2">
  22. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  23. </div>
  24. <div class="span9 small">
  25. The panel spy shows 'behind the scenes' information about a panel. It can
  26. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  27. of the panel.
  28. </div>
  29. </div>