-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f29d0a0
commit 7556418
Showing
1 changed file
with
140 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,150 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<head> | ||
<!-- Standard Meta --> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0" | ||
/> | ||
|
||
<!-- Standard Meta --> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | ||
<!-- Site Properities --> | ||
<title>Angular Openlayers Directive</title> | ||
|
||
<!-- Site Properities --> | ||
<title>Angular Openlayers Directive</title> | ||
<link | ||
href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="bower_components/semantic-ui/dist/semantic.min.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="bower_components/prism/themes/prism.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="bower_components/openlayers3/build/ol.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="dist/angular-openlayers-directive.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="//raw.githubusercontent.com/lafeber/world-flags-sprite/master/stylesheets/flags32-both.css" | ||
/> | ||
<link rel="stylesheet" type="text/css" href="dist/app.css" /> | ||
|
||
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" type="text/css" href="bower_components/semantic-ui/dist/semantic.min.css"> | ||
<link rel="stylesheet" type="text/css" href="bower_components/prism/themes/prism.css"> | ||
<link rel="stylesheet" type="text/css" href="bower_components/openlayers3/build/ol.css"> | ||
<link rel="stylesheet" type="text/css" href="dist/angular-openlayers-directive.css"> | ||
<link rel="stylesheet" type="text/css" href="http://cloud.github.com/downloads/lafeber/world-flags-sprite/flags32.css" /> | ||
<link rel="stylesheet" type="text/css" href="dist/app.css"> | ||
|
||
<script src="bower_components/jquery/dist/jquery.min.js"></script> | ||
<script src="bower_components/prism/prism.js"></script> | ||
<script src="bower_components/semantic-ui/dist/semantic.min.js"></script> | ||
<script src="bower_components/angular/angular.min.js"></script> | ||
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script> | ||
<script src="bower_components/openlayers3/build/ol.js"></script> | ||
<script src="bower_components/angular-route/angular-route.min.js"></script> | ||
<script src="dist/angular-openlayers-directive.min.js"></script> | ||
<script src="dist/app.min.js"></script> | ||
|
||
</head> | ||
<body ng-app="webapp" ng-controller="MainController"> | ||
<div class="ui divided equal height padded grid leftside"> | ||
<div class="seven wide middle column"> | ||
<a class="ui right floated red launch button" href="http://github.com/tombatossals/angular-openlayers-directive"> | ||
<i class="social github icon"></i> Github | ||
</a> | ||
<script src="bower_components/jquery/dist/jquery.min.js"></script> | ||
<script src="bower_components/prism/prism.js"></script> | ||
<script src="bower_components/semantic-ui/dist/semantic.min.js"></script> | ||
<script src="bower_components/angular/angular.min.js"></script> | ||
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script> | ||
<script src="bower_components/openlayers3/build/ol.js"></script> | ||
<script src="bower_components/angular-route/angular-route.min.js"></script> | ||
<script src="dist/angular-openlayers-directive.min.js"></script> | ||
<script src="dist/app.min.js"></script> | ||
</head> | ||
<body ng-app="webapp" ng-controller="MainController"> | ||
<div class="ui divided equal height padded grid leftside"> | ||
<div class="seven wide middle column"> | ||
<a | ||
class="ui right floated red launch button" | ||
href="http://github.com/tombatossals/angular-openlayers-directive" | ||
> | ||
<i class="social github icon"></i> Github | ||
</a> | ||
|
||
<h2 class="ui header"><a href="#/">angular-openlayers-directive</a></h2> | ||
<p>This project provides an <a href="http://angularjs.org">AngularJS</a> directive useful to manage the <a href="http://openlayers.org">Openlayers Maps library</a> inside your angular application. Very easy to use, you can take a look at the <a href="https://github.com/tombatossals/angular-openlayers-directive/tree/master/doc">not-extensive-enough documentation</a>, or the source code of these example to check if it fits your needs.</p> | ||
<p>Any <a href="https://github.com/tombatossals/angular-openlayers-directive/blob/master/CONTRIBUTING.md">contribution</a> or new idea to the project is welcomed.</p> | ||
<h2>Example-driven documentation</h2> | ||
<div class="ui tabular filter menu"> | ||
<a class="item" ng-class="{ active: section === 'first' }" ng-click="section='first'">First steps</a> | ||
<a class="item" ng-class="{ active: section === 'layers' }" ng-click="section='layers'">Layers</a> | ||
<a class="item" ng-class="{ active: section === 'markers' }" ng-click="section='markers'">Markers</a> | ||
<a class="item" ng-class="{ active: section === 'events' }" ng-click="section='events'">Events</a> | ||
<a class="item" ng-class="{ active: section === 'more' }" ng-click="section='more'">More...</a> | ||
<h2 class="ui header"> | ||
<a href="#/">angular-openlayers-directive</a> | ||
</h2> | ||
<p> | ||
This project provides an | ||
<a href="http://angularjs.org">AngularJS</a> directive | ||
useful to manage the | ||
<a href="http://openlayers.org">Openlayers Maps library</a> | ||
inside your angular application. Very easy to use, you can | ||
take a look at the | ||
<a | ||
href="https://github.com/tombatossals/angular-openlayers-directive/tree/master/doc" | ||
>not-extensive-enough documentation</a | ||
>, or the source code of these example to check if it fits | ||
your needs. | ||
</p> | ||
<p> | ||
Any | ||
<a | ||
href="https://github.com/tombatossals/angular-openlayers-directive/blob/master/CONTRIBUTING.md" | ||
>contribution</a | ||
> | ||
or new idea to the project is welcomed. | ||
</p> | ||
<h2>Example-driven documentation</h2> | ||
<div class="ui tabular filter menu"> | ||
<a | ||
class="item" | ||
ng-class="{ active: section === 'first' }" | ||
ng-click="section='first'" | ||
>First steps</a | ||
> | ||
<a | ||
class="item" | ||
ng-class="{ active: section === 'layers' }" | ||
ng-click="section='layers'" | ||
>Layers</a | ||
> | ||
<a | ||
class="item" | ||
ng-class="{ active: section === 'markers' }" | ||
ng-click="section='markers'" | ||
>Markers</a | ||
> | ||
<a | ||
class="item" | ||
ng-class="{ active: section === 'events' }" | ||
ng-click="section='events'" | ||
>Events</a | ||
> | ||
<a | ||
class="item" | ||
ng-class="{ active: section === 'more' }" | ||
ng-click="section='more'" | ||
>More...</a | ||
> | ||
</div> | ||
<div class="ui selection list"> | ||
<a | ||
class="item" | ||
ng-class="{ active: activeExample.url === example.url }" | ||
ng-href="#/{{ section }}/{{ example.url }}" | ||
ng-repeat="example in examples[section]" | ||
> | ||
<i class="map marker icon"></i> | ||
<div class="content"> | ||
<div | ||
ng-bind="($index +1) + '.' + example.title" | ||
></div> | ||
<div | ||
ng-if="example.description" | ||
class="description" | ||
ng-bind="example.description" | ||
></div> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="ui selection list"> | ||
<a class="item" ng-class="{ active: activeExample.url === example.url }" ng-href="#/{{ section }}/{{ example.url }}" ng-repeat="example in examples[section]"> | ||
<i class="map marker icon"></i> | ||
<div class="content"> | ||
<div ng-bind="($index +1) + '.' + example.title"></div> | ||
<div ng-if="example.description" class="description" ng-bind="example.description"></div> | ||
</div> | ||
</a> | ||
<div class="nine wide right column rightside"> | ||
<div ng-view></div> | ||
</div> | ||
</div> | ||
<div class="nine wide right column rightside"> | ||
<div ng-view></div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</body> | ||
</html> |