From 05bf1d8f4a2ddd80bc99680a6990d962fcc83bc6 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 15 Nov 2018 12:25:51 +0100 Subject: [PATCH] Remove the resolutions list in sphere-mollweide example --- examples/graticule.html | 4 ++-- examples/sphere-mollweide.html | 4 ++-- examples/sphere-mollweide.js | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/graticule.html b/examples/graticule.html index 82e8c08eb3..9839c97975 100644 --- a/examples/graticule.html +++ b/examples/graticule.html @@ -1,9 +1,9 @@ --- layout: example.html title: Map Graticule -shortdesc: This example shows how to add a graticule overlay to a map. +shortdesc: This example shows how to add a graticule layer to a map. docs: > - This example shows how to add a graticule overlay to a map. + This example shows how to add a graticule layer to a map. tags: "graticule" ---
diff --git a/examples/sphere-mollweide.html b/examples/sphere-mollweide.html index f57a4ccb25..3c5872df38 100644 --- a/examples/sphere-mollweide.html +++ b/examples/sphere-mollweide.html @@ -1,9 +1,9 @@ --- layout: example.html title: Sphere Mollweide -shortdesc: Example of a Sphere Mollweide map with a Graticule component. +shortdesc: Example of a Sphere Mollweide map with a Graticule layer. docs: > - Example of a Sphere Mollweide map with a Graticule component. + Example of a Sphere Mollweide map with a Graticule layer. tags: "graticule, Mollweide, projection, proj4js" ---
diff --git a/examples/sphere-mollweide.js b/examples/sphere-mollweide.js index 340119a7d7..7540cd095b 100644 --- a/examples/sphere-mollweide.js +++ b/examples/sphere-mollweide.js @@ -37,7 +37,6 @@ const map = new Map({ view: new View({ center: [0, 0], projection: sphereMollweideProjection, - resolutions: [65536, 32768, 16384, 8192, 4096, 2048], zoom: 0 }) });