user3553070
user3553070

Reputation: 45

What is the usage policy for Leaflet Maps?

I would like to know the usage policy for Leaflet tiles maps. Leaflet is based on OSM, but the documentation is not clear both in Leaflet and in OSM about the usage policy. Thank you for your Help!

Upvotes: 1

Views: 2759

Answers (2)

scai
scai

Reputation: 21469

Leaflet is a library. It doesn't provide any tiles at all. That means the policy depends on the tile server you are choosing. Each tile server has a different tile usage policy. The policy for OSM tiles can be found here.

Upvotes: 6

jperelli
jperelli

Reputation: 7197

Leaflet is only a library, is BSD licensed, you can use it everywhere, without warranty: https://github.com/Leaflet/Leaflet/blob/master/LICENSE

For the OSM tile usage limits, you can find them here https://operations.osmfoundation.org/policies/tiles/

Basically some rule of thumb I use is

  • if you have a "small" application (< 100 visits per day), use it, no problem.
  • if you have a "medium" app (< 1000 visits per day) consider using a tile cache server.
  • if you hace a "large" app (> 1000 visits per day) use a tile cache server

See: How to setup a tile cache server

Upvotes: 4

Related Questions