LeafletJS: a JavaScript library for interactive maps
21–30 of 91 posts
Re: LeafletJS: a JavaScript library for interactive maps
#22Re: LeafletJS: a JavaScript library for interactive maps
#23I have used this and it is excellent. It is a tremendous alternative to all the paid GIS/mapping suites.
I've used it and it's nice for use cases that match very closely to what they support and provide documentation/examples for. As a quick drop-in map widget on a web page, it's quite nice. I've also used Mapbox which provides a much fancier OpenGL map with fancy things like continuous (smooth) zoom levels. Mapbox feels a lot more like a modern Google Maps-esque mapping widget. https://docs.mapbox.com/mapbox-gl-js/exam…
Re: LeafletJS: a JavaScript library for interactive maps
#24Re: LeafletJS: a JavaScript library for interactive maps
#25I don’t blame the Leaflet folks for this really, rendering map data locally via WebGL is not a simple task. But it’s been depressing to see folks like MapBox close off their vector-based library (and Google’s isn’t open either). There’s an open source of Mapbox’s library but it still feels like the open source world is being left out in the cold compared to how things were just a few years ago.
Re: LeafletJS: a JavaScript library for interactive maps
#26I have used this and it is excellent. It is a tremendous alternative to all the paid GIS/mapping suites.
You will pretty much always have to pay for the tileserver service though. The main benefit I saw was that you could trivially switch to any other tile service without being tied in to a particular one like if you used the google maps library.
Re: LeafletJS: a JavaScript library for interactive maps
#27Earlier quoted context omitted.
You will pretty much always have to pay for the tileserver service though. The main benefit I saw was that you could trivially switch to any other tile service without being tied in to a particular one like if you used the google maps library.
Depending on the use case, you may be able to host tiles on any web host/cdn
Re: LeafletJS: a JavaScript library for interactive maps
#28Cool to see leaflet mentioned as I’ve been using it this week :P
Re: LeafletJS: a JavaScript library for interactive maps
#29I’ve used Leaflet a ton and love it. But I recently tried using it with a vector-based render method (as opposed to the rastered tiles Leaflet uses by default) and couldn’t find anything that worked anywhere near as easily and simply as Leaflet’s standard rendering. I don’t blame the Leaflet folks for this really, rendering map data locally via WebGL is not a simple task. But it’s been depressing to see folks like Ma…