editor.html 1.0 KB

12345678910111213141516171819202122232425262728
  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. <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 class="span9 small">
  24. The panel spy shows 'behind the scenes' information about a panel. It can
  25. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  26. of the panel.
  27. </div>
  28. </div>