[openstreetmap/openstreetmap-website] Migrate the dashboard entry page from leaflet to maplibre (PR #6504)
Frank Elsinga
notifications at github.com
Tue Nov 18 09:46:15 UTC 2025
@CommanderStorm commented on this pull request.
> $(function () {
const defaultHomeZoom = 12;
let map;
if ($("#map").length) {
- map = L.map("map", {
+ map = new maplibregl.Map({
+ container: "map",
+ style: {
+ version: 8,
+ name: "OSM Raster",
+ sources: {
+ osm: {
+ type: "raster",
+ tiles: [
+ "https://tile.openstreetmap.org/{z}/{x}/{y}.png"
+ ],
+ tileSize: 256,
+ maxzoom: 19,
+ attribution: "© OpenStreetMap contributors"
I guess for now this can be removed, but it will be re-added in the next PR where this is generalised.
I don't think this matters.
```suggestion
```
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6504#discussion_r2537177412
You are receiving this because you are subscribed to this thread.
Message ID: <openstreetmap/openstreetmap-website/pull/6504/review/3476568759 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20251118/fcdf10a7/attachment.htm>
More information about the rails-dev
mailing list