Skip to content

Commit 1e109aa

Browse files
authored
Merge pull request ckan#344 from GSA/map-widgets-doc-link
update map-widgets documentation link
2 parents bea50c5 + 9d34599 commit 1e109aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
* Dropped support for Python 2
2828
* Dropped support for the PostGIS search backend
29-
* Updated the common map JS module to support many different tile providers. The default Stamen Terrain tile will no longer work, and users will need to configure a map tiles provider. Please check the [documentation](https://docs.ckan.org/projects/ckanext-spatial/en/latest/map-widgets.html) for full details.
29+
* Updated the common map JS module to support many different tile providers. The default Stamen Terrain tile will no longer work, and users will need to configure a map tiles provider. Please check the [documentation](https://docs.ckan.org/projects/ckanext-spatial/en/latest/map-widgets/) for full details.
3030
* Upgrade tests to check all envs, including CKAN 2.10 with Python 3.10 [#308](https://github.com/ckan/ckanext-spatial/pull/308)
3131
* TypeError when spatial is missing [#306](https://github.com/ckan/ckanext-spatial/pull/306)
3232
* Fix requirements [#313](https://github.com/ckan/ckanext-spatial/pull/313)

ckanext/spatial/public/js/common_map.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
onAdd: (map) => {
8686
let element = document.createElement("div");
8787
element.className = "leaflet-control-no-provider";
88-
element.innerHTML = 'No map provider set. Please check the <a href="https://docs.ckan.org/projects/ckanext-spatial/en/latest/map-widgets.html">documentation</a>';
88+
element.innerHTML = 'No map provider set. Please check the <a href="https://docs.ckan.org/projects/ckanext-spatial/en/latest/map-widgets/">documentation</a>';
8989
return element;
9090
},
9191
onRemove: (map) => {}

0 commit comments

Comments
 (0)