editor.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <div class="row-fluid">
  2. <div class="span11">
  3. This panel uses geoJSON points in a field to place markers on a map.
  4. Coordinates <strong>must be stored as an array in Elasticsearch</strong>.
  5. Also note that geoJSON is <strong>long,lat NOT lat,long</strong>.
  6. </div>
  7. </div>
  8. <div class="row-fluid">
  9. <div class="span4">
  10. <form>
  11. <h6>Coordinate Field</h6>
  12. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.field">
  13. </form>
  14. </div>
  15. <div class="span4">
  16. <form>
  17. <h6>Tooltip Field</h6>
  18. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.tooltip">
  19. </form>
  20. </div>
  21. <div class="span2"><h6>Max Points</h6>
  22. <input type="number" class="input-small" ng-model="panel.size">
  23. </div>
  24. </div>
  25. <h5>Panel Spy</h5>
  26. <div class="row-fluid">
  27. <div class="span2">
  28. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  29. </div>
  30. <div class="span9 small">
  31. The panel spy shows 'behind the scenes' information about a panel. It can
  32. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  33. of the panel.
  34. </div>
  35. </div>