Remove the '3' from OpenLayers

This commit is contained in:
Andreas Hocevar
2017-01-02 23:03:03 +01:00
parent ab3d97d6de
commit 7424ee91e3
80 changed files with 1888 additions and 1888 deletions

View File

@@ -1,9 +1,9 @@
---
layout: example.html
title: d3 Integration
shortdesc: Example of using ol3 and d3 together.
shortdesc: Example of using OpenLayers and d3 together.
docs: >
<p>The example loads TopoJSON geometries and uses d3 (<code>d3.geo.path</code>) to render these geometries to a canvas element that is then used as the image of an ol3 image layer.</p>
<p>The example loads TopoJSON geometries and uses d3 (<code>d3.geo.path</code>) to render these geometries to a canvas element that is then used as the image of an OpenLayers image layer.</p>
tags: "d3"
resources:
- https://d3js.org/d3.v3.min.js

View File

@@ -84,7 +84,7 @@ function flash(feature) {
ol.Observable.unByKey(listenerKey);
return;
}
// tell OL3 to continue postcompose animation
// tell OpenLayers to continue postcompose animation
map.render();
}
listenerKey = map.on('postcompose', animate);

View File

@@ -166,7 +166,7 @@ var moveFeature = function(event) {
var feature = new ol.Feature(currentPoint);
vectorContext.drawFeature(feature, styles.geoMarker);
}
// tell OL3 to continue the postcompose animation
// tell OpenLayers to continue the postcompose animation
map.render();
};

View File

@@ -67,7 +67,7 @@ var animateFlights = function(event) {
vectorContext.drawGeometry(currentLine);
}
}
// tell OL3 to continue the animation
// tell OpenLayers to continue the animation
map.render();
};

View File

@@ -177,14 +177,14 @@
</script>
<title>OpenLayers 3 Examples</title>
<title>OpenLayers Examples</title>
</head>
<body>
<header class="navbar navbar-fixed-top" role="navigation">
<div class="container">
<div class="display-table pull-left">
<a class="navbar-brand" href="./"><img src="./resources/logo-70x70.png">&nbsp;OpenLayers 3 Examples</a>
<a class="navbar-brand" href="./"><img src="./resources/logo-70x70.png">&nbsp;OpenLayers Examples</a>
<form class="navbar-form" role="search">
<input name="q" type="text" id="keywords" class="search-query" placeholder="Search" autofocus>
<span id="count"></span>
@@ -196,7 +196,7 @@
<li><a href="../doc">Docs</a></li>
<li><a class="active" href="index.html">Examples</a></li>
<li><a href="../apidoc">API</a></li>
<li><a href="https://github.com/openlayers/ol3">Code</a></li>
<li><a href="https://github.com/openlayers/openlayers">Code</a></li>
</ul>
</nav>
</div>

View File

@@ -1,10 +1,10 @@
---
layout: example.html
title: JSTS Integration
shortdesc: Example on how to use JSTS with OpenLayers 3.
shortdesc: Example on how to use JSTS with OpenLayers.
docs: >
Example showing the integration of <a href="https://github.com/bjornharrtell/jsts">JSTS</a>
with OpenLayers 3.
with OpenLayers.
tags: "vector, jsts, buffer"
resources:
- https://cdn.rawgit.com/bjornharrtell/jsts/gh-pages/1.2.0/jsts.min.js

View File

@@ -16,5 +16,5 @@ resources:
<a class="overlay" id="vienna" target="_blank" href="http://en.wikipedia.org/wiki/Vienna">Vienna</a>
<div id="marker" title="Marker"></div>
<!-- Popup -->
<div id="popup" title="Welcome to ol3"></div>
<div id="popup" title="Welcome to OpenLayers"></div>
</div>

View File

@@ -1,10 +1,10 @@
---
layout: example.html
title: topolis integration
shortdesc: Example on how to use topolis with OpenLayers 3.
shortdesc: Example on how to use topolis with OpenLayers.
docs: >
Example showing the integration of <a href="https://github.com/bjornharrtell/topolis">topolis</a>
with OpenLayers 3, enabling creating and editing topological geometry. Standard interaction draws edges, snapping to existing edges. Delete an edge by drawing a new edge crossing the one to delete.
with OpenLayers, enabling creating and editing topological geometry. Standard interaction draws edges, snapping to existing edges. Delete an edge by drawing a new edge crossing the one to delete.
tags: "draw, edit, vector, topology, topolis"
resources:
- https://cdn.rawgit.com/bjornharrtell/topolis/releases/0.1.1/topolis.min.js

View File

@@ -1,10 +1,10 @@
---
layout: example.html
title: turf.js
shortdesc: Example on how to use turf.js with OpenLayers 3.
shortdesc: Example on how to use turf.js with OpenLayers.
docs: >
Example showing the integration of <a href="http://turfjs.org">turf.js</a>
with OpenLayers 3. The turf.js function <code>along</code> is used to
with OpenLayers. The turf.js function <code>along</code> is used to
display a marker every 200 meters along a street.
tags: "vector, turfjs, along, distance"
resources:

View File

@@ -3,7 +3,7 @@ layout: example.html
title: WMS without Projection
shortdesc: Example of two WMS layers using the projection EPSG:21781, which is unknown to the client.
docs: >
As long as no coordinate transformations are required, OpenLayers 3 works fine with projections that are only configured with a `code` and `units`.
As long as no coordinate transformations are required, OpenLayers works fine with projections that are only configured with a `code` and `units`.
tags: "wms, projection"
---
<div id="map" class="map"></div>