Merge pull request #5157 from probins/measure

Improve docs for measure example
This commit is contained in:
Andreas Hocevar
2016-04-01 17:49:29 +02:00
2 changed files with 6 additions and 6 deletions

View File

@@ -1,19 +1,19 @@
---
layout: example.html
title: Measure
shortdesc: Example of using the ol.interaction.Draw interaction for creating simple measuring application.
shortdesc: Example of using the ol.interaction.Draw interaction to create a simple measuring application.
docs: >
<p><i>NOTE: If use geodesic measures is not checked, measure is done in simple way on projected plane. Earth curvature is not taken into account</i></p>
<p><i>NOTE: By default, length and area are calculated using the projected coordinates. This is not accurate for projections like Mercator where the projected meters do not correspond to meters on the ground. To get a standarized measurement across all projections, use the geodesic measures.</i></p>
tags: "draw, edit, measure, vector"
resources:
- https://code.jquery.com/jquery-1.11.2.min.js
---
<div id="map" class="map"></div>
<form class="form-inline">
<label>Geometry type &nbsp;</label>
<label>Measurement type &nbsp;</label>
<select id="type">
<option value="length">Length</option>
<option value="area">Area</option>
<option value="length">Length (LineString)</option>
<option value="area">Area (Polygon)</option>
</select>
<label class="checkbox">
<input type="checkbox" id="geodesic">

View File

@@ -174,7 +174,7 @@ var formatLength = function(line) {
/**
* Format length output.
* Format area output.
* @param {ol.geom.Polygon} polygon The polygon.
* @return {string} Formatted area.
*/