[OpenLayers-Commits] r4728 - sandbox/docs/examples
commits at openlayers.org
commits at openlayers.org
Mon Oct 1 00:48:26 EDT 2007
Author: crschmidt
Date: 2007-10-01 00:48:24 -0400 (Mon, 01 Oct 2007)
New Revision: 4728
Removed:
sandbox/docs/examples/supports-vector.html
Modified:
sandbox/docs/examples/markersTextLayer.html
sandbox/docs/examples/mm.html
sandbox/docs/examples/multimap-mercator.html
sandbox/docs/examples/wfs.html
Log:
remote supports-vector example, no longer neccesary, and add more
docs.
Modified: sandbox/docs/examples/markersTextLayer.html
===================================================================
--- sandbox/docs/examples/markersTextLayer.html 2007-10-01 04:43:12 UTC (rev 4727)
+++ sandbox/docs/examples/markersTextLayer.html 2007-10-01 04:48:24 UTC (rev 4728)
@@ -1,5 +1,6 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
+ <title>Using a Layer.Text to display markers</title>
<style type="text/css">
#map {
width: 512px;
@@ -28,7 +29,11 @@
</script>
</head>
<body onload="init()">
- <h1>OpenLayers Example</h1>
+ <h1 id="title">Using a Layer.Text to display markers</h1>
+ <p id="shortdesc">
+ The Layer.Text class reads a Tab seperated values file and displays it as markers on
+ the map.
+ </p>
<div id="map"></div>
</body>
</html>
Modified: sandbox/docs/examples/mm.html
===================================================================
--- sandbox/docs/examples/mm.html 2007-10-01 04:43:12 UTC (rev 4727)
+++ sandbox/docs/examples/mm.html 2007-10-01 04:48:24 UTC (rev 4728)
@@ -1,5 +1,6 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
+ <title>MultiMap</title>
<style type="text/css">
#map {
width: 100%;
@@ -46,7 +47,10 @@
</script>
</head>
<body onload="init()">
- <h1>OpenLayers MultiMap Example</h1>
+ <h1 id="title">MultiMap Example</h1>
+ <p id="shortdesc">
+ An example of using the Layer.MultiMap class.
+ </p>
<div id="map"></div>
<div style="background-color:green" onclick="add()"> click to add the marker to the map</div>
<div style="background-color:red" onclick="remove()"> click to remove the marker from the map</div>
Modified: sandbox/docs/examples/multimap-mercator.html
===================================================================
--- sandbox/docs/examples/multimap-mercator.html 2007-10-01 04:43:12 UTC (rev 4727)
+++ sandbox/docs/examples/multimap-mercator.html 2007-10-01 04:48:24 UTC (rev 4728)
@@ -1,5 +1,6 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
+ <title>MultiMap SphericalMercator</title>
<style type="text/css">
#map {
width: 100%;
@@ -51,7 +52,12 @@
</script>
</head>
<body onload="init()">
- <h3>OpenLayers MultiMap Mercator Example</h3>
+ <h3 id="title">MultiMap Mercator Example</h3>
+ <p id="shortdesc">
+ This sphericalMercator example using multimap demonstrates that the
+ multimap layer does not fully support the sphericalMercator projection at
+ this time.
+ </p>
<div id="map"></div>
</body>
</html>
Deleted: sandbox/docs/examples/supports-vector.html
===================================================================
--- sandbox/docs/examples/supports-vector.html 2007-10-01 04:43:12 UTC (rev 4727)
+++ sandbox/docs/examples/supports-vector.html 2007-10-01 04:48:24 UTC (rev 4728)
@@ -1,22 +0,0 @@
-<html>
-<head>
-<script>
-function set() {
- if (document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#SVG", "1.1") ) {
- document.getElementById("svg11").style.background="green";
- }
- if (document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#SVGDOM", "1.1") ) {
- document.getElementById("svgdom").style.background="green";
- }
-}
-</script>
-</head>
-<body onload="set()">
-
-Vector Support:
-<br />
-Supports SVG 1.1: <div id="svg11" style="width:100px;height:100px;background-color:red"></div>
-<br />
-Supports SVG DOM: <div id="svgdom" style="width:100px;height:100px;background-color:red"></div>
-</body>
-</html>
Modified: sandbox/docs/examples/wfs.html
===================================================================
--- sandbox/docs/examples/wfs.html 2007-10-01 04:43:12 UTC (rev 4727)
+++ sandbox/docs/examples/wfs.html 2007-10-01 04:48:24 UTC (rev 4728)
@@ -29,7 +29,11 @@
</script>
</head>
<body onload="init()">
- <h1>OpenLayers Example</h1>
+ <h1 id="title">WFS Points</h1>
+ <p id='shortdesc'>
+ Using a Layer.WFS with a featureClass, one can take in XML data
+ from a WFS class and display it any way you like.
+ </p>
<div id="map"></div>
</body>
</html>
More information about the Commits
mailing list