Make the titles more like titles

This commit is contained in:
Tim Schaub
2015-11-14 16:03:13 -07:00
parent 3035bbdfd3
commit b8cf2b213b
14 changed files with 14 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Accessibility example
title: Acessible Map
shortdesc: Example of an accessible map.
docs: >
This page's `map` element has its `tabindex` attribute set to `"0"`, that makes it focusable. To focus the map element you can either navigate to it using the "tab" key or use the skip link. When the `map` element is focused the + and - keys can be used to zoom in and out and the arrow keys can be used to pan.

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Animation example
title: View Animation
shortdesc: Demonstrates animated pan, zoom, and rotation.
docs: >
This example shows how to use the beforeRender function on the Map to run one

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Tiled ArcGIS MapServer example
title: Tiled ArcGIS MapServer
shortdesc: Example of a tiled ArcGIS layer.
docs: >
This example shows how to use an ArcGIS REST MapService as tiles.

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Attributions example
title: Attributions
shortdesc: Example of a attributions visibily change on map resize, to collapse them on small maps.
docs: >
When the map gets too small because of a resize, the attribution will be collapsed.

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Bing Maps example
title: Bing Maps
shortdesc: Example of a Bing Maps layer.
docs: >
<p>When the Bing Maps tile service doesn't have tiles for a given resolution and region it returns "placeholder" tiles indicating that. Zoom the map beyond level 19 to see the "placeholder" tiles. If you want OpenLayers to display stretched tiles in place of "placeholder" tiles beyond zoom level 19 then set <code>maxZoom</code> to <code>19</code> in the options passed to <code>ol.source.BingMaps</code>.</p>

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Blend modes example
title: Blend Modes
shortdesc: Shows how to change the canvas compositing / blending mode in post- and precompose eventhandlers.
docs: >
<p>This example shows how to change the canvas compositing / blending mode in

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Box selection example
title: Box Selection
shortdesc: Using a DragBox interaction to select features.
docs: >
<p>This example shows how to use a <code>DragBox</code> interaction to select features. Selected features are added

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Custom tooltips example
title: Custom Tooltips
shortdesc: This example shows how to customize the buttons tooltips with Bootstrap.
docs: >
This example shows how to customize the buttons tooltips with <a href="http://getbootstrap.com/javascript/#tooltips">Bootstrap</a>.

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Canvas tiles example
title: Canvas Tiles
shortdesc: Renders tiles with coordinates for debugging.
docs: >
The black grid tiles are generated on the client with an HTML5 canvas. The

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Advanced View Positioning example
title: Advanced View Positioning
shortdesc: This example demonstrates how a map's view can be adjusted so a geometry or coordinate is positioned at a specific pixel location.
docs: >
This example demonstrates how a map's view can be

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Clustering example
title: Clustered Features
shortdesc: Example of using <code>ol.source.Cluster</code>.
docs: >
This example shows how to do clustering on point features.

View File

@@ -1,6 +1,6 @@
---
layout: strapless.html
title: Manipulating colors with a raster source
title: Color Manipulation
shortdesc: Demonstrates color manipulation with a raster source.
docs: >
A raster source allows arbitrary manipulation of pixel values. In this example, RGB values on the input tile source are adjusted in a pixel-wise operation before being rendered with a second raster source. The raster operation takes pixels in in RGB space, converts them to HCL color space, adjusts the values based on the controls above, and then converts them back to RGB space for rendering.

View File

@@ -1,6 +1,6 @@
---
layout: example.html
title: Custom control example
title: Custom Controls
shortdesc: Shows how to create custom controls.
docs: >
This example creates a "rotate to north" button.

View File

@@ -1,6 +1,6 @@
---
layout: example.html
title: Custom interaction example
title: Custom Interactions
shortdesc: Example of a custom interaction.
docs: >
This example demonstrates creating a custom interaction by subclassing `ol.interaction.Pointer`.