maplibre-gl-js

MapLibre GL JS - Interactive vector tile maps in the browser (by maplibre)

Maplibre-gl-js Alternatives

Similar projects and alternatives to maplibre-gl-js

  1. vite

    892 maplibre-gl-js VS vite

    Next generation frontend tooling. It's fast!

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. Angular

    788 maplibre-gl-js VS Angular

    Deliver web apps with confidence πŸš€

  4. Svelte

    699 maplibre-gl-js VS Svelte

    web development for the rest of us

  5. Leaflet

    233 maplibre-gl-js VS Leaflet

    πŸƒ JavaScript library for mobile-friendly interactive maps πŸ‡ΊπŸ‡¦

  6. OpenLayers3

    OpenLayers

  7. headway

    Discontinued Self-hostable maps stack, powered by OpenStreetMap.

  8. planetiler

    Flexible tool to build planet-scale vector tilesets from OpenStreetMap data fast

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. mapbox-gl-js

    Interactive, thoroughly customizable maps in the browser, powered by vector tiles and WebGL

  11. map-of-github

    Inspirational Mapping

  12. tilemaker

    Make OpenStreetMap vector tiles without the stack

  13. PMTiles

    17 maplibre-gl-js VS PMTiles

    Pyramids of map tiles in a single file on static storage

  14. graphhopper-maps

    GraphHopper Maps - Open Source Route Planner UI

  15. procedural-gl-js

    Mobile-first 3D mapping engine with emphasis on user experience

  16. openstreetmap-tile-server

    Docker file for a minimal effort OpenStreetMap tile server

  17. TileServer GL

    Vector and raster maps with GL styles. Server side rendering by MapLibre GL Native. Map tile server for MapLibre GL JS, Android, iOS, Leaflet, OpenLayers, GIS via WMTS, etc.

  18. maplibre-native

    MapLibre Native - Interactive vector tile maps for iOS, Android and other platforms.

  19. incubator-baremaps

    Create custom vector tiles from OpenStreetMap and other data sources with Postgis and Java.

  20. OpenTopoMap

    A topographic map from OpenStreetMap and SRTM data

  21. Cesium

    11 maplibre-gl-js VS Cesium

    An open-source JavaScript library for world-class 3D globes and maps :earth_americas:

  22. leaflet-geoman

    πŸ‚πŸ—ΊοΈ The most powerful leaflet plugin for drawing and editing geometry layers

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better maplibre-gl-js alternative or higher similarity.

maplibre-gl-js discussion

Log in or Post with

maplibre-gl-js reviews and mentions

Posts with mentions or reviews of maplibre-gl-js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-11-18.
  • Building a Map Application with Amazon Location Service v2 and MapLibre GL JS
    2 projects | dev.to | 18 Nov 2024
    I was offered by the service team and participated in the verification work before the release. In the new version, several new features have been added, greatly improving the convenience of use. In particular, it is worth noting that the API is now available at a unified endpoint without creating resources. This change means that users no longer need to prepare individual resources and can start using the API immediately. In addition, the Maps API, Places API, and Routes API have been significantly enhanced, and new features have been added, making them even more useful for a wider range of applications. Furthermore, they continue to be compatible with open source map libraries, and in particular, they work smoothly in combination with MapLibre GL JS.
  • My Second Year as a Developer Advocate: A Journey Through Different Conferences
    7 projects | dev.to | 29 Aug 2024
    Our talk, β€œOpen Source Mapping Library Shoot Out,” focused on comparing popular open-source mapping libraries like MapLibre GL JS, Leaflet, and OpenLayers, helping developers make informed decisions about the tools they use. This was my first time presenting at a third-party conference, but having my co-worker by my side made the experience less daunting and allowed me to focus more on delivering the content confidently.
  • Protomaps – A free and open source map of the world
    12 projects | news.ycombinator.com | 23 Oct 2023
    (.shp .gpkg ...) | ogr2ogr -> .geojson | tippecanoe -> .pmtiles

    for OpenStreetMap data there's planetiler[4], and and openmaptiles[5] styles that work with Maplibre

    with those combinations you've got a great start to something you can host for pennies on AWS S3+CloudFront or Cloudflare R2, with an open source data pipeline

    [1] https://maplibre.org/

  • GPSJam: Daily maps of possible GPS interference
    1 project | news.ycombinator.com | 13 Oct 2023
  • Building a Map Application with MapLibre GL JS and Svelte
    3 projects | dev.to | 21 Sep 2023
    MapLibre GL JS v3.3.1
  • New Map APIs from Google
    1 project | news.ycombinator.com | 30 Aug 2023
    Does anyone else have a solution for the satellite layer? I was using MapLibre [0] then needed direct-on-the-ground images which made me convert to Google Maps.

    [0] https://maplibre.org/

  • The OpenTF Manifesto
    8 projects | news.ycombinator.com | 15 Aug 2023
  • Use 3D map library with API key function of Amazon Location Service
    3 projects | dev.to | 2 Aug 2023
    When using the Amazon Location Service, I recommend MapLibre GL JS, which I introduced in my previous article, "Amazon Location Service and AWS Amplify to Use Various Map Library," but you can also use any map library you like, including iTowns this time. I hope you will choose the map library of your choice, including iTowns!
  • Using Lidar to map tree shadows
    3 projects | news.ycombinator.com | 9 Jul 2023
    Your browser has a very powerful image decoder built into it, offloading the PNG decoding into Javascript is very resource hungry.

    Using maplibre (or any map viewer) you can load blobs of image data out of a tiff and use `Image` or `Canvas` to render the data onto a map.

    Its even easier if the tiffs are already Cloud optimized as they perfectly align to a 1-to-1 map tile and they don't need to be rescaled, you can then just render the images onto the map. eg here is a viewer that loads webps out of a 15GB tiff and uses Canvas to render them onto a map [1]

    Unless you are trying to layer all your maps together, you also could stop reprojecting them into webmercator, or if your goal is to layer them, then storing them in webmercator would save a ton of user's compute time.

    There are a bunch of us that talk web maping and imagery in the #maplibre and #imagery slack channels in OSMUS's slack [2]

    [1] https://blayne.chard.com/cogeotiff-web/index.html?view=cog&i...

    [2] https://github.com/maplibre/maplibre-gl-js#getting-involved

  • Apache Baremaps: online maps toolkit
    6 projects | news.ycombinator.com | 28 May 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 25 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more β†’

Stats

Basic maplibre-gl-js repo stats
58
7,317
9.9
7 days ago

Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?