editor.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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="span11">
  10. <h6>Query</h6>
  11. <input type="text" style="width:100%" ng-model="panel.query">
  12. </div>
  13. </div>
  14. <div class="row-fluid">
  15. <div class="span4">
  16. <form>
  17. <h6>Coordinate Field</h6>
  18. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.field">
  19. </form>
  20. </div>
  21. <div class="span4">
  22. <form>
  23. <h6>Tooltip Field</h6>
  24. <input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.tooltip">
  25. </form>
  26. </div>
  27. <div class="span2"><h6>Max Points</h6>
  28. <input type="number" class="input-small" ng-model="panel.size">
  29. </div>
  30. </div>
  31. <h5>Panel Spy</h5>
  32. <div class="row-fluid">
  33. <div class="span2">
  34. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  35. </div>
  36. <div class="span9 small">
  37. The panel spy shows 'behind the scenes' information about a panel. It can
  38. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  39. of the panel.
  40. </div>
  41. </div>