You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
3.6 KiB

  1. <!DOCTYPE html>
  2. <html ng-app="mainPage" lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <!--<meta name="fragment" content="!">-->
  6. <meta name="keywords" content="angularjs,leaflet,openstreetmap,javascript,directive,plugin,google maps">
  7. <meta name="description" content="Leaflet directive for AngularJS">
  8. <title>Leaflet directive for AngularJS</title>
  9. <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="bower_components/leaflet/dist/leaflet.css" />
  11. <link rel="stylesheet" href="bower_components/highlightjs/styles/github.css" />
  12. <link rel="stylesheet" type="text/css" href="http://cloud.github.com/downloads/lafeber/world-flags-sprite/flags32.css" />
  13. <link rel="stylesheet" href="website/css/style.css" />
  14. </head>
  15. <body ng-cloak ng-controller="MainController">
  16. <div class="container" ng-controller="HeaderController">
  17. <header class="navbar navbar-default" role="navigation">
  18. <div class="navbar-header">
  19. <a href="#!/" class="navbar-brand">ui-leaflet</a>
  20. </div>
  21. <ul class="nav navbar-nav navbar-right">
  22. <li ng-class="{ active: activeTab == 'getting-started' || activeTab == '' }"><a href="#!/getting-started">Getting started</a></li>
  23. <li ng-class="{ active: activeTab == 'examples' }"><a ng-href="#!/examples/simple-map">Examples</a></li>
  24. <li ng-class="{ active: activeTab == 'howto-extend' }"><a ng-href="#!/howto-extend">How to extend</a></li>
  25. <li><a href="http://github.com/angular-ui/ui-leaflet">Github repository</a></li>
  26. </ul>
  27. </header>
  28. <div class="banner">
  29. <a class="forkme" href="https://github.com/angular-ui/ui-leaflet" rel="external">
  30. <img src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub">
  31. </a>
  32. <leaflet center="center" defaults="defaults" events="events" id="header"></leaflet>
  33. </div>
  34. <div class="bottom-banner">
  35. <div class="container">
  36. Simple to use directive for easy embedding and interacting with a map managed with the <a href="http://leafletjs.com/">leaflet map library</a> on an <a href="http://angularjs.org">AngularJS</a> application.
  37. </div>
  38. </div>
  39. </div>
  40. <div class="container content">
  41. <ng-view></ng-view>
  42. </div>
  43. <div class="container footer">
  44. <footer role="contentinfo">
  45. <p class="pull-right">Page built with <a href="http://leafletjs.com">LeafletJS</a>, <a href="http://angularjs.org/">AngularJS</a> and <a href="http://getbootstrap.com/">Bootstrap</a></p>
  46. </footer>
  47. </div>
  48. <script src="https://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"></script>
  49. <script src="bower_components/jquery/dist/jquery.min.js"></script>
  50. <script src="bower_components/leaflet/dist/leaflet.js"></script>
  51. <script src="bower_components/leaflet-plugins/layer/tile/Google.js"></script>
  52. <script src="bower_components/highlightjs/highlight.pack.js"></script>
  53. <script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
  54. <script src="bower_components/angular/angular.js"></script>
  55. <script src="bower_components/angular-route/angular-route.min.js"></script>
  56. <script src="bower_components/angular-highlightjs/angular-highlightjs.min.js"></script>
  57. <script src="bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
  58. <script src="dist/ui-leaflet.js"></script>
  59. <script src="website/dist/js/ui-leaflet-webpage.js"></script>
  60. </body>
  61. </html>