1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828
|
---
layout: v2
title: Plugins
bodyclass: plugins-page
---
## Leaflet Plugins
While Leaflet is meant to be as lightweight as possible, and focuses on a core set of features, an easy way to extend its functionality is to use third-party plugins. Thanks to the awesome community behind Leaflet, there are literally hundreds of nice plugins to choose from.
---
<div id="toc" class="clearfix">
<div class="toc-col">
<h4>Tile & image layers</h4>
<ul>
<li> <a href='#basemap-providers'>Basemap providers</a></li>
<li> <a href='#basemap-formats'>Basemap formats</a></li>
<li> <a href='#non-map-base-layers'>Non-map base layers</a></li>
<li> <a href='#tileimage-display'>Tile/image display</a></li>
<li> <a href='#tile-load'>Tile load</a></li>
<li> <a href='#vector-tiles'>Vector tiles</a></li>
</ul>
<h4>Overlay data</h4>
<ul>
<li> <a href='#overlay-data-formats'>Overlay data formats</a></li>
<li> <a href='#dynamiccustom-data-loading'>Dynamic data loading</a></li>
<li> <a href='#synthetic-overlays'>Synthetic overlays</a></li>
<li> <a href='#data-providers'>Data providers</a></li>
</ul>
</div>
<div class="toc-col">
<h4>Overlay Display</h4>
<ul>
<li><a href="#markers--renderers">Markers & renderers</a></li>
<li><a href="#overlay-animations">Overlay animations</a></li>
<li><a href="#clusteringdecluttering">Clustering/decluttering</a></li>
<li><a href="#heatmaps">Heatmaps</a></li>
<li><a href="#dataviz">DataViz</a></li>
</ul>
<h4>Overlay interaction</h4>
<ul>
<li><a href="#edit-geometries">Edit geometries</a></li>
<li><a href="#time--elevation">Time & elevation</a></li>
<li><a href="#search--popups">Search & popups</a></li>
<li><a href="#areaoverlay-selection">Area/overlay selection</a></li>
</ul>
</div>
<div class="toc-col">
<h4>Map interaction</h4>
<ul>
<li><a href="#layer-switching-controls">Layer switching controls</a></li>
<li><a href="#interactive-panzoom">Interactive pan/zoom</a></li>
<li><a href="#bookmarked-panzoom">Bookmarked pan/zoom</a></li>
<li><a href="#fullscreen-controls">Fullscreen</a></li>
<li><a href="#minimaps--synced-maps">Minimaps & synced maps</a></li>
<li><a href="#measurement">Measurement</a></li>
<li><a href="#mouse-coordinates">Mouse coordinates</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#user-interface">User interface</a></li>
<li><a href="#printexport">Print/export</a></li>
<li><a href="#geolocation">Geolocation</a></li>
</ul>
</div>
<div class="toc-col">
<h4>Miscellaneous</h4>
<ul>
<li><a href="#geoprocessing">Geoprocessing</a></li>
<li><a href="#routing">Routing</a></li>
<li><a href="#geocoding">Geocoding</a></li>
<li><a href="#plugin-collections">Plugin collections</a></li>
</ul>
<h4>Integration</h4>
<ul>
<li><a href="#frameworks--build-systems">Frameworks & build systems</a></li>
<li><a href="#3rd-party-integration">3<sup>rd</sup> party</a></li>
</ul>
<hr>
<a href="#develop-your-own">Develop your own</a>
</div>
</div>
## Tile & image layers
The following plugins allow loading different maps and provide functionality to tile and image layers.
* [Basemap providers](#basemap-providers)
* [Basemap formats](#basemap-formats)
* [Non-map base layers](#non-map-base-layers)
* [Tile/image display](#tileimage-display)
* [Tile load](#tile-load)
* [Vector tiles](#vector-tiles)
### Basemap providers
Ready-to-go basemaps, with little or no configuration at all.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/leaflet-extras/leaflet-providers">leaflet-providers</a>
</td><td>
Contains configurations for various free tile providers — OSM, OpenCycleMap, Stamen, Esri, etc.
</td><td>
<a href="https://github.com/leaflet-extras">leaflet-extras members</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tontita/Leaflet.KoreanTmsProviders">Leaflet.KoreanTmsProviders</a>
</td><td>
Contains configurations for various (South) Korean tile providers — Daum, Naver, VWorld, etc.
</td><td>
<a href="https://github.com/tontita/">Seong Choi</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/htoooth/Leaflet.ChineseTmsProviders">Leaflet.ChineseTmsProviders</a>
</td><td>
Contains configurations for various Chinese tile providers — TianDiTu, MapABC, GaoDe, etc.
</td><td>
<a href="https://github.com/htoooth/">Tao Huang</a>
</td>
</tr>
<tr>
<td>
<a href="http://esri.github.io/esri-leaflet">Esri Leaflet</a>
</td><td>
A set of tools for using ArcGIS services with Leaflet. Support for map services, feature layers, ArcGIS Online tiles and more.
</td><td>
<a href="https://github.com/patrickarlt/">Patrick Arlt</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/aparshin/leaflet-GIBS">Leaflet.GIBS</a>
</td><td>
<a href="https://earthdata.nasa.gov/gibs">NASA EOSDIS GIBS</a> imagery integration. The plugin provides <a href="https://wiki.earthdata.nasa.gov/display/GIBS/GIBS+Available+Imagery+Products">96 daily updated layers</a> with satellite imagery and science parameters. <a href="http://aparshin.github.io/leaflet-GIBS/examples/">Demo</a>.
</td><td>
<a href="https://github.com/aparshin">Alexander Parshin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/knreise/L.TileLayer.Kartverket">L.TileLayer.Kartverket</a>
</td><td>
Provides easy setup of the tile layers from <a href="http://kartverket.no/Kart/Gratis-kartdata/Cache-tjenester/">Kartverket</a> (The Norwegian Mapping Authority)
</td><td>
<a href="https://github.com/knreise">Kultur og naturreise</a> / <a href="https://github.com/atlefren">Atle Frenvik Sveen</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/sigdeletras/Leaflet.Spain.WMS">Leaflet.Spain.WMS</a>
</td><td>
Provides easy setup for several Web Map Services (WMS) layers for Spain (PNOA, IGN base, Catastro, etc), from Spanish mapping agencies.
</td><td>
<a href="https://github.com/sigdeletras">Patricio Soriano</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/GeoSensorWebLab/polarmap.js">PolarMap.js</a>
</td><td>
JavaScript library for displaying tiles from <a href="http://webmap.arcticconnect.org">ArcticWebMap</a>, a free tile provider with OSM data in multiple Arctic polar projections. Includes lower-level API for deeper integration with other Leaflet plugins.
</td><td>
<a href="https://github.com/geosensorweblab">GeoSensorWeb Lab</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gmaclennan/leaflet-bing-layer">Bing Maps Layer</a>
</td><td>
Add <a href="https://msdn.microsoft.com/en-us/library/ff701721.aspx">Bing Maps tiles</a> to your Leaflet Map. Requires Leaflet v1.0.0.beta.2 or later.
</td><td>
<a href="https://github.com/gmaclennan">Gregor MacLennan</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.TileLayer.HERE">L.TileLayer.HERE</a>
</td><td>
Displays map tiles from HERE maps (<a href="https://ivansanchez.gitlab.io/Leaflet.TileLayer.HERE/demo.html">demo</a>).
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.GridLayer.GoogleMutant">L.GridLayer.GoogleMutant</a>
</td><td>
Displays Google maps (with minimal artifacts thanks to a <a href='https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver'>DOM mutation observer</a> technique) (<a href="http://ivansanchez.gitlab.io/Leaflet.GridLayer.GoogleMutant/demo.html">demo</a>).
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.MapkitMutant">L.MapkitMutant</a>
</td><td>
Displays Apple's MapkitJS basemaps.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td> </tr>
<tr>
<td>
<a href="https://supermap.github.io/supermap-leaflet">SuperMap Leaflet</a>
</td><td>
SuperMap Leaflet is a Leaflet plugins for working with SuperMap service types.
Support for SuperMap services, tiles and more.
</td><td>
<a href="https://github.com/SuperMap">SuperMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MIERUNE/Leaflet.TileLayer.MIERUNE">Leaflet.TileLayer.Mierune</a>
</td><td>
Displays tiles from <a href="https://mierune.co.jp/tile.html">Mierune map</a>. (<a href="https://tile.mierune.co.jp">Demo</a>)
</td><td>
<a href="https://github.com/MIERUNE">Mierune</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rkaravia/Leaflet.TileLayer.Swiss">Leaflet.TileLayer.Swiss</a>
</td><td>
Displays national maps of Switzerland using map tiles from Swisstopo.
<a href="https://leaflet-tilelayer-swiss.karavia.ch/">Demo</a>.
</td><td>
<a href="https://github.com/rkaravia">Roman Karavia</a>
</td>
</tr>
</table>
### Basemap formats
Plugins for loading basemaps or GIS raster layers in common (albeit non-default) formats.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/mylen/leaflet.TileLayer.WMTS">leaflet.TileLayer.WMTS</a>
</td><td>Add WMTS (IGN) layering for leaflet.
</td><td>
<a href="https://github.com/mylen">Alexandre Melard</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/azgs/azgs-leaflet">azgs-leaflet</a>
</td><td>
A set of small plugins for Leaflet, including WFS-GeoJSON layer with filtering, a hover control for GeoJSON, and an Esri tile layer.
</td><td>
<a href="https://github.com/azgs">AZGS</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/heigeo/leaflet.wms">leaflet.wms</a>
</td><td>
Enhanced WMS support for Leaflet, including single-tile/untiled layers, shared WMS sources, and layer identify via GetFeatureInfo.
</td><td>
<a href="https://github.com/sheppard/">S. Andrew Sheppard</a><br>(<a href="https://github.com/heigeo/">HEI Geo</a>)
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stuartmatthews/Leaflet.NonTiledLayer.WCS">Leaflet.NonTiledLayer.WCS</a>
</td><td>
Display raster data from Web Coverage Services. Rasters can be styled and queried in the client. See the <a href="https://stuartmatthews.github.io/Leaflet.NonTiledLayer.WCS/">demo</a>.
</td><td>
<a href="https://github.com/stuartmatthews">Stuart Matthews</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/balrog-kun/Leaflet.bpg">Leaflet.bpg</a>
</td><td>
TileLayer with <a href="http://bellard.org/bpg/">.bpg</a> image format decoding.
</td><td>
<a href="https://github.com/balrog-kun/">Andrzej Zaborowski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/glenrobertson/leaflet-tilelayer-geojson/">TileLayer.GeoJSON</a>
</td><td>
A TileLayer for GeoJSON tiles.
</td><td>
<a href="https://github.com/glenrobertson">Glen Robertson</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/kartena/leaflet-tilejson">leaflet-tilejson</a>
</td><td>
Adds support for the <a href="https://github.com/mapbox/TileJSON">TileJSON</a> specification to Leaflet.
</td><td>
<a href="https://github.com/perliedman">Per Liedman</a>, <a href="http://www.kartena.se/">Kartena</a>
</td>
</tr>
<tr>
<td>
<a href="http://vizzuality.github.com/cartodb-leaflet/">cartodb-leaflet</a>
</td><td>
Official <a href="http://cartodb.com/">CartoDB</a> plugin for Leaflet.
</td><td>
<a href="http://vizzuality.com/">Vizzuality</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/emikhalev/leaflet-2gis">Leaflet-2gis</a>
</td><td>
Adds support for 2GIS tile layer
</td><td>
<a href="https://github.com/emikhalev/">Eugene Mikhalev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/geobricks/Leaflet.GeoJSON.Encoded">Leaflet GeoJSON Encoded</a>
</td><td>
Extends the L.GeoJSON layer using Google polyline encoding algorithm, allowing an optimized data transfer.
</td><td>
<a href="https://github.com/geobricks/">Geobricks</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.TileLayer.MBTiles">Leaflet.TileLayer.MBTiles</a>
</td><td>
Loads <a href="https://github.com/mapbox/mbtiles-spec"><code>.mbtiles</code></a> tilesets.
</td><td>
<a href="https://github.com/IvanSanchez/">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IHCantabria/Leaflet.CanvasLayer.Field">Leaflet.CanvasLayer.Field</a>
</td><td>
Loads and styles raster files (geotiff & asciigrid formats).
It includes a <code>ScalarField</code> layer (for DTM, temperature...) and
<code>VectorFieldAnim</code> (an animated layer for wind, currents...). See the <a href="https://ihcantabria.github.io/Leaflet.CanvasLayer.Field/">examples</a>
</td><td>
<a href="https://github.com/VictorVelarde">Víctor Velarde</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stuartmatthews/leaflet-geotiff">leaflet-geotiff</a>
</td><td>
Display raster data from geoTIFF files as images or direction arrows. Rasters can be styled and queried in the client. An optional clipping mask can be applied, e.g. to restrict DEMs to land areas. See the <a href="https://stuartmatthews.github.io/leaflet-geotiff/">demo</a>.
</td><td>
<a href="https://github.com/stuartmatthews">Stuart Matthews</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/GeoportalPL/leaflet.projwmts">Leaflet.projwmts</a>
</td><td>
Adding WMTS services (GUGiK Poland).
(<a href="https://geoportalpl.github.io/leaflet.projwmts/examples/wmts_services.html">demo</a>).
</td><td>
<a href="https://github.com/GeoportalPL">Geoportal Poland</a>
</td>
</tr>
</table>
### Non-map base layers
Sometimes you don't want to load a map, just big custom images. **Really** big ones.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/turban/Leaflet.Zoomify">TileLayer.Zoomify</a>
</td><td>
A TileLayer for Zoomify images.
</td><td>
<a href="https://github.com/turban">Bjørn Sandvik</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/alfarisi/leaflet-deepzoom">TileLayer.DeepZoom</a>
</td><td>
A TileLayer for DeepZoom images.
</td><td>
<a href="https://github.com/alfarisi">Al Farisi</a>,
<a href="http://indokreatif.net">Indokreatif Teknologi</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/namrehs/Leaflet.Gigapan">TileLayer.Gigapan</a>
</td><td>
A TileLayer for Gigapan images.
</td><td>
<a href="https://github.com/namrehs">Dan Sherman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/astromatic/Leaflet.TileLayer.IIP">Leaflet.TileLayer.IIP</a>
</td><td>Add support for <a href="http://iipimage.sourceforge.net/">IIPImage</a> layers in Leaflet.
</td><td>
<a href="https://github.com/ebertin">Emmanuel Bertin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mejackreed/Leaflet-IIIF">Leaflet-IIIF</a>
</td><td>
A <a href="http://iiif.io/">IIIF</a> (International Image Interoperability Framework) viewer for Leaflet. See the <a href="http://mejackreed.github.io/Leaflet-IIIF/examples/example.html">demo</a>.
</td><td>
<a href="https://github.com/mejackreed">Jack Reed</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/aparshin/leaflet-fractal">leaflet-fractal</a>
</td><td>
Renders some fractals (Mandelbrot set, Julia set and some others) using 2D canvas (<a href="http://aparshin.github.io/leaflet-fractal/">demo</a>).
</td><td>
<a href="https://github.com/aparshin">Alexander Parshin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/commenthol/leaflet-rastercoords">leaflet-rastercoords</a>
</td><td>
Renders large tiled images generated with
<a href="http://github.com/commenthol/gdal2tiles-leaflet">gdal2tiles-leaflet</a>.
Image raster coordinates can be used to set markers, etc.
(<a href="http://commenthol.github.io/leaflet-rastercoords">demo</a>).
</td><td>
<a href="https://github.com/commenthol">Commenthol</a>
</td>
</tr>
</table>
### Tile/image display
The following plugins change the way that tile or image layers are displayed in the map.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/aparshin/leaflet-boundary-canvas">TileLayer.BoundaryCanvas</a>
</td><td>
Allows you to draw tile layers with arbitrary polygonal boundary. HTML5 Canvas is used for rendering.
</td><td>
<a href="https://github.com/aparshin">Alexander Parshin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Zverik/leaflet-grayscale/">TileLayer.Grayscale</a>
</td><td>
A regular TileLayer with grayscale makeover.
</td><td>
<a href="https://github.com/Zverik">Ilya Zverev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ScanEx/Leaflet.imageTransform">Leaflet.ImageTransform</a>
</td><td>Add support of image overlays with arbitrary perspective transformation.
</td><td>
<a href="https://github.com/aparshin">Alexander Parshin</a>,
<a href="https://github.com/OriginalSin">Sergey Alekseev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/lizardtechblog/Leaflet.OpacityControls">Leaflet.OpacityControls</a>
</td><td>
Simple Leaflet controls to adjust the opacity of a map layer.
</td><td>
<a href="https://github.com/lizardtechblog/">Jared Dominguez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/publiclab/Leaflet.DistortableImage">Leaflet.DistortableImage</a>
</td><td>
Enable users to <a href="https://publiclab.github.io/Leaflet.DistortableImage/examples/">scale, rotate, and distort images</a> on Leaflet maps.
</td><td>
<a href="https://github.com/publiclab">Public Lab</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ronikar/Leaflet.DistortableVideo">Leaflet.DistortableVideo</a>
</td><td>
Enable users to scale, rotate, and distort videos on Leaflet maps. (<a href='https://ronikar.github.io/Leaflet.DistortableVideo/examples/'>demo</a>).
</td><td>
<a href="https://github.com/ronikar">Roni Karilkar</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IvanSanchez/Leaflet.ImageOverlay.Rotated">Leaflet.ImageOverlay.Rotate</a>
</td><td>
Displays rotated, scaled and skewed (but not rubbersheeted) ImageOverlays, given three control points. (<a href='http://ivansanchez.github.io/Leaflet.ImageOverlay.Rotated/demo.html'>demo</a>).
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/xtk93x/Leaflet.TileLayer.ColorFilter">Leaflet.TileLayer.ColorFilter</a>
</td><td>
A simple and lightweight Leaflet plugin to apply CSS filters on map tiles (<a href="https://xtk93x.github.io/Leaflet.TileLayer.ColorFilter/">demo</a>).
</td><td>
<a href="https://github.com/xtk93x">Cláudio Kawakani</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/frogcat/leaflet-tilelayer-mask">Leaflet.TileLayer.Mask</a>
</td><td>
A TileLayer with mask effect (<a href="http://frogcat.github.io/leaflet-tilelayer-mask/default/">demo</a>)
</td><td>
<a href="https://github.com/frogcat">Yuzo Matsuzawa</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/GreenInfo-Network/L.TileLayer.PixelFilter/">Leaflet.TileLayer.PixelFilter</a>
</td><td>
A TileLayer which can filter and replace pixels by RGB code.
<br/>
<a href="http://greeninfo-network.github.io/L.TileLayer.PixelFilter/demo1.html">demo 1</a> • <a href="http://greeninfo-network.github.io/L.TileLayer.PixelFilter/demo2.html">demo 2</a>
</td><td>
<a href="https://github.com/GreenInfo-Network/">GreenInfo Network</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/digidem/leaflet-side-by-side">Leaflet.Control.SideBySide</a>
</td><td>
A Leaflet control to add a split screen to compare two map overlays (<a href="http://lab.digital-democracy.org/leaflet-side-by-side/">demo</a>).
</td><td>
<a href="http://www.digital-democracy.org">Digital Democracy</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.TileLayer.GL">Leaflet.TileLayer.GL</a>
</td><td>
Applies custom WebGL shaders to each tile in a tilelayer (<a href="https://ivansanchez.gitlab.io/Leaflet.TileLayer.GL/demo/repl.html">demo</a>).
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/frogcat/leaflet-tilelayer-colorpicker">Leaflet.TileLayer.ColorPicker</a>
</td><td>
A Leaflet TileLayer with getColor(latLng). Demos: <a href="https://frogcat.github.io/leaflet-tilelayer-colorpicker/">color picker</a>, <a href="https://frogcat.github.io/leaflet-tilelayer-colorpicker/mapbox-terrain-rgb.html">elevation picker with mapbox terrain-RGB</a>
</td><td>
<a href="https://github.com/frogcat">Yuzo Matsuzawa</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/hnrchrdl/leaflet-tilelayer-colorizr">Leaflet.TileLayer.Colorizr</a>
</td><td>
A Leaflet TileLayer which can modify colors by RGBA code. Demos: coming soon.
</td><td>
<a href="https://github.com/hnrchrdl">Hinrich Riedel</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/consbio/Leaflet.UTFGrid">Leaflet.UTFGrid</a>
</td><td>
Provides UTF-8 Grid support for Leaflet >= 1.0. Includes basic mouseover support plus ability to highlight feature from UTFGrid on hover (<a href="https://consbio.github.io/Leaflet.UTFGrid/">demo</a>).
</td><td>
<a href="https://github.com/brendan-ward">Brendan Ward</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dayjournal/Leaflet.Control.Opacity">Leaflet.Control.Opacity</a>
</td><td>
Make multiple tile layers transparent. (<a href="https://dayjournal.github.io/Leaflet.Control.Opacity">demo</a>)
</td><td>
<a href="https://day-journal.com">Yasunori Kirimoto</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ihmeuw/leaflet.tilelayer.glcolorscale">Leaflet.TileLayer.GLColorScale</a>
</td><td>
TileLayer that uses WebGL to colorize floating-point pixels according to a specified color scale (<a href="https://ihmeuw.github.io/leaflet.tilelayer.glcolorscale/demo/">demo</a>).
</td><td>
<a href="https://github.com/davschne">David Schneider</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/valkenburg/Leaflet.Control.DetailLevel">Leaflet.Control.DetailLevel</a>
</td><td>
Display tiles at higher-than-retina (hdpi) resolutions, by real-time modification of the zoomOffset. Useful for mapping sources which drastically change map style between different zoom levels. Increasing the zoomOffset by too much does slow down the browser, as the number of displayed tiles grows exponentially with the zoomOffset. (<a href='https://valkenburg.github.io/Leaflet.Control.DetailLevel/demo.html'>demo</a>).
</td><td>
<a href="https://github.com/valkenburg">Wessel Valkenburg</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/publiclab/leaflet-multispectral">Leaflet.Multispectral</a>
</td><td>
Provides multispectral channel manipulation and processing tools (such as NDVI or other remote sensing methods) for Leaflet image layers using pure client-side JavaScript. It uses `image-sequencer` via an ImageOverlay `filter()` function. (<a href='https://publiclab.github.io/leaflet-multispectral/'>demo</a>).
</td><td>
<a href="https://publiclab.org">Public Lab</a>
</td>
</tr>
</table>
### Tile Load
The following plugins change the way that tile layers are loaded into the map.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/mattiasb/Leaflet.MultiTileLayer">Leaflet.MultiTileLayer</a>
</td><td>
Allows to compose a TileLayer from several tile sources. Each source is active only on a defined set of zoomlevels.
</td><td>
<a href="https://github.com/mattiasb">Mattias Bengtsson</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ismyrnow/Leaflet.functionaltilelayer">Leaflet.FunctionalTileLayer</a>
</td><td>
Allows you to define tile layer URLs using a function. Even works with asynchronous sources, using promises.
</td><td>
<a href="https://github.com/ismyrnow">Ishmael Smyrnow</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gregallensworth/L.TileLayer.Cordova">TileLayer.Cordova</a>
</td><td>
For use with Cordova/Phonegap, adds tile caching onto local device storage, switching between offline and online mode.
</td><td>
<a href="https://github.com/gregallensworth">Greg Allensworth</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MazeMap/Leaflet.TileLayer.PouchDBCached">TileLayer.PouchDBCached</a>
</td><td>
Allows all Leaflet TileLayers to cache into PouchDB for offline use.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ebrelsford/Leaflet.loading">Leaflet.loading</a>
</td><td>
A simple control that adds a loading indicator as tiles and other data are loaded.
</td><td>
<a href="https://github.com/ebrelsford/">Eric Brelsford</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/TolonUK/Leaflet.EdgeBuffer">Leaflet.EdgeBuffer</a>
</td><td>
Buffer tiles beyond the edge of the viewport, for Leaflet 1.0. <a href="http://www.tolon.co.uk/Leaflet.EdgeBuffer/comparison.html">Demo</a>.
</td><td>
<a href="https://github.com/TolonUK">Alex Paterson</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ghybs/Leaflet.TileLayer.Fallback">Leaflet.TileLayer.Fallback</a>
</td><td>
Replaces missing Tiles (HTTP 404 Not Found Error) by scaled up equivalent Tiles from lower zooms.
</td><td>
<a href="https://github.com/ghybs">ghybs</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Outdooractive/Leaflet.FeatureGroup.LoadEvents">Leaflet.FeatureGroup.LoadEvents</a>
</td><td>
`FeatureGroup` that supports the `"loading"` and `"load"` events (for v0.7.*).
</td><td>
<a href="http://glat.info">G. Lathoud</a>, <a href="http://www.outdooractive.com">Outdooractive</a>.
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.GridLayer.FadeOut">Leaflet.GridLayer.FadeOut</a>
</td><td>
Fades out grid layers and tilelayers when they are removed, making basemap changes smoother (for 1.0.0). <a href="http://ivansanchez.gitlab.io/Leaflet.GridLayer.FadeOut/demo.html">Demo</a>.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/robertomlsoares/leaflet-offline">leaflet-offline</a>
</td><td>
Allows the use of offline tiles in a customizable way while falling back to the normal TileLayer when necessary. <a href="https://robertomlsoares.github.io/leaflet-offline/">Demo</a>.
</td><td>
<a href="https://github.com/robertomlsoares">Roberto Soares</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/allartk/leaflet.offline">leaflet.offline</a>
</td><td>
Allow tiles to be stored in an database for offline access. Original plugin.<a href="http://allartk.github.io/leaflet.offline/">Demo</a>.
</td><td>
<a href="https://github.com/allartk">Allart Kooiman</a>
</td>
</tr>
</table>
### Vector tiles
Plugins to display [vector tiles](https://github.com/mapbox/vector-tile-spec).
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/SpatialServer/Leaflet.MapboxVectorTile">Leaflet.MapboxVectorTile</a>
</td><td>
A Leaflet Plugin that renders Mapbox Vector Tiles on canvas. See <a href="http://spatialserver.github.io/Leaflet.MapboxVectorTile/examples/confetti.html">demo</a>. Compatible with Leaflet 0.7.x only.
</td><td>
<a href="http://spatialdev.com/">SpatialDev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/devTristan/hoverboard">Hoverboard</a>
</td><td>
Render vector tiles on canvas with leaflet (geojson, topojson, and protobuf). See <a href="http://tristan.io/hoverboard/">demo</a>. Compatible with Leaflet 0.7.x only.
</td><td>
<a href="http://tristan.io/">Tristan Davies</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapbox/geojson-vt">geojson-vt</a>
</td><td>
Efficient library for slicing GeoJSON data into vector tiles on the fly.
</td><td>
<a href="https://www.mapbox.com/">Mapbox</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IvanSanchez/Leaflet.VectorGrid">Leaflet.VectorGrid</a>
</td><td>
Display gridded vector data (GeoJSON or TopoJSON sliced with geojson-vt, or protobuf vector tiles) in Leaflet 1.0.0. See <a href="https://github.com/IvanSanchez/Leaflet.VectorGrid#demos">demos</a>. Not compatible with 0.7.x.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/jkuebart/Leaflet.VectorTileLayer/">Leaflet.VectorTileLayer</a>
</td><td>
A Leaflet layer for displaying vector tiles. Very similar to <a href="https://github.com/IvanSanchez/Leaflet.VectorGrid">Leaflet.VectorGrid</a> except for styling: a single style can be specified for all layers while VectorGrid requires knowing layer names in advance. For Leaflet 1.0.0.
</td><td>
<a href="https://gitlab.com/jkuebart/">Joachim Kuebart</a>
</td>
</tr>
</table>
## Overlay data
The following plugins provide new ways of loading overlay data (GIS vector data): points, lines and polygons.
* [Overlay data formats](#overlay-data-formats)
* [Dynamic data loading](#dynamiccustom-data-loading)
* [Synthetic overlays](#synthetic-overlays)
* [Data providers](#data-providers)
### Overlay data formats
Load your own data from various GIS formats.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/windycom/leaflet-kml">leaflet-kml</a>
</td><td>
Loads & displays KML
</td><td>
<a href="https://github.com/windycom">Windyx</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapbox/leaflet-omnivore">leaflet-omnivore</a>
</td><td>
Loads & converts CSV, KML, GPX, TopoJSON, WKT formats for Leaflet.
</td><td>
<a href="https://github.com/mapbox">Mapbox</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.FileLayer">Leaflet.FileLayer</a>
</td><td>
Loads files (GeoJSON, GPX, KML) into the map using the HTML5 FileReader API (i.e. locally without server).
</td><td>
<a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/joker-x/Leaflet.geoCSV">Leaflet.geoCSV</a>
</td><td>
Leaflet plugin for loading a CSV file as geoJSON layer.
</td><td>
<a href="https://github.com/joker-x">Iván Eixarch</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/calvinmetcalf/leaflet.shapefile">Leaflet.Shapefile</a>
</td><td>
Put a shapefile onto your map as a layer.
</td><td>
<a href="https://github.com/calvinmetcalf">Calvin Metcalf</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/calvinmetcalf/leaflet.filegdb">Leaflet.FileGDB</a>
</td><td>
Put an ESRI File GeoDatabase onto your map as a layer.
</td><td>
<a href="https://github.com/calvinmetcalf">Calvin Metcalf</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jieter/Leaflet.encoded">Leaflet.encoded</a>
</td><td>
Use encoded polylines in Leaflet.
</td><td>
<a href="https://github.com/jieter">Jieter</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mpetazzoni/leaflet-gpx">Leaflet GPX</a>
</td><td>
GPX layer, targeted at sporting activities by providing access to information such as distance, moving time, pace, elevation, heart rate, etc.
</td><td>
<a href="https://github.com/mpetazzoni/">Maxime Petazzoni</a>
</td>
</tr>
<tr>
<td>
<a href="http://arthur-e.github.com/Wicket/">Wicket</a>
</td><td>
A modest library for translating between Well-Known Text (WKT) and Leaflet geometry objects (e.g. between L.marker() instances and "POINT()" strings).
</td><td>
<a href="https://github.com/arthur-e/">K. Arthur Endsley</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tomchadwin/qgis2web">qgis2web</a>
</td><td>
A <a href="http://qgis.org/">QGIS</a> plugin to make webmaps without coding.
</td><td>
<a href="https://github.com/tomchadwin">Tom Chadwin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Flexberry/Leaflet-WFST">Leaflet-WFST</a>
</td><td>
<a href="http://www.opengeospatial.org/standards/wfs">WFS</a> client layer with transaction support
</td><td>
<a href="https://github.com/Flexberry/">Flexberry</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/daniellsu/leaflet-betterscale">Leaflet-BetterScale</a>
</td><td>
A new, more GIS-like scalebar with alternating black/white bars.
</td><td>
<a href="https://github.com/daniellsu/">Dan Brown</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ngageoint/geopackage-js/tree/master/leaflet">Leaflet-GeoPackage</a>
</td><td>
Load <a href="http://www.geopackage.org/">GeoPackage</a> Tile and Feature Layers.
</td><td>
<a href="https://github.com/danielbarela">Daniel Barela</a>,
<a href="https://github.com/ngageoint">NGA</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gherardovarando/leaflet-csvtiles">Leaflet-CsvTiles</a>
</td><td>
Load points from tiled csv files, using the amazing <a href="http://papaparse.com/">PapaParse</a> library. <a href="https://gherardovarando.github.io/leaflet-csvtiles/demo/index.html">Demo</a>.
</td><td>
<a href="https://github.com/gherardovarando">Gherardo Varando</a>
</td>
</tr>
</table>
### Dynamic/custom data loading
Load dynamic data which is updated in the map, or load GIS vector data in non-standard ways.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/perliedman/leaflet-realtime">Leaflet Realtime</a>
</td><td>
Put realtime data on a Leaflet map: live tracking GPS units, sensor data or just about anything.
</td><td>
<a href="https://github.com/perliedman/">Per Liedman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/calvinmetcalf/leaflet-ajax">Leaflet Ajax</a>
</td><td>
Add GeoJSON data via ajax or jsonp.
</td><td>
<a href="https://github.com/calvinmetcalf/">Calvin Metcalf</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tinuzz/leaflet-liveupdate">Leaflet.Liveupdate</a>
</td>
<td>
Periodically ('live') update something on a map (<a href="https://www.grendelman.net/leaflet/">Demo</a>)
</td>
<td>
<a href="https://github.com/tinuzz/">Martijn Grendelman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/calvinmetcalf/leaflet.pouch">Leaflet.Pouch</a>
</td><td>
Use PouchDB to sync CouchDB data to local storage (indexedDB), to just add couchDB data or as just a less confusing implementation of indexedDB.
</td><td>
<a href="https://github.com/calvinmetcalf/">Calvin Metcalf</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/cbaines/leaflet-indoor">Leaflet.Indoor</a>
</td><td>
Create indoor maps.
</td><td>
<a href="https://github.com/cbaines">Christopher Baines</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/BenjaminVadant/leaflet-ugeojson">Leaflet uGeoJSON</a>
</td><td>
Add an auto updating GeoJSON data Layer via ajax post requests.
</td><td>
<a href="https://github.com/BenjaminVadant/">Benjamin VADANT</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dj0001/Leaflet.mytrack">Leaflet.mytrack</a>
</td><td>Track my way on a map and download it. <a href="https://dj0001.github.io/Leaflet.mytrack">Demo</a>
</td><td>
<a href="https://github.com/dj0001">DJ</a>
</td>
</tr>
</table>
### Synthetic overlays
These plugins create useful overlays from scratch, no loading required.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/turban/Leaflet.Graticule">Leaflet.Graticule</a>
</td><td>
Draws a grid of latitude and longitude lines.
</td><td>
<a href="https://github.com/turban">Bjørn Sandvik</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ablakey/Leaflet.SimpleGraticule">Leaflet.SimpleGraticule</a>
</td><td>
Draws a grid lines for L.CRS.Simple coordinate system.
</td><td>
<a href="https://github.com/ablakey">Andrew Blakey</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jonshutt/Leaflet.OS.Graticule">L.OS.Graticule</a>
</td><td>
Overlays UK Ordinance Survey (OS) 1km grid squares and labels.
</td><td>
<a href="https://github.com/jonshutt">Jon Shutt</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bill-chadwick/Leaflet.MetricGrid">Leaflet.MetricGrid</a>
</td><td>
A general purpose Metric Grid overlay for Leaflet with ready defined UTM, British and Irish Grids.
</td><td>
<a href="https://github.com/bill-chadwick">Bill Chadwick</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/joergdietrich/Leaflet.Terminator">Leaflet.Terminator</a>
</td><td>Overlay day and night regions on a map.
</td><td>
<a href="https://github.com/joergdietrich">Jörg Dietrich</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dj0001/Leaflet.Sun">Leaflet.Sun</a>
</td><td>Get sunset or sunrise at map click. <a href="https://dj0001.github.io/Leaflet.Sun">Demo</a>
</td><td>
<a href="https://github.com/dj0001">DJ</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dj0001/Leaflet.timezones">Leaflet.timezones</a>
</td><td>Overlay timezones on a Leaflet Earth map. <a href="https://dj0001.github.io/Leaflet.timezones">Demo</a>
</td><td>
<a href="https://github.com/dj0001">DJ</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/cloudybay/leaflet.latlng-graticule">leaflet.latlng-graticule</a>
</td>
<td>
Create a Canvas as ImageOverlay to draw the Lat/Lon Graticule, and show the grid tick label at the edges of the map.<a href="https://cloudybay.github.io/leaflet.latlng-graticule/example/">Demo</a>.
</td>
<td>
<a href="https://github.com/cloudybay/">CloudyBay</a>
</td>
</tr>
<tr>
<td>
<a href="http://github.com/GEOF-OSGL/Leaflet.EdgeScaleBar">Leaflet.EdgeScaleBar</a>
</td>
<td>
Creates scale bars along top and right edge of a map in the Web Mercator projection..<a href="http://geof-osgl.github.io/Leaflet.EdgeScaleBar/">Demo</a>.
</td>
<td>
<a href="http://github.com/GEOF-OSGL">Dražen Tutić, Ana Kuveždić Divjak</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/leaflet.maidenhead">Leaflet.Maidenhead</a>
</td><td>
An implementation of the <a href="https://en.wikipedia.org/wiki/Maidenhead_Locator_System">Maidenhead Locator System grid</a> (<a href="https://ivansanchez.gitlab.io/leaflet.maidenhead/demo.html">(demo)</a>).
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>
</td>
</tr>
</table>
### Data providers
Load overlay data from third-party-services. See also [basemap providers](#basemap-providers) and [plugin collections](#collections).
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="http://jasonsanford.github.io/leaflet-vector-layers/">Leaflet Vector Layers</a>
</td><td>
Allows to easily create vector layers from a number of geo web services, such as ArcGIS Server, Arc2Earth, GeoIQ, CartoDB and GIS Cloud.
</td><td>
<a href="http://geojason.info">Jason Sanford</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/GuillaumeAmat/leaflet-overpass-layer">Leaflet Overpass Layer</a>
</td><td>
Easily include data from the <a href="http://overpass-api.de">overpass api</a>.
</td><td>
<a href="https://github.com/GuillaumeAmat">Guillaume AMAT</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/kr1/Leaflet.dbpediaLayer/">Leaflet.dbpediaLayer</a>
</td><td>
A layer with Points of interest from Wikipedia - loaded via ajax from DBpedia's SPARQL endpoint.
</td><td>
<a href="https://github.com/kr1/">Kr1</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MatthewBarker/leaflet-wikipedia">Leaflet-Wikipedia</a>
</td>
<td>
A leaflet plugin to display Wikipedia API entries on a map layer.
</td>
<td>
<a href="https://github.com/MatthewBarker">Matthew Barker</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/windycom/API">Windy-Leaflet-plugin</a>
</td>
<td>
Displays animated weather map on your page using Windy's free API.
</td>
<td>
<a href="https://www.windy.com">Windy.com</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/barryhunter/Leaflet.GeographPhotos">Leaflet.GeographPhotos</a>
</td>
<td>
Display Geographical-Photos from Geograph Britain and Ireland in an interactive overlay, using their API.
</td>
<td>
<a href="https://github.com/barryhunter/">Barry Hunter</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rwev/leaflet-radar">leaflet-radar</a>
</td>
<td>
Animated satellite weather radar overlays for Leaflet.
</td>
<td>
<a href="https://github.com/rwev/">rwev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/publiclab/leaflet-environmental-layers">leaflet-environmental-layers
</a>
</td>
<td>
Collection of different environmental map layers in an easy to use Leaflet library <a href="https://publiclab.github.io/leaflet-environmental-layers/example/index.html#3/43.00/-46.26/BL2">Demo</a>.
</td>
<td>
<a href="https://github.com/publiclab">Public Lab</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mwasil/Leaflet.Rainviewer">Leaflet.Rainviewer
</a>
</td>
<td>
Plugin for RainViewer radar data API <a href="https://mwasil.github.io/Leaflet.Rainviewer/demo/">Demo</a>.
</td>
<td>
<a href="https://marcinwasilewski.eu/">Marcin Wasilewski</a>
</td>
</tr>
</table>
## Overlay display
The following plugins provide new ways of displaying overlay data information.
* [Markers & renderers](#markers--renderers)
* [Overlay animations](#overlay-animations)
* [Clustering/decluttering](#clusteringdecluttering)
* [Heatmaps](#heatmaps)
* [DataViz](#dataviz)
### Markers & renderers
These plugins provide new markers or news ways of converting abstract data into images in your screen. Leaflet users versed in GIS also know these as symbolizers.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/zhuang-hao-ming/Leaflet.RoughCanvas">Leaflet.RoughCanvas</a>
</td><td>
Leaflet.RoughCanvas renders hand-drawn, sketch style vector map (polyline, polygon, geojson).
</td><td>
<a href="https://github.com/zhuang-hao-ming/">haoming</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jdfergason/Leaflet.Ellipse">Leaflet.ellipse</a>
</td><td>
Leaflet.ellipse place ellipses on map by specifying center point, semi-major axis,
semi-minor axis, and tilt degrees from west.
</td><td>
<a href="https://github.com/jdfergason">JD Fergason</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Leaflet/Leaflet.label">Leaflet.label</a>
</td><td>
Adds text labels to map markers and vector layers.
</td><td>
<a href="https://github.com/jacobtoye">Jacob Toye</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jieter/Leaflet-semicircle">Leaflet-semicircle</a>
</td><td>
Adds functionality to <code>L.Circle</code> to draw semicircles.
</td><td>
<a href="https://github.com/jieter">Jieter</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bbecquet/Leaflet.PolylineDecorator">Leaflet.PolylineDecorator</a>
</td><td>
Allows you to draw patterns (like dashes, arrows or evenly spaced Markers) along Polylines or coordinate paths.
</td><td>
<a href="https://github.com/bbecquet">Benjamin Becquet</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/slutske22/leaflet-arrowheads">Leaflet-arrowheads</a>
</td><td>
Allows user to quickly draw arrowheads on polylines for vector visualization.
</td><td>
<a href="https://github.com/slutske22">Slutske22</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/leaflet-extras/leaflet.sprite">Leaflet.Sprite</a>
</td><td>
Use sprite based icons in your markers.
</td><td>
<a href="https://github.com/calvinmetcalf">Calvin Metcalf</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.TextPath">Leaflet.TextPath</a>
</td><td>
Allows you to draw text along Polylines.
</td><td>
<a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/iatkin/leaflet-svgicon">Leaflet-SVGIcon</a>
</td><td>
A simple and customizable SVG icon with no external dependencies. Also included is a convenience Marker class and two example subclasses. <a href="http://iatkin.github.io/leaflet-svgicon/">Customizable demo with example subclasses</a>
</td><td>
<a href="https://github.com/iatkin">Ilya Atkin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/masajid390/BeautifyMarker">Leaflet.BeautifyMarkers</a>
</td><td>
Lightweight plugin that adds colorful iconic markers without image and gives full control of style to end user (i.e. Unlimited colors and CSS styling).
</td><td>
<a href="https://github.com/masajid390">Muhammad Arslan Sajid</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/lvoogdt/Leaflet.awesome-markers">Leaflet.Awesome-Markers</a>
</td><td>
Colorful, iconic & retina-proof markers based on the Font Awesome icons/Twitter Bootstrap icons
</td><td>
<a href="http://www.lennardvoogdt.nl">Lennard Voogdt</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/coryasilva/Leaflet.ExtraMarkers">Leaflet.Extra-Markers</a>
</td><td>
Shameless copy of Awesome-Markers with more shapes, colors and semantic-ui support
</td><td>
<a href="http://www.corysilva.com">Cory Silva</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jseppi/Leaflet.MakiMarkers">Leaflet.MakiMarkers</a>
</td><td>Create markers using <a href="https://www.mapbox.com/maki/">Maki Icons</a> from MapBox.
</td><td>
<a href="https://github.com/jseppi">James Seppi</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IvanSanchez/Leaflet.Icon.Glyph">Leaflet.Icon.Glyph</a>
</td><td>
Use icon font glyphs in your markers (from Font Awesome, Material Design Icons, Glyphicons,
Metro UI icons, Elusive, and other icon fonts). (<a href='https://ivansanchez.github.io/Leaflet.Icon.Glyph/demo.html'>demo</a>)
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.LineExtremities">Leaflet.LineExtremities</a>
</td><td>
Show symbols at the extremities of polylines, using SVG markers.
</td><td>
<a href="https://github.com/fredericbonifas">Frédéric Bonifas</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/hiasinho/Leaflet.vector-markers">Leaflet.VectorMarkers</a>
</td><td>
Vector SVG markers for Leaflet, with an option for Font Awesome/Twitter Bootstrap icons.
</td><td>
<a href="https://github.com/hiasinho">Mathias Schneider</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rowanwins/Leaflet.SvgShapeMarkers">Leaflet.SvgShapeMarkers</a>
</td><td>
Adds support for additional SVG marker types such as triangles, diamonds and squares.
</td><td>
<a href="https://github.com/rowanwins/">Rowan Winsemius</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/teastman/Leaflet.pattern">Leaflet.pattern</a>
</td><td>
Add support for pattern fills on Paths.
</td><td>
<a href="https://github.com/teastman">Tyler Eastman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/thomasbrueggemann/leaflet.boatmarker">Leaflet.BoatMarker</a>
</td><td>
A boat marker using HTML Canvas for displaying yachts and sailboats with heading and optional wind information. <a href="http://thomasbrueggemann.github.io/leaflet.boatmarker/">Demo</a>.
</td><td>
<a href="https://github.com/thomasbrueggemann">Thomas Brüggemann</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/heyman/leaflet-usermarker">leaflet-usermarker</a>
</td><td>
Plugin for plotting a marker representing a user - or multiple users - on a map,
with support for drawing an accuraccy circle. Can be seen in action on
<a href="http://longitude.me">Longitude.me</a>.
</td><td>
<a href="http://heyman.info">Jonatan Heyman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/albburtsev/Leaflet.geojsonCSS">Leaflet.geojsonCSS</a>
</td><td>
<a href="http://wiki.openstreetmap.org/wiki/Geojson_CSS">Geojson CSS</a> implementation for Leaflet.
</td><td>
<a href="https://github.com/albburtsev/">Alexander Burtsev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rowanwins/leaflet-simplestyle">leaflet-simplestyle</a>
</td><td>
Extends L.geoJSON to support the <a href="https://github.com/mapbox/simplestyle-spec">simple style</a> spec.
</td><td>
<a href="https://github.com/rowanwins/">Rowan Winsemius</a>
</td>
</tr>
<tr>
<td>
<a href="http://osmbuildings.org/">OSM Buildings</a>
</td><td>
Amazing JS library for visualizing 3D OSM building geometry on top of Leaflet.
</td><td>
<a href="https://github.com/kekscom/">Jan Marsch</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ubergesundheit/Leaflet.EdgeMarker">Leaflet.EdgeMarker</a>
</td><td>
Plugin to indicate the existence of Features outside of the current view.
</td><td>
<a href="https://github.com/ubergesundheit">Gerald Pape</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gismartwaredev/leaflet.orientedMarker">Leaflet.orientedMarker</a>
</td><td>
Allows to manage orientation of markers dynamically.
</td><td>
<a href="https://github.com/gismartwaredev">Gismartwaredev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapshakers/leaflet-icon-pulse">leaflet-icon-pulse</a>
</td><td>
Renders pulsing icon using CSS3. It can be used for location marker.
</td><td>
<a href="https://github.com/mapshakers">mapshakers</a>/
<a href="https://github.com/filipzava">Filip Zavadil</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapshakers/leaflet-mapkey-icon">leaflet-mapkey-icon</a>
</td><td>
Set of cartographic font icons based on <a href="http://www.mapkeyicons.com">mapkeyicons</a>.
</td><td>
<a href="https://github.com/mapshakers">mapshakers</a>/
<a href="https://github.com/filipzava">Filip Zavadil</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/turban/Leaflet.Photo">Leaflet.Photo</a>
</td><td>
Plugin to show geotagged photos on a Leaflet map. <a href="http://turban.github.io/Leaflet.Photo/examples/picasa.html">Demo</a>.
</td><td>
<a href="https://github.com/turban">Bjørn Sandvik</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/elfalem/Leaflet.curve">Leaflet.curve</a>
</td><td>
A Leaflet plugin for drawing Bézier curves and other complex shapes. <a href="http://elfalem.github.io/Leaflet.curve/">Demo</a>.
</td><td>
<a href="https://github.com/elfalem">elfalem</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/lifeeka/leaflet.bezier">Leaflet.bezier</a>
</td><td>
Draws a Bézier line between two points with an animated flight object.
</td><td>
<a href="https://github.com/spmsupun">Supun Praneeth</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MAD-GooZe/Leaflet.Arc">Leaflet.Arc</a>
</td><td>
This plugin adds L.Polyline.Arc function which wraps arc.js functionality for creation of Great Cirlce arcs.
</td><td>
<a href="https://github.com/MAD-GooZe">Alexey Gusev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/timwis/leaflet-choropleth">leaflet-choropleth</a>
</td><td>
Extends L.geoJson to add a choropleth visualization (color scale based on value). <a href="http://timwis.com/leaflet-choropleth/examples/basic">Demo</a>.
</td><td>
<a href="http://timwis.com">Tim Wisniewski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/eJuke/Leaflet.Canvas-Markers">Leaflet.Canvas-Markers</a>
</td><td>
Displays markers on canvas instead of DOM.
</td><td>
<a href="https://github.com/eJuke">Evgeniy Voynov</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/lethexa/leaflet-tracksymbol">leaflet-tracksymbol</a>
</td><td>
This marker provides a tracksymbol with orientation, velocity-vector and configurable shape.
</td><td>
<a href="https://github.com/lethexa">Tim Leerhoff</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/PowerPan/leaflet-ais-tracksymbol">leaflet-ais-tracksymbol</a>
</td><td>
AIS Extension for leaflet-tracksymbol It displays AIS Contacts on the Map.
</td><td>
<a href="https://github.com/powerpan">Johannes Rudolph</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/PowerPan/leaflet-ais-tracksymbol-search">leaflet-ais-tracksymbol-search</a>
</td><td>
Adds a Search Box for your Leaflet Map and Your [leaflet-ais-trackymbol](https://github.com/PowerPan/leaflet-ais-tracksymbol)
</td><td>
<a href="https://github.com/powerpan">Johannes Rudolph</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/wwwouaiebe/leaflet.TravelNotes">leaflet.TravelNotes</a>
</td>
<td>
Editable markers and routing engine for leaflet. The routing engine have plugins for Mapbox, GraphHopper and OSRM and can be used for car, bike or pedestrian route. <a href="https://wwwouaiebe.github.io/leaflet.TravelNotes/?lng=en">Demo</a>.
</td>
<td>
<a href="https://github.com/wwwouaiebe">Christian Guyette</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IvanSanchez/Leaflet.Marker.Stack">Leaflet.Marker.Stack</a>
</td>
<td>
A pure Leaflet implementation of CartoDB's "<a href="http://blog.cartodb.com/stacking-chips-a-map-hack/">stacked chips</a>" symbolizer. <a href="http://ivansanchez.github.io/Leaflet.Marker.Stack/demos/color_ramps.html">Demo</a>.
</td>
<td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/cloudybay/leaflet-polygon-fillPattern">leaflet-polygon.fillPattern</a>
</td>
<td>
Extend the Polygon Object to fill SVG Path element with an image pattern.<a href="http://lwsu.github.io/leaflet-polygon-fillPattern/example/">Demo</a>.
</td>
<td>
<a href="https://github.com/cloudybay/">CloudyBay</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bbecquet/Leaflet.PolylineOffset">Leaflet Polyline Offset</a>
</td>
<td>
Adds to <code>L.Polyline</code> the ability to be shifted with a relative pixel offset, without modifying its actual <code>LatLng</code>s. The offset value can be either negative or positive, for left- or right-side offset, and remains constant across zoom levels (<a href="http://bbecquet.github.io/Leaflet.PolylineOffset/examples/example.html">basic demo</a>).
</td>
<td>
<a href="https://github.com/bbecquet">Benjamin Becquet</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/w8r/leaflet-labeled-circle">leaflet-labeled-circle</a>
</td>
<td>
Special type of SVG marker with a label inside and draggable around the anchor point (<a href="https://w8r.github.io/leaflet-labeled-circle/demo/">demo</a>).
</td>
<td>
<a href="https://github.com/w8r/">Alexander Milevski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dagjomar/Leaflet.ParallaxMarker">Leaflet.ParallaxMarker</a>
</td>
<td>
Add markers that moves with a parallax-effect relative to the map when panning (<a href="https://dagjomar.github.io/Leaflet.ParallaxMarker/">demos / examples</a>).
</td>
<td>
<a href="https://github.com/dagjomar/">Dag Jomar Mersland</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/adoroszlai/leaflet-distance-markers">leaflet-distance-markers</a>
</td>
<td>
Allows displaying markers along a route (L.Polyline) at equivalent distances (eg. one per mile) (<a href="http://adoroszlai.github.io/leaflet-distance-markers/">demo</a>).
</td>
<td>
<a href="https://github.com/adoroszlai">Doroszlai, Attila</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mikhailshilkov/leaflet-corridor">leaflet-corridor</a>
</td>
<td>
Renders a polyline with width fixed in meters, not in pixels; adjusts width depending on zoom level (<a href="http://mikhail.io/demos/leaflet-corridor/">demo</a>).
</td>
<td>
<a href="https://github.com/mikhailshilkov">Mikhail Shilkov</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yakitoritabetai/Leaflet.LabelTextCollision">Leaflet.LabelTextCollision</a>
</td>
<td>
Displays labels on paths (polylines, polygons, circles) avoiding label collision. (<a href="https://yakitoritabetai.github.io/Leaflet.LabelTextCollision/">demo</a>).
</td>
<td>
<a href="https://github.com/yakitoritabetai">Kenta Hakoishi</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/triedeti/Leaflet.streetlabels">Leaflet.streetlabels</a>
</td>
<td>
A Leaflet plugin to show labels following the paths of polylines. An extension of yakitoritabetai Leaflet.LabelTextCollision (<a href="https://triedeti.github.io/Leaflet.streetlabels/">demo</a>).
</td>
<td>
<a href="https://github.com/triedeti">Triede TI</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ggolikov/Leaflet.Viewpoint">Leaflet.Viewpoint</a>
</td>
<td>
Displays circleMarker with multiple directions.
Useful to show photos taken from one point. (<a href="https://ggolikov.github.io/Leaflet.Viewpoint/example/">demo</a>).
</td>
<td>
<a href="https://github.com/ggolikov">Grigory Golikov</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/react-map/leaflet.magicMarker">Leaflet.magicMarker</a>
</td>
<td>
Adding magical animation effect to a marker while loading.(<a href="https://react-map.github.io/leaflet.magicMarker/">Demo</a>).
</td>
<td>
<a href="https://github.com/react-map">Sylvenas</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/brandonxiang/leaflet.marker.highlight">Leaflet.Marker.Highlight</a>
</td>
<td>
Adding highlight performance for L.marker.(<a href="https://brandonxiang.github.io/leaflet.marker.highlight/examples/">Demo</a>).
</td>
<td>
<a href="https://github.com/brandonxiang">Brandon Xiang</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/nypl-spacetime/Leaflet.GeotagPhoto">Leaflet.GeotagPhoto</a>
</td>
<td>
Plugin for photo geotagging, with two modes: camera and crosshair (<a href="http://spacetime.nypl.org/Leaflet.GeotagPhoto/examples/camera.html">Demo</a>).
</td>
<td>
<a href="https://github.com/bertspaan">Bert Spaan</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.GLMarkers">Leaflet.GLMarkers</a>
</td><td>
Display thousands of markers with custom WebGL shaders, optionally animated. (<a href='http://https://ivansanchez.gitlab.io/Leaflet.GLMarkers/demo/repl.html'>demo</a>)
</td><td>
<a href="https://gitlab.com/IvanSanchez">Iván Sánchez Ortega</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ggolikov/Leaflet.River">Leaflet.River</a>
</td>
<td>
Draw lines with different width (like rivers) on a map.
Useful when you want to show how rivers 'flow' on the map (<a href="https://ggolikov.github.io/Leaflet.River/">demo</a>).
</td>
<td>
<a href="https://github.com/ggolikov">Grigory Golikov</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/sybri/Leaflet.SpeechBubble/">Leaflet.SpeechBubble</a>
</td>
<td>
Popup a speech bubble with the arrow that follow points, layer, markers ...
(<a href="https://sybri.github.io/demo/Leaflet.SpeechBubble/demo.html">demo</a>).
</td>
<td>
<a href="https://github.com/sybri">Sylvain BRISSY</a>
</td>
</tr>
<tr>
<td>
<a href="https://wbkd.github.io/leaflet-swoopy/">Leaflet Swoopy</a>
</td>
<td>
A plugin for creating customizable swoopy arrow annotations.
</td>
<td>
<a href="https://webkid.io">webkid</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Oliv/leaflet-polycolor">leaflet-polycolor</a>
</td>
<td>
Color each polyline segment. (<a href='https://oliv.github.io/leaflet-polycolor/'>demo</a>)
</td>
<td>
<a href="https://github.com/Oliv">Olivier Gasc</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/JackZouShao/leaflet-marker-direction">leaflet-marker-direction</a>
</td>
<td>
display the path and the direction of the marker. (<a href='https://jackzoushao.github.io/leaflet-marker-direction/examples/marker-direction.html'>demo</a>)
</td>
<td>
<a href="https://github.com/JackZouShao">Jack Zou</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bbecquet/Leaflet.RotatedMarker">Leaflet Rotated Marker</a>
</td>
<td>
Enables rotation of marker icons in Leaflet. (<a href='http://bbecquet.github.io/Leaflet.RotatedMarker/example.html'>Demo</a>)
</td>
<td>
<a href="https://github.com/bbecquet">Benjamin Becquet</a>
</td>
</tr>
<tr>
<td>
<a href="https://wbkd.github.io/leaflet-truesize/">Leaflet Truesize</a>
</td>
<td>
A plugin for creating projection aware draggable polygons and polylines.
</td>
<td>
<a href="https://webkid.io">webkid</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.RepeatedMarkers">Leaflet.RepeatedMarkers</a>
</td>
<td>
Displays markers when wrapping around the globe, once every 360 degrees of longitude (<a href="https://ivansanchez.gitlab.io/Leaflet.RepeatedMarkers/demo.html">demo</a>).
</td>
<td>
<a href="https://github.com/IvanSanchez">Iván Sánchez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/henrythasler/Leaflet.Geodesic">Leaflet.Geodesic</a>
</td><td>
Draw geodesic lines and circles. A geodesic line is the shortest path between two given points on the earth surface. It uses Vincenty's formulae for highest precision and distance calculation. Written in Typescript and available via CDN. <a href="https://blog.cyclemap.link/Leaflet.Geodesic/complex-interactive.html">Demo</a>
</td><td>
<a href="https://github.com/henrythasler">Henry Thasler</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/nuclearsecrecy/Leaflet.greatCircle">Leaflet.greatCircle</a>
</td>
<td>
A wrapper class for the Leaflet.js Polygon object that draws true "great circles" (showing true geodesic, spherical paths) that wrap around the Earth (<a href="https://nuclearsecrecy.github.io/Leaflet.greatCircle/example/">demo</a>).
</td>
<td>
<a href="https://github.com/nuclearsecrecy/">Alex Wellerstein</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/iDerekLi/Leaflet.CustomLayer">Leaflet.CustomLayer</a>
</td>
<td>
A Leaflet plugin L.CustomLayer - fully custom Layer.
</td>
<td>
<a href="https://github.com/iDerekLi/">Derek Li</a>
</td>
</tr>
</table>
### Overlay animations
These plugins animate markers or some geometries. See also [geometries with time or elevation](#geometryinteraction-time).
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/openplans/Leaflet.AnimatedMarker">Leaflet.AnimatedMarker</a>
</td><td>
Animate a marker along a polyline.
</td><td>
<a href="https://github.com/atogle">Aaron Ogle</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/maximeh/leaflet.bouncemarker">Leaflet.BounceMarker</a>
</td><td>
Make a marker bounce when you add it to a map.
</td><td>
<a href="https://github.com/maximeh">Maxime Hadjinlian</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing">Leaflet.SmoothMarkerBouncing</a>
</td><td>
Smooth animation of marker bouncing for Leaflet.
</td><td>
<a href="https://github.com/hosuaby">Alexei KLENIN</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ewoken/Leaflet.MovingMarker">Leaflet.MovingMarker</a>
</td><td>
Allow to move markers along a polyline with custom durations.
</td><td>
<a href="https://github.com/ewoken">Ewoken</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/naturalatlas/leaflet-transitionedicon">Leaflet.TransitionedIcon</a>
</td><td>
Transition in/out markers with CSS3 transitions. It supports jitter
for staggering markers into view to prevent visual overload. See the <a href="http://naturalatlas.github.io/leaflet-transitionedicon/">demo</a>.
</td><td>
<a href="https://github.com/brianreavis">Brian Reavis</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IvanSanchez/Leaflet.Polyline.SnakeAnim">Leaflet.Polyline.SnakeAnim</a>
</td><td>
Animates (poly)lines into existence, as if they were being slowly drawn from start to end.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.Path.DashFlow">Leaflet.Path.DashFlow</a>
</td><td>
Animates the dashArray of lines and circles, creating a basic flow effect. (<a href="https://ivansanchez.gitlab.io/Leaflet.Path.DashFlow/demo.html">Demo</a>.
</td><td>
<a href="https://gitlab.com/IvanSanchez">Iván Sánchez Ortega</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rubenspgcavalcante/leaflet-ant-path">Leaflet.AntPath</a>
</td><td>
Leaflet.AntPath put a flux animation (like ants walking) into a Polyline.
(<a href='http://rubenspgcavalcante.github.io/leaflet-ant-path/'>demo</a>)
</td><td>
<a href="https://github.com/rubenspgcavalcante">Rubens Pinheiro</a>
</td>
</tr>
<tr>
<td>
<a href="https://gitlab.com/IvanSanchez/Leaflet.Marker.SlideTo">Leaflet.Marker.SlideTo</a>
</td><td>
Smoothly move (slide) markers to a new location. (<a href='http://ivansanchez.gitlab.io/Leaflet.Marker.SlideTo/demo.html'>demo</a>)
</td><td>
<a href="https://gitlab.com/u/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Igor-Vladyka/leaflet.motion">leaflet.motion</a>
</td><td>
Adds simple motion to your polyline with marker in a head on line (<a href='https://igor-vladyka.github.io/leaflet.motion/'>demo</a>)
</td><td>
<a href="https://github.com/Igor-Vladyka/">Igor Vladyka</a>,
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ggolikov/Leaflet.Rain">Leaflet.Rain</a>
</td>
<td>
Customizable WebGL rain animation for Leaflet. Useful for weather maps. (<a href="https://ggolikov.github.io/Leaflet.Rain/">demo</a>)
</td>
<td>
<a href="https://github.com/ggolikov">Grigory Golikov</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ggolikov/Leaflet.Snow">Leaflet.Snow</a>
</td>
<td>
Customizable WebGL snow animation for Leaflet. Useful for weather maps. (<a href="https://ggolikov.github.io/Leaflet.Snow/">demo</a>)
</td>
<td>
<a href="https://github.com/ggolikov">Grigory Golikov</a>
</td>
</tr>
</table>
### Clustering/Decluttering
When you are displaying a lot of data, these plugins will make your map look cleaner.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/Leaflet/Leaflet.markercluster">Leaflet.markercluster</a>
</td><td>
Beautiful, sophisticated, high performance marker clustering solution with smooth animations and lots of great features. <em>Recommended!</em>
</td><td>
<a href="https://github.com/danzel">Dave Leaver</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MazeMap/Leaflet.LayerGroup.Collision">Leaflet.LayerGroup.Collision</a>
</td><td>
Provides collision detection for groups of markers. Unlike clustering, this takes into account the shape & size of the markers.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jawj/OverlappingMarkerSpiderfier-Leaflet">Overlapping Marker Spiderfier</a>
</td><td>
Deals with overlapping markers in a Google Earth-inspired way by gracefully springing them apart on click.
</td><td>
<a href="http://mackerron.com">George MacKerron</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/SINTEF-9012/PruneCluster">PruneCluster</a>
</td><td>
Fast and realtime marker clustering library.
</td><td>
<a href="https://github.com/yellowiscool">Antoine Pultier</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/oliverroick/Leaflet.Deflate">Leaflet.Deflate</a>
</td><td>
Deflates lines and polygons to a marker when their screen size becomes too small in lower zoom levels.
</td><td>
<a href="https://github.com/oliverroick">Oliver Roick</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/andy-kay/Leaflet.GridCluster">Leaflet.GridCluster</a>
</td><td>
Create grid-based clusters in realtime.
</td><td>
<a href="https://github.com/andy-kay">Andreas Kiefer</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/spatialdev/q-cluster">q-cluster</a>
</td><td>
Quick point clustering library with D3 categorization.
</td><td>
<a href="https://github.com/hallahan">Nicholas Hallahan</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Eclipse1979/leaflet-conditionalLayer">Leaflet.ConditionalLayer</a>
</td><td>
A FeatureGroup that does not show any more than a certain amount of markers visible in the viewport. (<a href="http://eclipse1979.github.io/Leaflet.ConditionalLayer/example/leaflet-conditionalLayer2.html">Demo</a>)
</td><td>
<a href="https://github.com/Eclipse1979">EPP</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ghybs/Leaflet.FeatureGroup.SubGroup">Leaflet.FeatureGroup.SubGroup</a>
</td><td>
A simple plugin to create Feature Groups that add their child layers into a parent group. Typical usage is to switch them through L.Control.Layers to dynamically add/remove groups of markers from Leaflet.markercluster. <a href="http://ghybs.github.io/Leaflet.FeatureGroup.SubGroup/examples/subGroup-markercluster-controlLayers-realworld.388.html">Demo</a>.
</td><td>
<a href="https://github.com/ghybs">ghybs</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ZijingPeng/leaflet-tooltip-layout">leaflet-tooltip-layout</a>
</td><td>
A plugin to avoid tooltips overlapping and make it easier to find out the relationship between each tooltip and marker. <a href="https://zijingpeng.github.io/overlapping-avoided-tooltip/">Demo</a>.
</td><td>
<a href="https://github.com/ZijingPeng">Zijing Peng</a>
</td>
</tr>
</table>
### Heatmaps
These plugins create heatmaps and heatmap-like visualizations from vector data.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/domoritz/leaflet-maskcanvas">MaskCanvas</a>
</td><td>
Canvas layer that can be used to visualize coverage.
</td><td>
<a href="https://github.com/domoritz">Dominik Moritz</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/sunng87/heatcanvas">HeatCanvas</a>
</td><td>
Simple heatmap api based on HTML5 canvas.
</td><td>
<a href="https://github.com/sunng87">Sun Ning</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.patrick-wied.at/static/heatmapjs/example-heatmap-leaflet.html">heatmap.js</a>
</td><td>
JavaScript Library for HTML5 canvas based heatmaps.
Its Leaflet layer implementation supports large datasets because it is tile based and uses a quadtree index to store the data.
</td><td>
<a href="https://github.com/pa7">Patrick Wied</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dpiccone/leaflet-div-heatmap">Leaflet divHeatmap</a>
</td><td>
Lightweight and versatile heatmap layer based on CSS3 and divIcons
</td><td>
<a href="https://github.com/dpiccone">Daniele Piccone</a>
</td>
</tr>
<tr>
<td>
<a href="http://ursudio.com/webgl-heatmap-leaflet/">WebGL Heatmap</a>
</td><td>
High performance Javascript heatmap plugin using WebGL.
</td><td>
<a href="http://ursudio.com/webgl-heatmap-leaflet/">Benjamin J DeLong</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Leaflet/Leaflet.heat">Leaflet.heat</a>
</td><td>
A tiny, simple and fast Leaflet heatmap plugin. Uses <a href='https://github.com/mourner/simpleheat'>simpleheat</a> under the hood, additionally clustering points into a grid for performance. (<a href='https://leaflet.github.io/Leaflet.heat/demo'>Demo</a>)
</td><td>
<a href="https://github.com/mourner">Vladimir Agafonkin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mejackreed/leaflet-solr-heatmap">Leaflet-Solr-Heatmap</a>
</td><td>
A Leaflet plugin for rendering heatmaps and clusters from <a href='https://lucene.apache.org/solr/guide/6_6/spatial-search.html#SpatialSearch-HeatmapFaceting'>Solr's Heatmap Faceting</a>. High performance for millions of points or polygons.
</td><td>
<a href="https://github.com/mejackreed">Jack Reed</a> /
<a href="https://github.com/spacemansteve">Steve McDonald</a>
</td>
</tr>
</table>
### DataViz
Powerful multi-purpose libraries for data visualization.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/giscience/geogrid.js">geogrid.js</a>
</td><td>
Displays data aggregated by the ISEA3H discrete global grid system. The data can, e.g., be delivered by using <a href="https://github.com/giscience/measures-rest">Measures REST</a> (a framework to deliver data aggregated by the grid) or <a href="https://github.com/giscience/geogrid">geogrid</a> (a library for handling the grid in case that you want to aggregate data manually).
</td><td>
<a href="http://www.mocnik-science.net">F.-B. Mocnik,</a><br><a href="http://www.geog.uni-heidelberg.de/gis/index_en.html">GIScience Research Group,<br>Heidelberg University</a>
</td>
</tr>
<tr>
<td>
<a href="http://dynmeth.github.com/RaphaelLayer/">RaphaelLayer</a>
</td><td>
Allows you to use <a href="http://raphaeljs.com/">Raphael</a> as a layer on a Leaflet map for advanced animations and visualizations.
</td><td>
<a href="https://github.com/dynmeth">Dynamic Methods</a>
</td>
</tr>
<tr>
<td>
<a href="http://humangeo.github.com/leaflet-dvf/">Leaflet Data Visualization Framework</a>
</td><td>
New markers, layers, and utility classes for easy thematic mapping and data visualization.
</td><td>
<a href="https://github.com/sfairgrieve">Scott Fairgrieve</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/teralytics/Leaflet.D3SvgOverlay">Leaflet.D3SvgOverlay</a>
</td><td>
SVG overlay class for using with <a href="http://d3js.org">D3</a> library. Supports zoom animation and scaling without need to redraw the layer.
</td><td>
<a href="https://github.com/xEviL">Kirill Zhuravlev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapbox/mapbox-gl-leaflet">mapbox-gl-leaflet</a>
</td><td>
Binding from Mapbox GL JS to the Leaflet API
</td><td>
<a href="https://github.com/tmcw">Tom MacWright</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/wandergis/leaflet-echarts">leaflet-echarts</a>
</td><td>
A plugin for Leaflet to load <a href="https://github.com/ecomfe/echarts">echarts</a> map and make big data visualization easier.
</td><td>
<a href="https://github.com/wandergis">wandergis</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/atlefren/storymap">jquery-storymap</a>
</td><td>
A jQuery plugin to display several map locations as the user scrolls through paragraphs.
</td><td>
<a href="https://github.com/atlefren">Atle Frenvik Sveen</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rstudio/leaflet">Leaflet for R</a>
</td><td>
Allows using Leaflet from within <a href="https://en.wikipedia.org/wiki/R_%28programming_language%29">R</a> programs, a programming language popular for statistical analysis and data mining.
</td><td>
<a href="https://github.com/rstudio/">RStudio team</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/react-map/leaflet.migrationLayer">leaflet.migrationLayer</a>
</td><td>
leaflet.migrationLayer is used to show migration data such as population, flight, vehicle, traffic and so on. Data visualization on map.<a href="https://react-map.github.io/leaflet.migrationLayer">demo</a>
</td><td>
<a href="https://github.com/react-map">Sylvenas</a>
</td>
</tr>
<tr>
<td>
<a href="https://ibesora.github.io/Leaflet.Quadtree/">Leaflet.Quadtree</a>
</td><td>
Leaflet.Quadtree is used to retrieve visible data inside given bounds
</td><td>
<a href="https://github.com/ibesora">ibesora</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jwasilgeo/Leaflet.Canvas-Flowmap-Layer">Leaflet.Canvas-Flowmap-Layer</a>
</td><td>
A LeafletJS custom map layer for mapping the flow of objects, ideas, people, etc. with Bezier curves rendered on the HTML canvas.
</td><td>
<a href="https://github.com/jwasilgeo">Jacob Wasilkowski</a>,
<a href="https://github.com/sarahbellum">Sarah Bell</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/manubb/Leaflet.PixiOverlay">Leaflet.PixiOverlay</a>
</td><td>
A Leaflet overlay class for drawing and animating with <a href="http://www.pixijs.com/">Pixi.js</a>. (<a href="https://manubb.github.io/Leaflet.PixiOverlay/demo.html">demo</a>)
</td><td>
<a href="https://github.com/manubb">Manuel Baclet</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/danwild/leaflet-velocity">leaflet-velocity</a>
</td>
<td>
Visualise velocity layers with leaflet.
<a href="https://danwild.github.io/leaflet-velocity">Demo here.</a>
</td>
<td>
<a href="https://github.com/danwild">Dan Wild</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/locknono/leaflet-partition">leaflet-partition</a>
</td>
<td>
Divide the area into parts in different ways such as voronoi(triangulation) and hexagonal tiling.
<a href="https://locknono.github.io/leaflet-partition/">Basic demo</a>
</td>
<td>
<a href="https://github.com/locknono">locknono</a>
</td>
</tr>
</table>
## Interaction with geometries/features
The following plugins enable users to interact with overlay data: edit geometries, select areas or features, interact with the time dimension, search features and display information about them.
* [Edit geometries](#edit-geometries)
* [Time & elevation](#time--elevation)
* [Search & popups](#search--popups)
* [Area/overlay selection](#areaoverlay-selection)
### Edit geometries
Allows users to create, draw, edit and/or delete points, lines and polygons.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/geoman-io/leaflet-geoman">Leaflet-Geoman</a>
</td><td>
Geometry Management for Leaflet 1.0 and higher. Draw, Edit, Cut, Drag and Snap Layers like Markers, Circles, Rectangles, Polylines, Polygons, LayerGroups, geoJSON, MultiPolygons, MultiLineStrings. Supports holes in polygons, snapping, canvas mode and more. (<a href="https://geoman.io/leaflet-geoman">Demo</a>)
</td><td>
<a href="https://github.com/codeofsumit">Sumit Kumar</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Wildhoney/Leaflet.FreeDraw">Leaflet.FreeDraw</a>
</td><td>
Zoopla inspired freehand polygon creation using Leaflet.js and D3.
</td><td>
<a href="https://github.com/Wildhoney">Wildhoney</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/scripter-co/leaflet-plotter">Leaflet.plotter</a>
</td><td>
leaflet-plotter allows you to create routes using a leaflet powered map. You can click on the mid-points to create a new, draggable point.
</td><td>
<a href="https://github.com/scripter-co">Nathan Mahdavi</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tkrajina/leaflet-editable-polyline">Leaflet.Editable.Polyline</a>
</td><td>Editable polylines: move existing points, add new points and split polylines.
</td><td>
<a href="https://github.com/tkrajina">Tomo Krajina</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Leaflet/Leaflet.draw">Leaflet.draw</a>
</td><td>
Enables drawing features like polylines, polygons, rectangles, circles and markers through a very nice user-friendly interface with icons and hints. <em>Recommended!</em>
</td><td>
<a href="https://github.com/jacobtoye">Jacob Toye</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/kartena/Leaflet.EditableHandlers">Leaflet.EditableHandlers</a>
</td><td>
A set of plugins that includes circle editing, measuring tool, and label for polygon sides.
</td><td>
<a href="http://www.kartena.se/">Kartena</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dwilhelm89/Leaflet.StyleEditor">Leaflet.StyleEditor</a>
</td><td>
Enables editing the styles of features (lines, polygons, etc) and markers with a GUI.
</td><td>
<a href="https://github.com/dwilhelm89">Dennis Wilhelm</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jdomingu/Leaflet.SimpleMarkers">Leaflet.SimpleMarkers</a>
</td><td>
A light-weight Leaflet plugin for adding and deleting markers.
</td><td>
<a href="https://github.com/jdomingu">Jared Dominguez</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yohanboniface/Leaflet.Editable">Leaflet.Editable</a>
</td><td>
Lightweight fully customisable and controllable drawing/editing plugin.
</td><td>
<a href="http://yohanboniface.me/">Yohan Boniface</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/w8r/Leaflet.Path.Drag">Leaflet.Path.Drag</a>
</td>
<td>
Drag handler and interaction for polygons and polylines (<a href="https://w8r.github.io/Leaflet.Path.Drag">Demo</a>)
</td>
<td>
<a href="https://github.com/w8r/">Alexander Milevski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/w8r/Leaflet.Path.Transform">Leaflet.Path.Transform</a>
</td>
<td>
Scale & rotate handler and interaction for polygons and polylines (<a href="https://w8r.github.io/Leaflet.Path.Transform">Demo</a>)
</td>
<td>
<a href="https://github.com/w8r/">Alexander Milevski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.Snap">Leaflet.Snap</a>
</td><td>
Enables snapping of draggable markers to polylines and other layers.
</td><td>
<a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/willfarrell/Leaflet.Clipper">Leaflet.Clipper</a>
</td><td>
Allows Union, Difference, Xor, and Intersection operations on two polygons. (<a href="https://willfarrell.github.io/Leaflet.Clipper">Demo</a>)
</td><td>
<a href="https://github.com/willfarrell">will Farrell</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/SINTEF-9012/Leaflet.MapPaint">Leaflet.MapPaint</a>
</td>
<td>
Bitmap painting plugin designed for touch devices.
</td><td>
<a href="https://github.com/yellowiscool">Antoine Pultier</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yohanboniface/Leaflet.Storage">Leaflet.Storage</a>
</td><td>
Create/update/delete Map, Marker, Polygon, Polyline... and expose them for backend storage with an API.
</td><td>
<a href="http://yohanboniface.me/">Yohan Boniface</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Wildhoney/L.Pather">Leaflet.Pather</a>
</td><td>
L.Pather is a freehand polyline creator that simplifies the polyline for mutability. Requires D3 support.
</td><td>
<a href="https://github.com/Wildhoney">Wildhoney</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/manleyjster/Leaflet.Illustrate">Leaflet.Illustrate</a>
</td><td>
Extension for Leaflet.draw enabling users to <a href="http://manleyjster.github.io/Leaflet.Illustrate/examples/0.0.2/simple/">type annotations directly on maps</a>.
</td><td>
<a href="https://github.com/manleyjster">Justin Manley</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/kklimczak/Leaflet.Pin">Leaflet.Pin</a>
</td><td>
Enable attaching of markers to other layers during draw or edit features with Leaflet.Draw.
</td><td>
<a href="https://github.com/kklimczak">Konrad Klimczak</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tcoupin/leaflet-paintpolygon">L.Control.PaintPolygon</a>
</td><td>
Draw yours polygons with a circle brush like Paint[brush]. Includes turf.js dependencies.
</td><td>
<a href="https://github.com/tcoupin">Thibault Coupin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/sagarpreet-chadha/Leaflet-Craft">Leaflet-Craft</a>
</td><td>
Extends Leaflet.FreeDraw and gives extended features like Undo-Redo, deleting markers,dynamic area calculation of polygons ,various hooks/events and in-build control bars, etc.
</td><td>
<a href="https://github.com/sagarpreet-chadha">Sagarpreet Chadha</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Lemaf/leaflet-polyline-segment-edit">Leaflet.SegmentEdit</a>
</td><td>
An extension to Leaflet.draw to allow editing large polylines one chunk at the time.
</td><td>
<a href="https://github.com/Lemaf">Lemaf</a>
</td>
</tr>
</table>
### Time & elevation
Most data is two-dimensional (latitude and longitude), but some data has more dimensions (altitude and/or time). The following plugins help users navigate these extra dimensions.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/svitkin/leaflet-timeline-slider/">Leaflet.timelineSlider</a>
</td>
<td>
Leaflet plugin that creates a customizable timeline slider with user designed functionality. Original implementation of timeline at https://codepen.io/trevanhetzel/pen/rOVrGK.
</td>
<td>
<a href="https://github.com/svitkin">Sol Vitkin</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/socib/Leaflet.TimeDimension">Leaflet.TimeDimension</a>
</td>
<td>
Add time dimension capabilities on a Leaflet map. <a href="http://apps.socib.es/Leaflet.TimeDimension/examples/index.html">Demos</a>
</td>
<td>
<a href="http://www.socib.eu">ICTS SOCIB</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dwilhelm89/LeafletSlider">Leaflet Time-Slider</a>
</td><td>
The Leaflet Time-Slider enables you to dynamically add and remove Markers on a map by using a JQuery UI slider
</td><td>
<a href="https://github.com/dwilhelm89">Dennis Wilhelm</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/hallahan/LeafletPlayback">LeafletPlayback</a>
</td><td>
Play back time-stamped GPS Tracks synchronized to a clock.
</td><td>
<a href="http://theoutpost.io">Nicholas Hallahan</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/skeate/Leaflet.timeline">Leaflet.timeline</a>
</td><td>
Display arbitrary GeoJSON on a map with a timeline slider and play button.
</td><td>
<a href="https://github.com/skeate">Jonathan Skeate</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MrMufflon/Leaflet.Elevation">Leaflet.Elevation</a>
</td><td>
A Leaflet plugin to view interactive height profiles of GeoJSON lines using <a href="http://d3js.org/">d3</a>.
</td><td>
<a href="https://github.com/MrMufflon">Felix Bache</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/GIScience/Leaflet.Heightgraph">Leaflet.Heightgraph</a>
</td><td>
Inspired by Leaflet.Elevation this Leaflet plugin allows you to view interactive height profiles stored as GeoJSON featuring the handy ability to visualize arbitrary segments (e.g. surface types or steepness categories) with customized colors stored as properties within the GeoJSON itself.
</td><td>
<a href="https://github.com/boldtrn">Robin Boldt</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/iosphere/Leaflet.hotline">Leaflet.hotline</a>
</td><td>
A Leaflet plugin for drawing gradients along polylines.
</td><td>
<a href="https://github.com/iosphere">iosphere</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/linghuam/Leaflet.TrackPlayBack">leaflet.TrackPlayBack</a>
</td>
<td>
A leaflet track-playback plugin, can display and dynamically play tracks. <a href="https://linghuam.github.io/Leaflet.TrackPlayBack/">Demo</a>.
</td>
<td>
<a href="https://github.com/linghuam">linghuam</a>
</td>
</tr>
</table>
### Search & popups
Plugins that search for overlays and enhance how to display information about them.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/naomap/leaflet-fusesearch">leaflet-fusesearch</a>
</td><td>
A control that provides a panel to search features in a GeoJSON layer using the lightweight fuzzy search Fuse.js
</td><td>
<a href="http://www.naomap.fr">Antoine Riche</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stefanocudini/leaflet-search">Leaflet Search</a>
</td><td>
A control for search Markers/Features location by custom property in LayerGroup/GeoJSON. Support AJAX/JSONP, Autocompletion and 3rd party service
</td><td>
<a href="http://labs.easyblog.it">Stefano Cudini</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/8to5Developer/leaflet-custom-searchbox">leaflet-custom-searchbox</a>
</td>
<td>
A google map style search box which includes a side panel slider control.
</td>
<td>
<a href="https://github.com/8to5Developer/">A.D</a>
</td>
</tr>
<tr>
<td>
<a href="http://erictheise.github.com/rrose">Leaflet.Rrose</a>
</td><td>
A Leaflet Plugin for Edge Cases. For use when you want popups on <em>mouseover</em>, not <em>click</em>, and
you need popup tips to reorient as you get close to the edges of your map.
</td><td>
<a href="http://www.linkedin.com/in/erictheise">Eric Theise</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/danzel/Leaflet.utfgrid">Leaflet.utfgrid</a>
</td><td>
Provides a utfgrid interaction handler for leaflet a very small footprint.
</td><td>
<a href="https://github.com/danzel">Dave Leaver</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yohanboniface/Leaflet.RevealOSM">Leaflet.RevealOSM</a>
</td><td>
Very simple but extendable Leaflet plugin to display OSM POIs data on map click.
</td><td>
<a href="http://yohanboniface.me">Yohan Boniface</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/perliedman/leaflet-underneath">Leaflet Underneath</a>
</td><td>
Find interesting features near a location using Mapbox Vector Tiles data, to add
interactive functionality to a tile layer with speed and limited bandwidth.
</td><td>
<a href="http://github.com/perliedman">Per Liedman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/utahemre/Leaflet.GeoJSONAutocomplete">Leaflet.GeoJSONAutocomplete</a>
</td><td>
Leaflet Autocomplete For Remote Searching with GeoJSON Services.
</td><td>
<a href="https://github.com/utahemre">Yunus Emre Özkaya</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/maydemirx/leaflet-tag-filter-button">L.tagFilterButton</a>
</td><td>
LeafLet marker filtering by tags
</td><td>
<a href="https://github.com/maydemirx">Mehmet Aydemir</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Twista/leaflet-google-places-autocomplete">Leaflet-gplaces-autocomplete</a>
</td><td>
Add google places search into map
</td><td>
<a href="https://github.com/Twista">Michal Haták</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yafred/leaflet-responsive-popup">leaflet-responsive-popup</a>
</td><td>
Removes the need to move the map to be able to see the content of the popup.
</td><td>
<a href="https://github.com/yafred">YaFred</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/slutske22/leaflet-popup-modifier">leaflet-popup-modifier</a>
</td><td>
Allows user to edit the contents of a popup, or use the popup to remove its source marker.
</td><td>
<a href="https://github.com/slutske22">Slutske22</a>
</td>
</tr>
</table>
### Area/overlay selection
These plugins help users select either overlays or areas in the map.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/heyman/leaflet-areaselect/">Leaflet.AreaSelect</a>
</td><td>
A fixed positioned, resizable rectangle for selecting an area on the map.
</td><td>
<a href="http://heyman.info">Jonatan Heyman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/kajic/leaflet-locationfilter/">leaflet-locationfilter</a>
</td><td>
A draggable/resizable rectangle for selecting an area on the map.
</td><td>
<a href="https://github.com/kajic">Robert Kajic</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/w8r/L.Control.LineStringSelect">L.Control.LineStringSelect</a>
</td>
<td>
Fast LineString(polyline) partial selection tool: select a stretch between two points in a complex path. <a href="https://w8r.github.io/L.Control.LineStringSelect">Demo</a>
</td>
<td>
<a href="https://github.com/w8r">Alexander Milevski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/openplans/Leaflet.FeatureSelect">Leaflet.FeatureSelect</a>
</td><td>Use a configurable centerpoint marker to select any geometry type from a GeoJSON layer.
</td><td>
<a href="https://github.com/atogle">Aaron Ogle</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stefanocudini/leaflet-geojson-selector">Leaflet GeoJSON Selector</a>
</td>
<td>
Leaflet Control for selection from GeoJSON feature in an interactive list and map (<a href="http://labs.easyblog.it/maps/leaflet-geojson-selector/">Demo</a>).
</td>
<td>
<a href="http://labs.easyblog.it/stefano-cudini/">Stefano Cudini</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IvanSanchez/Leaflet.CheapLayerAt">Leaflet.CheapLayerAt</a>
</td>
<td>
Allows querying which layer is under a screen coordinate (<a href="http://ivansanchez.github.io/Leaflet.CheapLayerAt/demo.html">Demo</a>).
</td>
<td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/sandropibia/Leaflet.SelectAreaFeature/">Leaflet.SelectAreaFeature</a>
</td><td>
Selecting feature layers on a map by drawing an area.
</td><td>
<a href="http://pezzo.org">Sandro Pibia</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mkong0216/leaflet-shades/"> Leaflet-Shades </a>
</td>
<td>
A draggable and resizable rectangle for selecting an area on a map and creating a gray overlay in unselected areas (<a href="https://mkong0216.github.io/leaflet-shades/examples">Demo</a>)
</td>
<td>
<a href="https://github.com/mkong0216"> Mandy Kong </a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/zakjan/leaflet-lasso">leaflet-lasso</a>
</td>
<td>
True lasso selection plugin (<a href="http://zakjan.github.io/leaflet-lasso/">Demo</a>)
</td>
<td>
<a href="https://github.com/zakjan">Jan Zak</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/olanaso/Leaflet-Select-Polygons">Leaflet-Select-Polygons</a>
</td>
<td>
Leaflet-Select-Polygons allows the selection of several polygons and also adjusts the base map view (<a href="https://olanaso.github.io/Leaflet-Select-Polygons/">demo</a>)
</td>
<td>
<a href="https://github.com/olanaso">Erick S Escalante Olano</a>
</td>
</tr>
</table>
## Map interaction
New ways to interact with the map itself.
* [Layer switching controls](#layer-switching-controls)
* [Interactive pan/zoom](#interactive-panzoom)
* [Bookmarked pan/zoom](#bookmarked-panzoom)
* [Fullscreen](#fullscreen-controls)
* [Minimaps & synced maps](#minimaps--synced-maps)
* [Measurement](#measurement)
* [Mouse coordinates](#mouse-coordinates)
* [Events](#events)
* [User interface](#user-interface)
* [Print/export](#printexport)
* [Geolocation](#geolocation)
### Layer switching controls
The following plugins enhance or extend `L.Control.Layers`.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/aebadirad/Leaflet.AutoLayers">Leaflet.AutoLayers</a>
</td><td>
Automatically pull layers from multiple mapservers and organize/search them with user controlled overlay zIndex management.
</td><td>
<a href="https://github.com/aebadirad">Alex Ebadirad</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/vogdb/SelectLayersControl">Leaflet.SelectLayers</a>
</td><td>
a Leaflet plugin which adds new control to switch between different layers on the map. New control replaces L.Control.Layers radio button panel with select tag.
</td><td>
<a href="https://github.com/vogdb">vogdb</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/davicustodio/Leaflet.StyledLayerControl">Leaflet.StyledLayerControl</a>
</td><td>
A Leaflet plugin that implements the management and control of layers by organization into categories or groups.
</td><td>
<a href="https://github.com/davicustodio">Davi Custodio</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ismyrnow/Leaflet.groupedlayercontrol">Leaflet.GroupedLayerControl</a>
</td><td>
Leaflet layer control with support for grouping overlays together.
</td><td>
<a href="https://github.com/ismyrnow">Ishmael Smyrnow</a>
</td>
</tr>
<tr>
<td>
<a href="http://elesdoar.github.io/leaflet-control-orderlayers/">Leaflet Control Order Layers</a>
</td><td>
Adds the ability to change overlay order in the layers control.
</td><td>
<a href="https://github.com/elesdoar/">Michael Salgado</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/robbiet480/leaflet-categorized-layers">Leaflet Categorized Layers</a>
</td><td>
Leaflet Control Layers extended for groups of categorized layers
</td><td>
<a href="http://robbie.io/">Robbie Trencheny</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stefanocudini/leaflet-panel-layers">Leaflet Panel Layers</a>
</td><td>
Leaflet Control Layers extended for group of layers and icons legend
</td><td>
<a href="http://labs.easyblog.it">Stefano Cudini</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/chriscalip/L.UniformControl">Leaflet.UniformControl</a>
</td><td>
Leaflet layer control with stylable checkboxes and radio buttons.
</td><td>
<a href="https://github.com/chriscalip">Chris Calip</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ScanEx/Leaflet-IconLayers">Leaflet-IconLayers</a>
</td><td>
Leaflet control that displays base layers as small icons (<a href="http://scanex.github.io/Leaflet-IconLayers/examples">demo</a>).
</td><td>
<a href="https://github.com/zverev">Alexander Zverev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bambrikii/leaflet-layer-tree-plugin">Leaflet.LayerTreePlugin</a>
</td><td>
Leaflet control allows to switch layers on and off, display them in a tree-like way (<a href="http://rawgit.com/bambrikii/leaflet-layer-tree-plugin/master/examples/basic-example.htm">demo</a>).
</td><td>
<a href="https://github.com/bambrikii">Alexander Arakelyan</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/consbio/Leaflet.Basemaps">Leaflet.Basemaps</a>
</td><td>
A basemap chooser with a preview image from the tile stack.
<a href="http://consbio.github.io/Leaflet.Basemaps/">Example</a>
</td><td>
<a href="https://github.com/brendan-ward">Brendan Ward</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jjimenezshaw/Leaflet.Control.Layers.Tree">Leaflet.Control.Layers.Tree</a>
</td><td>
L.Control.Layers extension that supports a Tree structure, both for base and overlay layers. Simple and highly configurable. See <a href="https://jjimenezshaw.github.io/Leaflet.Control.Layers.Tree/examples/">demos</a>
</td><td>
<a href="https://github.com/jjimenezshaw/">Javier Jimenez Shaw</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/vogdb/Leaflet.ActiveLayers">Leaflet.ActiveLayers</a>
</td><td>
Adds new L.Control.ActiveLayers with functionality to get currently active layers on the map.
</td><td>
<a href="https://github.com/vogdb">vogdb</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Kanahiro/Leaflet.Control.Appearance">Leaflet.Control.Appearance</a>
</td><td>
Extend of Control.Layers, can control Appearances of Layers - color, opacity and able to remove a overlay layer. <a href="https://github.com/Kanahiro/Leaflet.Control.Appearance">Example</a>
</td><td>
<a href="https://www.labo288.site/">Kanahiro Iguchi</a>
</td>
</tr>
</table>
### Interactive pan/zoom
Change the way the user can interactively move around the map.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="http://kartena.github.com/Leaflet.Pancontrol/">Leaflet.Pancontrol</a>
</td><td>
A simple panning control.
</td><td>
<a href="http://www.kartena.se/">Kartena</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gregallensworth/L.Control.BoxZoom">Leaflet.BoxZoom</a>
</td><td>
A visible, clickable control to perform a box zoom.
</td><td>
<a href="https://github.com/gregallensworth/L.Control.BoxZoom">Greg Allensworth</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/elrobis/L.Control.ZoomBar">L.Control.ZoomBar</a>
</td><td>
An extended version of Leaflet's native Zoom control with Home and Zoom-to-Area buttons. <a href="https://elrobis.github.io/L.Control.ZoomBar/">Demo</a>
</td><td>
<a href="http://cartometric.com/blog/">Elijah Robison</a>
</td>
</tr>
<tr>
<td>
<a href="http://kartena.github.com/Leaflet.zoomslider/">Leaflet.zoomslider</a>
</td><td>
A zoom slider control.
</td><td>
<a href="http://www.kartena.se/">Kartena</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/flaviocarmo/Leaflet.zoominfo/">Leaflet.zoominfo</a>
</td><td>
A zoom control which displays the current zoom level.
</td><td>
<a href="https://github.com/flaviocarmo">Flávio Carmo</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/slara/Leaflet.BorderPan">Leaflet.BorderPan</a>
</td><td>
A Leaflet plugin to pan by clicking on map borders.
</td><td>
<a href="https://github.com/slara">Sebastián Lara</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/SINTEF-9012/Leaflet.GameController">Leaflet GameController</a>
</td><td>
Interaction handler providing support for gamepads.
</td><td>
<a href="https://github.com/yellowiscool">Antoine Pultier</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/aratcliffe/Leaflet.twofingerzoom">Leaflet.twofingerZoom</a>
</td><td>
Interaction handler for touch devices enabling zooming out with a two finger tap.
</td><td>
<a href="https://github.com/aratcliffe/">Adam Ratcliffe</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/consbio/Leaflet.ZoomBox">Leaflet.ZoomBox</a>
</td>
<td>
A lightweight zoom box control: draw a box around the area you want to zoom to. <a href="https://consbio.github.io/Leaflet.ZoomBox">Demo</a>
</td>
<td>
<a href="https://github.com/brendan-ward">Brendan Ward</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Zverik/Leaflet.LimitZoom">Leaflet LimitZoom</a>
</td><td>
Plugins to limit available zoom levels to a given list, either by
restricting zooming or by interpolating tiles.
</td><td>
<a href="https://github.com/zverik">Ilya Zverev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/GhostGroup/Leaflet.DoubleRightClickZoom">Leaflet.DoubleRightClickZoom</a>
</td><td>
Interaction handler enabling zooming out with double right click.
</td><td>
<a href="https://github.com/mikeotoole/">Mike O'Toole</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/unbam/Leaflet.ZoomLabel">Leaflet.ZoomLabel</a>
</td>
<td>
A simple zoom label control.
</td>
<td>
<a href="https://github.com/unbam">Masashi Takeshita</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/will4906/leaflet.zoompanel">Leaflet.ZoomPanel</a>
</td>
<td>
A Zoom Control Panel Of Leaflet. <a href="https://will4906.github.io/leaflet-zoompanel/">Demo</a>
</td>
<td>
<a href="https://github.com/will4906/">Shuhua Huang</a>
</td>
</tr>
</table>
### Bookmarked pan/zoom
Change the way the user is moved around the map, by jumping to predefined/stored places.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/pwldp/leaflet.viewcenter">Leaflet.viewcenter</a>
</td><td>
A simple control that adds a button to change view and zoom to predefined values in options.
</td><td>
<a href="https://github.com/pwldp/">Dariusz Pawlak</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/alanshaw/leaflet-zoom-min/">leaflet-zoom-min</a>
</td><td>
Adds a button to the zoom control that allows you to zoom to the map minimum zoom level in a single click.
</td><td>
<a href="https://github.com/alanshaw/">Alan Shaw</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/davidchouse/Leaflet.NavBar">Leaflet Navigation Toolbar</a>
</td><td>
Leaflet control for simple back, forward and home navigation.
</td><td>
<a href="https://github.com/davidchouse">David C</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mithron/leaflet.locationlist">Leaflet Locationlist</a>
</td><td>
A control to jump between predefined locations and zooms.
</td><td>
<a href="https://github.com/mithron">Ivan Ignatyev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/nguyenning/Leaflet.defaultextent">Leaflet.defaultextent</a>
</td>
<td>
A control that returns to the original start extent of the map. Similar to the <a href="https://developers.arcgis.com/javascript/jssamples/widget_home.html">HomeButton</a> widget.
</td>
<td>
<a href="https://github.com/nguyenning">Alex Nguyen</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/w8r/Leaflet.Bookmarks">Leaflet.Bookmarks</a>
</td>
<td>
Control for adding and navigating between user-created bookmarks on the map.
</td>
<td>
<a href="https://github.com/w8r/">Alexander Milevski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/florpor/Leaflet.ShowAll">Leaflet.ShowAll</a>
</td><td>
A control that can show a predefined extent while saving the current one so it can be jumped back to.
</td><td>
<a href="https://github.com/florpor">Mor Yariv</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/torfsen/leaflet.zoomhome">Leaflet.zoomhome</a>
</td>
<td>
Zoom control with a home button for resetting the view (<a href="http://torfsen.github.io/leaflet.zoomhome/">Demo</a>)
</td>
<td>
<a href="https://github.com/torfsen">Florian Brucker</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/cscott530/leaflet-history">Leaflet-History</a>
</td>
<td>
Track history of map movements and zoom locations similar to a browser.
</td>
<td>
<a href="https://github.com/cscott530">Chris Scott</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.RestoreView">Leaflet.RestoreView</a>
</td><td>
Stores and restores map view using localStorage.
</td><td>
<a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mlevans/leaflet-hash">leaflet-hash</a>
</td><td>
Plugin for persisting map state and browsing history through the URL hash.
</td><td>
<a href="https://github.com/mlevans">Michael Lawrence Evans</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rwev/leaflet-view-meta">leaflet-view-meta</a>
</td>
<td>
Plugin control that displays and persists map view meta-data, center and boundary coordinates to URL for precise sharing and view reconstruction.
</td>
<td>
<a href="https://github.com/rwev">rwev</a>
</td>
</tr>
</table>
### Fullscreen controls
Allows display of the map in full-screen mode.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/mapbox/Leaflet.fullscreen">Leaflet.fullscreen</a>
</td><td>
A fullscreen button control by Mapbox
</td><td>
<a href="https://github.com/mapbox">Mapbox</a>
</td>
</tr>
<tr>
<td>
<a href="http://brunob.github.com/leaflet.fullscreen">leaflet.fullscreen</a>
</td><td>
Another fullscreen button control but for modern browsers, using HTML5 Fullscreen API.
</td><td>
<a href="https://github.com/brunob/">Bruno B</a>
</td>
</tr>
<tr>
<td>
<a href="http://elidupuis.github.com/leaflet.zoomfs">leaflet.zoomfs</a>
</td><td>
A fullscreen button control.
</td><td>
<a href="https://github.com/elidupuis">Eli Dupuis</a>
</td>
</tr>
</table>
### Minimaps & synced maps
Display two maps at once. One of them might be a different size and zoom level, usable as a minimap to aid with navigation.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/turban/Leaflet.Sync">Leaflet.Sync</a>
</td><td>
Synchronized view of two maps.
</td><td>
<a href="https://github.com/turban">Bjørn Sandvik</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Norkart/Leaflet-MiniMap">Leaflet.MiniMap</a>
</td><td>
A small minimap showing the map at a different scale to aid navigation.
</td><td>
<a href="https://github.com/robpvn">Robert Nordan</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bbecquet/Leaflet.MagnifyingGlass">Leaflet.MagnifyingGlass</a>
</td><td>
Allows you to display a small portion of the map at another zoom level, either at a fixed position or linked to the mouse movement, for a magnifying glass effect.
</td><td>
<a href="https://github.com/bbecquet/">Benjamin Becquet</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jieter/Leaflet.layerscontrol-minimap">Leaflet.layerscontrol-minimap</a>
</td><td>
Extends the default Leaflet layers control with synced minimaps.
</td><td>
<a href="https://github.com/jieter">Jieter</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/chriswhong/leaflet-globeminimap/">Leaflet.GlobeMiniMap</a>
</td><td>
Simple minimap control that places a 3D Globe in the corner of your map, centered on the same location as the main map (<a href='http://chriswhong.github.io/leaflet-globeminimap/example/'>demo</a>).
</td><td>
<a href="https://github.com/chriswhong">Chris Whong</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jieter/leaflet-clonelayer">leaflet-clonelayer</a>
</td><td>
Clone Leaflet layers to allow reuse across different maps in the same runtime.
</td><td>
<a href="https://github.com/jieter">Jieter</a>
</td>
</tr>
</table>
### Measurement
Allow the user to measure distances or areas.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/ppete2/Leaflet.PolylineMeasure">Leaflet.PolylineMeasure</a>
</td><td>
Measure great-circle distances of simple lines as well as of complex polylines. (<a href="https://ppete2.github.io/Leaflet.PolylineMeasure/demo1.html">Demo 1</a>), (<a href="https://ppete2.github.io/Leaflet.PolylineMeasure/demo2.html">Demo 2</a>), (<a href="https://ppete2.github.io/Leaflet.PolylineMeasure/demo3.html">Demo 3</a>)
</td><td>
<a href="https://github.com/ppete2">PPete</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.MeasureControl">Leaflet.MeasureControl</a>
</td><td>
A simple tool to measure distances on maps (*relies on Leaflet.Draw*).
</td><td>
<a href="https://github.com/makinacorpus/">Makina Corpus</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/zvaraondrej/Leaflet.MeasureAreaControl">Leaflet.MeasureAreaControl</a>
</td><td>
Control for measuring element's area.
</td><td>
<a href="https://github.com/zvaraondrej">Ondrej Zvara</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ljagis/leaflet-measure">leaflet-measure</a>
</td>
<td>
Coordinate, linear, and area measure control for Leaflet maps
</td>
<td>
<a href="https://github.com/ljagis">LJA GIS</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/nerik/leaflet-graphicscale">leaflet-graphicscale</a>
</td>
<td>
Animated graphic scale control (<a href='http://nerik.github.io/leaflet-graphicscale/demo/'>demo</a>).
</td>
<td>
<a href="https://github.com/nerik">Erik Escoffier</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MarcChasse/leaflet.ScaleFactor">Leaflet.ScaleFactor</a>
</td><td>
Display a Scale Factor (e.g. 1:50,000) for Leaflet maps (<a href="https://marcchasse.github.io/leaflet.ScaleFactor/">Demo</a>)
</td><td>
<a href="https://github.com/MarcChasse">Marc Chasse</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/PowerPan/leaflet.nauticscale">Leaflet.nauticscale</a>
</td><td>
Display a Nauticscale on Leaflet maps
</td><td>
<a href="https://github.com/PowerPan">Johannes Rudolph</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ProminentEdge/leaflet-measure-path">Leaflet Measure Path</a>
</td><td>
Show measurements on paths; polylines, polygons and circles currently supported (<a href="http://prominentedge.com/leaflet-measure-path/">demo</a>)
</td><td>
<a href="https://github.com/perliedman">Per Liedman</a> / <a href="http://prominentedge.com/">Prominent Edge</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/NLTGit/Leaflet.LinearMeasurement">Leaflet.LinearMeasurement</a>
</td><td>
Leaflet Linear Measurement plugin that creates polylines with incremental measures along the path. (<a href="https://nltgit.github.io/Leaflet.LinearMeasurement/">demo</a>)
</td><td>
<a href="http://www.newlighttechnologies.com/">New Light Technologies</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gokertanrisever/leaflet-ruler">leaflet-ruler</a>
</td><td>
A simple leaflet plugin to measure true bearing and distance between clicked points. (<a href="https://gokertanrisever.github.io/leaflet-ruler/">Demo</a>)
</td><td>
<a href="https://github.com/gokertanrisever">Goker Tanrisever</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rwev/leaflet-reticle">leaflet-reticle</a>
</td>
<td>
Leaflet control adding a centering reticle consisting of independently calculated latitude and longitude scales.
</td>
<td>
<a href="https://github.com/rwev">rwev</a>
</td>
</tr>
</table>
### Mouse coordinates
Show the geographical coordinates under the mouse cursor in different ways.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/ardhi/Leaflet.MousePosition">Leaflet.MousePosition</a>
</td><td>
A simple MousePosition control that displays geographic coordinates of the mouse pointer, as it is moved about the map
</td><td>
<a href="https://github.com/ardhi">Ardhi Lukianto</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MrMufflon/Leaflet.Coordinates">Leaflet.Coordinates</a>
</td><td>
A simple Leaflet plugin viewing the mouse LatLng-coordinates. Also views a marker with coordinate popup on userinput.
</td><td>
<a href="https://github.com/MrMufflon">Felix Bache</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/zimmicz/Leaflet-Coordinates-Control">Leaflet Coordinates Control</a>
</td><td>
Captures mouseclick and displays its coordinates with easy way to copy them.
</td><td>
<a href="https://github.com/zimmicz">Michal Zimmermann</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tinjaw/Leaflet-Copy-Coordinates-Control">Leaflet Copy Coordinates Control</a>
</td><td>
Works with Leaflet to capture mouseclicks on a map and display the associated coordinates with an easy way to copy them. (Derived from original work by zimmicz. Forked mainly to provide npm functionality.)
</td><td>
<a href="https://github.com/tinjaw">Chaim Krause</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mahmoodvcs/Leaflet.NACCoordinates">Leaflet.NACCoordinates</a>
</td>
<td>
Displays NAC coordinate of the mouse pointer on mouse move (<a href="http://mahmoodvcs.github.io/Leaflet.NACCoordinates/">Demo</a>)
</td>
<td>
<a href="https://github.com/mahmoodvcs">Mahmood Dehghan</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/PowerPan/leaflet.mouseCoordinate">Leaflet.mouseCoordinates</a>
</td>
<td>
Displays the Mouse Coordinate in a Box.
Multiple Formats Are Possible
<ul>
<li>GPS</li>
<li>UTM</li>
<li>UTMREF / MGRS</li>
<li>QTH</li>
</ul>
</td>
<td>
<a href="https://github.com/PowerPan">Johannes Rudolph</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stefanocudini/leaflet-locationpicker">Leaflet Location Picker</a>
</td>
<td>
Simple location picker with mini Leaflet map (<a href="http://labs.easyblog.it/maps/leaflet-locationpicker/">Demo</a>)
</td>
<td>
<a href="https://github.com/stefanocudini/">Stefano Cudini</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/xguaita/Leaflet.MapCenterCoord">Leaflet.MapCenterCoord</a>
</td>
<td>
A Leaflet control to display the coordinates of the map center, especially useful on touch/mobile devices. (<a href="http://xguaita.github.io/Leaflet.MapCenterCoord/">Doc & demos</a>)
</td>
<td>
<a href="https://github.com/xguaita">Xisco Guaita</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/matlads/Leaflet.Mapcodes">Leaflet.Mapcodes</a>
</td>
<td>
Displays the <a href="http://www.mapcode.com">Mapcode</a> of the mouse pointer on mouse move (<a href="http://matlads.github.io/Leaflet.Mapcodes/">Demo</a>)
</td>
<td>
<a href="https://github.com/matlads">Martin Atukunda</a>
</td>
</tr>
</table>
### Events
These plugins extend Leaflet event handling.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/elmarquis/Leaflet.GestureHandling/">Leaflet.GestureHandling</a>
</td><td>
Brings the basic functionality of Google Maps Gesture Handling into Leaflet. Prevents users from getting trapped on the map when scrolling a long page.
<a href="https://elmarquis.github.io/Leaflet.GestureHandling/examples/"> Demo</a>
</td><td>
<a href="https://github.com/elmarquis">Andy Marquis</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/CliffCloud/Leaflet.Sleep">L.Sleep</a>
</td><td>
Avoid unwanted scroll capturing.
<a href="https://cliffcloud.github.io/Leaflet.Sleep"> Demo</a>
</td><td>
<a href="https://github.com/atstp">atstp</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.OverIntent">Leaflet.OverIntent</a>
</td><td>
Adds a new event ``mouseintent``, that differs from ``mouseover`` since it reflects user
intentions to aim a particular layer.
</td><td>
<a href="https://github.com/makinacorpus/">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.AlmostOver">Leaflet.AlmostOver</a>
</td><td>
Trigger mouse events when cursor is "almost" over a layer.
</td><td>
<a href="https://github.com/makinacorpus/">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Mappy/Leaflet-active-area">Leaflet-active-area</a>
</td><td>
This plugin allows you to use a smaller portion of the map as an active area.
All positioning methods (setView, fitBounds, setZoom) will be applied on this portion instead of the all map.
</td><td>
<a href="https://github.com/Mappy">Mappy</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MazeMap/Leaflet.ControlledBounds">Leaflet.ControlledBounds</a>
</td><td>
Inspired by Leaflet-active-area, automatically detects the largest area of the map not covered by any map controls and applies setView, fitBounds, setZoom, getBounds to that area.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Outdooractive/leaflet-singleclick_0.7">singleclick</a>
</td>
<td>
Extend <code>L.Map</code> to fire a <code>singleclick</code> event (<a href="http://outdooractive.github.io/leaflet-singleclick_0.7/">demo</a>). Compatible with Leaflet 0.7.x only.
</td>
<td>
<a href="http://glat.info">Guillaume Lathoud</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MazeMap/Leaflet.singleclick">singleclick</a>
</td>
<td>
Extend <code>L.Evented</code> to fire a <code>singleclick</code> event (<a href="https://mazemap.github.io/Leaflet.singleclick/">demo</a>). Compatible with Leaflet 1.0.0-beta1 and greater only.
</td><td>
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MazeMap/Leaflet.VisualClick">Leaflet.VisualClick</a>
</td>
<td>
Adds visual feedback when user clicks/taps the map (<a href="https://github.com/MazeMap/Leaflet.VisualClick/">demo</a>).
Useful when further action is delayed by server requests, or implementation of Leaflet.singleclick.
Or just because it looks cool :)
Only tested with Leaflet 1.0.0-beta1.
</td><td>
<a href="https://github.com/dagjomar">Dag Jomar Mersland</a>,
<a href="https://github.com/IvanSanchez">Iván Sánchez Ortega</a>,
<a href="https://github.com/MazeMap">MazeMap</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/perliedman/leaflet-touch-helper">Leaflet Touch Helper</a>
</td><td>
Makes it easy to touch vector overlays with thick fingers on a small display by adding a transparent, larger touch surface
</td><td>
<a href="https://github.com/perliedman">Per Liedman</a> / <a href="http://prominentedge.com/">Prominent Edge</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/geoloep/Leaflet.ClickTolerance">Leaflet.ClickTolerance</a>
</td><td>
This plugin allows you to increase the click tolerance of canvas powered layers, making it possible to increase the clickable area of vector layers beyond their visible extent. Useful when your features are difficult to click otherwise.
</td><td>
<a href="https://github.com/geoloep">Geoloep</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/idawave/Leaflet.DraggableEnhancer">L.DraggableEnhancer</a>
</td><td>
Modify the default L.Draggable handler (responsible for map panning, ...) to make it work properly if one of the map container's parents has predefined handlers like "event.stopPropagation()' attached to a "mousemove" event for example.
</td><td>
<a href="https://github.com/idawave">Vincent Dechandon</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/iboates/leaflet-spotlight">L.Spotlight</a>
</td><td>
Dynamically highlight features near the mouse cursor with a customizable shape
</td><td>
<a href="https://github.com/iboates">Isaac Boates</a>
</td>
</tr>
</table>
### User interface
Buttons, sliders, toolbars, sidebars, and panels.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/yigityuce/Leaflet.Control.Custom">Leaflet.Control.Custom</a>
</td><td>
Fully customizable Leaflet control panel with HTML element.
<a href="https://yigityuce.github.io/Leaflet.Control.Custom/examples/index.html"> Demo</a>
</td><td>
<a href="https://github.com/yigityuce">Yiğit Yüce</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/CliffCloud/Leaflet.EasyButton">L.EasyButton</a>
</td><td>
In one line, add a Font Awesome control button with attached click events.
<a href="https://cliffcloud.github.io/Leaflet.EasyButton"> Demo</a>
</td><td>
<a href="https://github.com/atstp">atstp</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/aratcliffe/Leaflet.contextmenu">Leaflet.contextmenu</a>
</td><td>
A context menu for Leaflet.
</td><td>
<a href="https://github.com/aratcliffe/">Adam Ratcliffe</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/ahalota/Leaflet.CountrySelect/">Leaflet.CountrySelect</a>
</td><td>
Control with menu of all countries, and an event listener that returns
the selected country as a GeoJSON feature (<a href="http://ahalota.github.io/Leaflet.CountrySelect/demo.html">demo</a>)
</td><td>
<a href="https://github.com/ahalota/">Anika Halota</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/easymountain/Leaflet.GeojsonLayerSwitcher">Leaflet.GeojsonLayerSwitcher</a>
</td>
<td>
Allows to navigate between GeoJSON layers, select some, and return selection.
</td>
<td>
<a href="https://github.com/easymountain">Easy-Mountain</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/nickpeihl/leaflet-sidebar-v2/">leaflet-sidebar-v2</a>
</td><td>
A responsive, tabbed sidebar with HTML & JS API.
Compatible with old (0.7) and current leaflet.
</td><td>
<a href="https://github.com/noerw/">Norwin Roosen</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/turbo87/leaflet-sidebar/">leaflet-sidebar</a>
</td><td>
A responsive sidebar plugin.
</td><td>
<a href="https://github.com/turbo87/">Tobias Bieniek</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/turbo87/sidebar-v2/">sidebar-v2</a>
</td><td>
Another responsive sidebar plugin. This time with tabs!
</td><td>
<a href="https://github.com/turbo87/">Tobias Bieniek</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tinuzz/leaflet-messagebox">Leaflet.Messagebox</a>
</td>
<td>
Display a temporary text message on a map (<a href="https://www.grendelman.net/leaflet/">Demo</a>)
</td>
<td>
<a href="https://github.com/tinuzz/">Martijn Grendelman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yohanboniface/Leaflet.TileLegend">Leaflet.TileLegend</a>
</td><td>
Create illustrated and interactive legends for your background layers.
</td><td>
<a href="http://yohanboniface.me">Yohan Boniface</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Leaflet/Leaflet.toolbar">Leaflet.toolbar</a>
</td>
<td>
Flexible, extensible toolbars for Leaflet maps. View an example <a href="https://leaflet.github.io/Leaflet.toolbar/examples/popup.html">here</a>.
</td>
<td>
<a href="https://github.com/manleyjster">Justin Manley</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gregallensworth/L.Control.Credits">L.Credits</a>
</td>
<td>
A simple, attractive, interactive control to put your logo and link in the corner of your map.
</td>
<td>
<a href="https://github.com/gregallensworth/">Greg Allensworth</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.Spin">Leaflet.Spin</a>
</td><td>
Shows a nice spinner on the map using <a href="http://fgnass.github.com/spin.js/">Spin.js</a>,
for asynchronous data load, like with <a href="https://github.com/calvinmetcalf/leaflet-ajax">Leaflet Ajax</a>.
</td><td>
<a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/oskosk/Leaflet.Weather">Leaflet Weather</a>
</td>
<td>
A Leaflet plugin for adding a weather widget to the map using OpenWeatherMap API (<a href="http://oskosk.github.io/Leaflet.Weather/">Demo</a>).
</td>
<td>
<a href="https://github.com/oskosk">Osk</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dalbrx/Leaflet.ResizableControl">Leaflet ResizableControl</a>
</td>
<td>
A Leaflet plugin to add a resizable and scrollable control to the map (<a href="http://dalbrx.github.io/Leaflet.ResizableControl/">Demo</a>).
</td>
<td>
<a href="https://github.com/dalbrx">David Albrecht</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Eclipse1979/leaflet-slider">Leaflet.Slider</a>
</td>
<td>
Adds a <code><input type="range"></code> slider that calls a function every time its input is changed (<a href="https://github.com/Eclipse1979/leaflet-slider">Demo</a>)
</td>
<td>
<a href="https://github.com/Eclipse1979">EPP</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapshakers/leaflet-control-window">leaflet-control-window</a>
</td><td>
Creates modal/modeless, draggable, responsive, customisable window in your map.
</td><td>
<a href="https://github.com/mapshakers">mapshakers</a>/
<a href="https://github.com/filipzava">Filip Zavadil</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/utahemre/Leaflet.CoordinatedImagePreview">Leaflet.CoordinatedImagePreview</a>
</td><td>
Displays coordinated images in map bounds.
</td><td>
<a href="https://github.com/utahemre">Yunus Emre Özkaya</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/unbam/Leaflet.SlideMenu">Leaflet.SlideMenu</a>
</td>
<td>
A simple slide menu for Leaflet.
</td>
<td>
<a href="https://github.com/unbam">Masashi Takeshita</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/NBTSolutions/Leaflet.Dialog">Leaflet.Dialog</a>
</td>
<td>
A simple resizable, movable, customizable dialog box. (<a href="http://nbtsolutions.github.io/Leaflet.Dialog/">Demo</a>)
</td>
<td>
<a href="https://github.com/NBTSolutions">NBT Solutions</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/MAD-GooZe/Leaflet.BootstrapZoom">Leaflet.BootstrapZoom</a>
</td>
<td>
Overrides default zoom control buttons with Twitter Bootstrap styled ones
</td>
<td>
<a href="https://github.com/MAD-GooZe">Alexey Gusev</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/route360/Leaflet.CondensedAttribution">Leaflet.CondensedAttribution</a>
</td>
<td>
An attribution plugin that makes long attributes visible on hover
</td>
<td>
<a href="http://www.motionintelligence.net/">Motion Intelligence GmbH</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/consbio/Leaflet.HtmlLegend">Leaflet.HtmlLegend</a>
</td>
<td>
A simple Leaflet plugin for creating legends using HTML elements. <a href="https://consbio.github.io/Leaflet.HtmlLegend/">Demo</a>.
</td>
<td>
<a href="https://github.com/ka7eh">Kaveh Karimi</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/publiclab/leaflet-blurred-location/">leaflet-blurred-location</a>
</td>
<td>
A Leaflet-based interface for selecting a "blurred" or low-resolution location, to preserve privacy. <a href="https://publiclab.github.io/leaflet-blurred-location/examples/">Demo</a>.
</td>
<td>
<a href="https://github.com/publiclab">Public Lab</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jjimenezshaw/Leaflet.Control.Resizer">Leaflet.Control.Resizer</a>
</td><td>
Control to resize your map on the right or bottom side. See <a href="https://jjimenezshaw.github.io/Leaflet.Control.Resizer/examples/basic.html">demo</a>
</td><td>
<a href="https://github.com/jjimenezshaw/">Javier Jimenez Shaw</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/publiclab/leaflet-blurred-location-display">leaflet-blurred-location-display
</a>
</td>
<td>
Cleverly dispays "blurred" locations using color-coded heatmap and color-coded markers while fetching data from remote API <a href="https://publiclab.github.io/leaflet-blurred-location-display/examples/HumanReadableBlurring.html">Demo</a>.
</td>
<td>
<a href="https://github.com/publiclab">Public Lab</a>
</td>
</tr>
</table>
### Print/export
Print or export your map.
<!--
- Saving a Leaflet Map to a PNG Example using Javascript and PHP https://github.com/tegansnyder/Leaflet-Save-Map-to-PNG
- Get a PNG from a Leaflet map and export it in PDF https://github.com/chrissom/leaflet-pdf
-->
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/aratcliffe/Leaflet.print">Leaflet.print</a>
</td><td>
Implements the Mapfish print protocol allowing a Leaflet map to be printed using either the Mapfish or GeoServer print module.
</td><td>
<a href="https://github.com/aratcliffe">Adam Ratcliffe</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapbox/leaflet-image">Leaflet-image</a>
</td><td>
Export images out of Leaflet maps without a server component, by using Canvas and CORS.
</td><td>
<a href="https://github.com/tmcw">Tom MacWright</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/rowanwins/leaflet-easyPrint">Leaflet-easyPrint</a>
</td><td>
A simple plugin which adds an icon to print your Leaflet map.
</td><td>
<a href="https://github.com/rowanwins">Rowan Winsemius</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Igor-Vladyka/leaflet.browser.print">leaflet.browser.print</a>
</td><td>
Allows users to print full page map directly from the browser.
</td><td>
<a href="https://github.com/Igor-Vladyka">Igor Vladyka</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/pasichnykvasyl/Leaflet.BigImage">Leaflet.BigImage</a>
</td><td>
Allows users to download an image with a scaled-up version of the visible map.
</td><td>
<a href="https://github.com/pasichnykvasyl">Vasyl Pasichnyk (Oswald)</a>
</td>
</tr>
</table>
### Geolocation
Plugins that extend Leaflet's geolocation capabilities.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/CliffCloud/Leaflet.LocationShare">L.LocationShare</a>
</td><td>
Allow users to send and receive a marker with a message.
<a href="https://cliffcloud.github.io/Leaflet.LocationShare"> Demo</a>
</td><td>
<a href="https://github.com/atstp">atstp</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/domoritz/leaflet-locatecontrol">Leaflet.Locate</a>
</td><td>
A customizable locate control.
</td><td>
<a href="https://github.com/domoritz">Dominik Moritz</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/stefanocudini/leaflet-compass">Leaflet Control Compass</a>
</td><td>
A leaflet control plugin to build a simple rotating compass
</td><td>
<a href="http://labs.easyblog.it/">Stefano Cudini</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/M165437/Leaflet.AccuratePosition">Leaflet.AccuratePosition</a>
</td><td>
Leaflet.AccuratePosition aims to provide a desired device location accuracy.
</td><td>
<a href="https://github.com/M165437">Michael Schmidt-Voigt</a>
</td>
</tr>
</table>
## Miscellaneous
### Geoprocessing
The following plugins perform several sorts of geoprocessing (mathematical and topological operations on points, lines and polygons).
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/kartena/Proj4Leaflet">Proj4Leaflet</a>
</td><td>
<a href="http://trac.osgeo.org/proj4js/">Proj4js</a> integration plugin, allowing you to use all kinds of weird projections in Leaflet.
</td><td>
<a href="http://www.kartena.se/">Kartena</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/springmeyer/arc.js">arc.js</a>
</td><td>
A JS library for drawing great circle routes that can be used with Leaflet.
</td><td>
<a href="https://github.com/springmeyer">Dane Springmeyer</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tmcw/leaflet-pip">Leaflet-pip</a>
</td><td>
Simple point in polygon calculation using <a href="https://github.com/substack/point-in-polygon">point-in-polygon</a>.
</td><td>
<a href="https://github.com/tmcw">Tom MacWright</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.GeometryUtil">Leaflet.GeometryUtil</a>
</td><td>
A collection of utilities for Leaflet geometries (linear referencing, etc.)
</td><td>
<a href="https://github.com/bbecquet">Benjamin Becquet</a>, <a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/w8r/GreinerHormann">Greiner-Hormann</a>
</td>
<td>
Greiner-Hormann algorithm for polygon clipping and binary operations, adapted for use with Leaflet.
</td>
<td>
<a href="https://github.com/w8r">Alexander Milevski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/skeate/Leaflet.buffer">Leaflet.buffer</a>
</td><td>
Enables buffering of shapes drawn with Leaflet.draw.
</td><td>
<a href="https://github.com/skeate">Jonathan Skeate</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/makinacorpus/Leaflet.LayerIndex">Leaflet.LayerIndex</a>
</td><td>
An efficient spatial index for features and layers, using <a href="https://github.com/imbcmdth/RTree">RTree.js</a>.
</td><td>
<a href="https://github.com/leplatrem">Mathieu Leplatre</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mapzen/leaflet-spatial-prefix-tree">leaflet-spatial-prefix-tree</a>
</td><td>
Leaflet plugin for visualizing spatial prefix trees, quadtree and geohash. See <a href="http://mapzen.github.io/leaflet-spatial-prefix-tree/">demo</a>
</td><td>
<a href="http://mapzen.com/">Mapzen</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jjimenezshaw/Leaflet.UTM">Leaflet.UTM</a>
</td><td>
A simple way to convert L.LatLng into UTM (WGS84) and vice versa. UTM string format easily configurable. It does not depend on any other plugin or 3rd party. See <a href="https://jjimenezshaw.github.io/Leaflet.UTM/examples/input.html">demo</a>
</td><td>
<a href="https://github.com/jjimenezshaw/">Javier Jimenez Shaw</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/briannaAndCo/Leaflet.Antimeridian">Leaflet.Antimeridian</a>
</td><td>
A plugin to allow polygons and polylines to naturally draw across the Antimeridian (or the Internation Date Line) instead of always wrapping across the Greenwich meridian. (<a href="https://briannaandco.github.io/Leaflet.Antimeridian/">Demo</a>)
</td><td>
<a href="https://github.com/briannaAndCo">Brianna Landon</a>
</td>
</tr>
</table>
### Routing
The following plugins use external services to calculate driving or walking routes.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="http://www.liedman.net/leaflet-routing-machine/">Leaflet Routing Machine</a>
</td><td>
Control for route search with via points, displaying itinerary and alternative routes. Uses
<a href="http://project-osrm.org/">OSRM</a> by default, but also supports
<a href="https://graphhopper.com/">GraphHopper</a>,
<a href="https://www.mapbox.com/developers/api/directions/">Mapbox Directions API</a> and more.
</td><td>
<a href="https://github.com/perliedman">Per Liedman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Turistforeningen/leaflet-routing">Leaflet.Routing</a>
</td><td>
Leaflet controller and interface for routing paths between waypoints using any user provided routing service.
</td><td>
<a href="https://github.com/turistforeningen">Norwegian Trekking Association</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/route360/r360-js">Route360°</a>
</td><td>
Route360° visualizes the area which is reachable from a set of starting points in a given time and gives detailed routing information (walk, bike, car and <b>public transportation</b>) to targets.
</td><td>
<a href="http://www.motionintelligence.net/">Motion Intelligence GmbH</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/StephanGeorg/leaflet-routeboxer">Leaflet RouteBoxer</a>
</td><td>
This is a Leaflet implementation of the RouteBoxer Class from Google. The Leaflet RouteBoxer class generates a set of L.LatLngBounds objects that are guaranteed to cover every point within a specified distance of a path.
</td><td>
<a href="http://www.nearest.place/">Nearest!</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/BKGiser/Leaflet.Routing.Amap">Leaflet.Routing.Amap</a>
</td><td>
Control for route search using <a href="http://www.amap.com/">AMap(高德地图)</a> as a backend. Supports the Chinese BD09 and GCJ02 coordinate systems, colourful lines, and turn-by-turn popups.
</td><td>
<a href="https://github.com/BKGiser">Jack Good</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/skedgo/tripkit-leaflet">Leaflet TripGo routing</a>
</td>
<td>
The <b>TripGo</b> mobility platform lets you create apps providing seamless and personalised door-to-door trips using any public, private or commercial mode of transport.
TripGo Leaflet's plugin motivation is to provide an easy way to include its functionality in an external platform.
</td>
<td>
<a href="http://skedgo.com/">SkedGo</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/wwwouaiebe/leaflet.TravelNotes">leaflet.TravelNotes</a>
</td>
<td>
Editable markers and routing engine for leaflet. The routing engine have plugins for Mapbox, GraphHopper and OSRM and can be used for car, bike or pedestrian route. <a href="https://wwwouaiebe.github.io/leaflet.TravelNotes/?lng=en">Demo</a>.
</td>
<td>
<a href="https://github.com/wwwouaiebe">Christian Guyette</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/traffordDataLab/leaflet.reachability">Leaflet.Reachability</a>
</td><td>
Show areas of reachability based on time or distance for different modes of travel using the <a href="https://openrouteservice.org/documentation/#/reference/isochrones">openrouteservice isochrones API</a>.
</td><td>
<a href="https://github.com/traffordDataLab">Trafford Data Lab</a>
</td>
</tr>
</table>
### Geocoding
External services that transform an address or the name of a place into latitude and longitude (or vice versa).
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/smeijer/L.GeoSearch">Leaflet GeoSearch</a>
</td><td>
Small geocoding plugin that brings address searching/lookup (aka geosearching) to Leaflet.<br />
Comes with support for Google, OpenStreetMap Nominatim, Bing, Esri and Nokia. Easily extensible.
</td><td>
<a href="https://github.com/smeijer">Stephan Meijer</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/k4r573n/leaflet-control-osm-geocoder">Leaflet Control OSM Geocoder</a>
</td><td>
A simple geocoder that uses OpenstreetMap Nominatim to locate places by address.
</td><td>
<a href="https://github.com/k4r573n">Karsten Hinz</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/sa3m/leaflet-control-bing-geocoder">Leaflet Control Bing Geocoder</a>
</td><td>
A simple geocoder control that uses Bing to locate places.
</td><td>
<a href="https://github.com/sa3m">Samuel Piquet</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/perliedman/leaflet-control-geocoder">Leaflet Control Geocoder</a>
</td><td>
A clean and extensible control for both geocoding and reverse geocoding. Builtin support for
Nominatim, Bing, MapQuest, Mapbox, What3Words, Google and Photon. Easy to extend to other providers.
</td><td>
<a href="https://github.com/perliedman">Per Liedman</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/jakubdostal/leaflet-geoip">Leaflet GeoIP Locator</a>
</td><td>
A simple plugin that allows finding the approximate location of IP addresses and map centering on said location.
</td><td>
<a href="https://github.com/jakubdostal">Jakub Dostal</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Esri/esri-leaflet-geocoder">Esri Leaflet Geocoder</a>
</td><td>
A geocoding control with suggestions powered by the ArcGIS Online geocoder.
</td><td>
<a href="https://github.com/patrickarlt/">Patrick Arlt</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/lokku/leaflet-opencage-search">Leaflet.OpenCage.Search</a>
</td>
<td>
A search plugin plugin that uses <a href="http://geocoder.opencagedata.com/">OpenCage Data's geocoding API</a>.
</td>
<td>
The <a href="https://github.com/opencagedata">OpenCage</a> team
</td>
</tr>
<tr>
<td>
<a href="https://github.com/consbio/Leaflet.Geonames">Leaflet.Geonames</a>
</td>
<td>
A lightweight geocoding control powered by <a href="http://www.geonames.org/">GeoNames</a>. <a href="https://consbio.github.io/Leaflet.Geonames">Demo</a>
</td>
<td>
<a href="https://github.com/brendan-ward">Brendan Ward</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/pelias/leaflet-plugin">Pelias Leaflet Plugin</a>
</td>
<td>
A geocoding control using <a href="https://geocode.earth">Geocode Earth</a> or any hosted service powered by the <a href="https://github.com/pelias/api">Pelias Geocoder API</a>. <a href="https://pelias.github.io/leaflet-plugin/">Demo</a>
</td>
<td>
<a href="https://github.com/louh">Lou Huang</a>
</td>
</tr>
</table>
### Plugin collections
Sets of plugins that span several categories.
Plugin developers: please keep future plugins in individual repositories.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/shramov/leaflet-plugins">Plugins by Pavel Shramov</a>
</td><td>
A set of plugins for: GPX, KML, TOPOJSON layers; Bing tile layer; Yandex layers (implemented with their APIs), and permalink control.
</td><td>
<a href="https://github.com/shramov">Pavel Shramov</a>, <a href="https://github.com/brunob">Bruno B</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Estimap/Spectrum4Leaflet">Spectrum4Leaflet</a>
</td><td>
Tools for using Spectrum Spatial Server services with leaflet. This plugin supports: map service, tile service, feature service. It has layers, legend and feature controls.
</td><td>
<a href="https://github.com/SVoyt">SVoyt</a>, <a href="https://github.com/Estimap">ESTI MAP</a>
</td>
</tr>
<tr>
<td>
<a href="http://mapbbcode.org/leaflet.html">MapBBCode-related leaflet plugins</a>
</td><td>
Seven plugins for various features, independent of the MapBBCode library.
From circular and popup icons to buttons, layer switcher, better search and attribution.
</td><td>
<a href="https://github.com/zverik">Ilya Zverev</a>
</td>
</tr>
</table>
## Integration
### Frameworks & build systems
Ease your development integrating Leaflet into a development framework or automating some of the javascript/CSS work for complex applications.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/ghybs/leaflet-defaulticon-compatibility">leaflet-defaulticon-compatibility</a>
</td><td>
Retrieve all Leaflet Default Icon options from CSS, in particular all icon images URL's, to improve compatibility with bundlers and frameworks that modify URL's in CSS. In particular for webpack (with style-, css-, file- and url-loader's), Rails Asset Pipeline and Django pipeline. Should solve all use cases linked to <a href="https://github.com/Leaflet/Leaflet/issues/4968">issue Leaflet/Leaflet #4968</a>. <a href="https://ghybs.github.io/leaflet-defaulticon-compatibility/webpack-demo.html">Demo with webpack</a> (and <a href="https://ghybs.github.io/leaflet-defaulticon-compatibility/webpack-demo.html?demo=no-plugin">without this plugin</a>).
</td><td>
<a href="https://github.com/ghybs">ghybs</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/moklick/generator-leaflet">Leaflet Yeoman Generator</a>
</td><td>
Yeoman generator that scaffolds out a basic Leaflet map application.
</td><td>
<a href="https://github.com/moklick">Moritz Klack</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/PaulLeCam/react-leaflet">react-leaflet</a>
</td><td>
<a href="https://facebook.github.io/react/">React</a> components for Leaflet maps.
</td><td>
<a href="http://paullecam.github.io/">Paul Le Cam</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/leaflet-extras/leaflet.css">Leaflet.CSS</a>
</td><td>
Add the main Leaflet CSS files (or any css) from within JavaScript, be gone conditional comments.
</td><td>
<a href="https://github.com/calvinmetcalf">Calvin Metcalf</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Norkart/Leaflet-LayerConfig">Leaflet LayerConfig</a>
</td><td>
Provide a json file or service response with a configuration of layers and markers to automatically set up a Leaflet client.
</td><td>
<a href="https://github.com/alexanno">Alexander Nossum</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yohanboniface/Leaflet.i18n">Leaflet.i18n</a>
</td><td>
Internationalization for Leaflet plugins.
</td><td>
<a href="http://yohanboniface.me">Yohan Boniface</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/dagjomar/Leaflet.ZoomCSS">Leaflet ZoomLevel CSS Class</a>
</td><td>
Add zoom level css class to map element for easy style updates based on zoom levels
</td><td>
<a href="https://github.com/dagjomar">Dag Jomar Mersland</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/IjzerenHein/famous-map">famous-map</a>
</td><td>
Integrate Leaflet in applications made with the <a href='http://famo.us'>famo.us</a> web framework.
</td><td>
<a href="http://www.gloey.nl">Hein Rutjes</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/Asymmetrik/ngx-leaflet">ngx-leaflet</a>
</td><td>
Leaflet components and extensions for <a href="https://angular.io/">Angular.io</a>.
</td><td>
<a href="https://asymmetrik.com/">Asymmetrik, Ltd.</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/tombatossals/angular-leaflet-directive">Angular Leaflet directive</a>
</td><td>
Integrate Leaflet in applications made with the <a href='http://angularjs.org/'>AngularJS</a> web framework.
</td><td>
<a href="https://github.com/tombatossals">David Rubert</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/CleverMaps/tiny-leaflet-directive">Tiny Leaflet Directive</a>
</td><td>
Tiny LeafletJS map directive for your AngularJS apps.
</td><td>
<a href="https://github.com/mattesCZ">Martin Tesař</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/grantHarris/leaflet-popup-angular">Leaflet Popup Angular</a>
</td><td>
Use AngularJS in your Leaflet popups. Extends the built-in L.popup.
</td><td>
<a href="https://github.com/grantHarris">Grant Harris</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/grantHarris/leaflet-control-angular">Leaflet Control Angular</a>
</td><td>
Insert and use Angularized HTML code in your Leaflet map as a Leaflet control.
</td><td>
<a href="https://github.com/grantHarris">Grant Harris</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/yagajs/leaflet-ng2">YAGA leaflet-ng2</a>
</td><td>
Granular integration into Angular2/4. <a href="https://leaflet-ng2.yagajs.org/latest/examples"> demo </a>.
</td><td>
<a href="https://github.com/yagajs">YAGA Development Team</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/leaflet-extras/leaflet-map"><leaflet-map></a>
</td><td>
Integrate Leaflet in applications made with the <a href='https://www.polymer-project.org/'>Polymer >= 1.0</a> web component framework.
</td><td>
<a href="https://github.com/nhnb">Hendrik Brummermann</a>,
<a href="https://github.com/prtksxna">Prateek Saxena</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/prtksxna/leaflet-map-component">Leaflet map component</a>
</td><td>
Integrate Leaflet in applications made with the <a href='https://www.polymer-project.org/0.5/'>Polymer 0.5</a> web framework.
</td><td>
<a href="https://github.com/prtksxna">Prateek Saxena</a>
</td>
</tr>
<tr>
<td>
<a href="https://bitbucket.org/terrayazilim/leaflet.jsf">Leaflet.jsf</a>
</td><td>
Comprehensive Java Server Faces(JSF) Component/Wrapper for Leaflet.
</td><td>
<a href="http://terrayazilim.com.tr">Terra SI LLC.</a>
<a href="https://bitbucket.org/terrayazilim">M.Çağrı Tepebaşılı</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/themrleon/JSF2Leaf">JSF2Leaf</a>
</td><td>
A JavaServer Faces wrapper for Leaflet.
</td><td>
<a href="https://github.com/themrleon">Leonardo Ciocari</a>
</td>
</tr>
<tr>
<td>
<a href="https://miguelcobain.github.io/ember-leaflet/">ember-leaflet</a>
</td><td>
Easy and declarative mapping for <a href="http://emberjs.com/">Ember.js</a> using Leaflet.
</td><td>
<a href="https://github.com/miguelcobain">Miguel Andrade</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/bevanhunt/meteor-leaflet">meteor-leaflet</a>
</td><td>
Provides a Meteor package to quickly build real-time cross-platform map apps.
</td><td>
<a href="https://github.com/bevanhunt">Bevan Hunt</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gregallensworth/L.Control.BootstrapModal">L.Control.BootstrapModal</a>
</td><td>
Trigger a Bootstrap modal using an on-map control.
</td><td>
<a href="https://github.com/gregallensworth">Greg Allensworth</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gregallensworth/L.Control.jQueryDialog">L.Control.jQueryDialog</a>
</td><td>
Trigger a jQuery UI dialog/modal using an on-map control.
</td><td>
<a href="https://github.com/gregallensworth">Greg Allensworth</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mstahv/v-leaflet">V-Leaflet</a>
</td><td>
Use Leaflet as a component for the <a href='https://vaadin.com/home'>Vaadin</a> Java/HTML framework.
</td><td>
<a href="https://github.com/mstahv">Matti Tahvonen</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gwidgets/gwty-leaflet">gwty-leaflet</a>
</td><td>
A Java/GWT JsInterop wrapper for Leaflet. It allows using Leaflet in Java the same way as from a javascript script.
</td><td>
<a href="https://github.com/zak905">Zakaria Amine</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/gherardovarando/leaflet-map-builder">Leaflet Map Builder</a>
</td><td>
It populates a leaflet map from a configuration object, can also creates zoom, layers, attribution and draw controls. <a href="https://gherardovarando.github.io/leaflet-map-builder/"> demo </a>.
</td><td>
<a href="https://github.com/gherardovarando">Gherardo Varando</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/KoRiGaN/Vue2Leaflet">Vue2Leaflet</a>
</td><td>
<a href="https://github.com/KoRiGaN/Vue2Leaflet">Vue2Leaflet</a> is a JavaScript library for the <a href="https://vuejs.org/">Vue.js</a> framework that wraps Leaflet, making it easy to create reactive maps.
</td><td>
<a href="https://github.com/KoRiGaN">Mickaël KoRiGaN</a>
</td>
</tr>
</table>
### 3<sup>rd</sup> party integration
The following plugins integrate Leaflet into third party services or websites.
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Maintainer</th></tr>
<tr>
<td>
<a href="https://github.com/yohanboniface/Leaflet.EditInOSM">Leaflet.EditInOSM</a>
</td><td>
Add a control with links to open the current map view on main OSM editors.
</td><td>
<a href="http://yohanboniface.me">Yohan Boniface</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.mapsmarker.com/">Maps Marker Pro</a>
</td><td>
A WordPress plugin that enables users to pin, organize and share their favorite places and tracks through their WordPress powered site.
</td><td>
<a href="http://www.harm.co.at/">Robert Harm</a>
</td>
</tr>
<tr>
<td>
<a href="http://wordpress.org/plugins/leaflet-map/">WordPress Leaflet Map</a>
</td><td>
Interactive and flexible shortcode to create multiple maps in posts and pages,
and to add multiple markers on those maps.
</td><td>
<a href="https://bozdoz.com/projects/leaflet-map">Benjamin J DeLong</a>
</td>
</tr>
<tr>
<td>
<a href="https://maptiks.com">Maptiks</a>
</td>
<td>
Analytics platform for web maps. Track map activities, layer load times, marker clicks, and more!
</td>
<td>
<a href="http://www.sparkgeo.com/">Sparkgeo</a>
</td>
</tr>
<tr>
<td>
<a href="http://drupal.org/project/leaflet">Leaflet for Drupal</a>
</td><td>
A Drupal (7.x and 8.x) module to integrate Leaflet maps in your Drupal site. Contains a field formatter to show a map for fields containing geospatial data, Views integration to plot data on a map, and a lightweight and easy to use API. Currently used by over 10.000 sites.
</td><td>
<a href="http://marzeelabs.org">Marzee Labs</a>, and more maintainers listed at <a href="http://drupal.org/project/leaflet">drupal.org</a>
</td>
</tr>
<tr>
<td>
<a href="https://lapizistik.github.io/leaflet-easymap/">Leaflet Easymap</a>
</td><td>
Include a map in your HTML page without one line of programming. A data-driven Javascript module.
</td><td>
<a href="https://github.com/Lapizistik">Klaus Stein</a>
</td>
</tr>
<tr>
<td>
<a href="http://wp-mapit.phpwebdev.in">WP MapIt</a>
</td><td>
Easy to use, WordPress Map plugin based on Open Street Map and Leaflet with custom markers images, descriptions and links.
</td><td>
<a href="http://phpwebdev.in/">Chandni Patel</a>
</td>
</tr>
<tr>
<td>
<a href="https://wordpress.org/plugins/map-block-leaflet/">Map Block Leaflet</a>
</td><td>
A Block for the New WordPress Block Editor based on Leaflet, it allow add and custom maps from a visual interface.
</td><td>
<a href="https://goiblas.com/">Jesús Olazagoitia</a>
</td>
</tr>
<tr>
<td>
<a href="https://community.mybb.com/mods.php?action=view&pid=1238">ABP Usermap MyBB</a>
</td><td>
A plugin for <a href="https://mybb.com/">MyBB</a> creating a map of users based on Open Street Map and Leaflet, with customisable popup and markers
</td><td>
<a href="https://gitlab.com/AnoBug">CrazyCat</a>
</td>
</tr>
<tr>
<td>
Leaflet Extensions for <a href="https://www.joomla.org/">Joomla! (3.x)</a>
</td><td>
<ul>
<li>
<strong>Agosm: </strong><br />
Joomla Module not only for showing Markers on a OpenStreetMap Map.<br />
<a href="https://github.com/astridx/pkg_agosms">Gibhub</a><br />
<a href="https://extensions.joomla.org/extensions/extension/maps-a-weather/maps-a-locations/agosm/">Joomla Extension Directory</a><br />
</li>
<li>
<strong>Aggpxtrack: </strong><br />
Joomla Custom Field for dispaying a GPX Track on a Map - you can choose an OpenStreetMap or GoogleMaps. With much options. For example: One option is an elevation profil.<br />
<a href="https://github.com/astridx/pkg_aggpxtrack">Gibhub</a><br />
<a href="https://extensions.joomla.org/extensions/extension/maps-a-weather/maps-a-locations/aggpxtrack/">Joomla Extension Directory</a><br />
</li>
<li>
<strong>Agosmmapwithmarker: </strong><br />
Custom field for show a map with a marker in frond end - always the right card for the content. You can enter the address in backend.<br />
<a href="https://github.com/astridx/plg_fields_agosmmapwithmarker">Gibhub</a><br />
<a href="https://extensions.joomla.org/extensions/extension/maps-a-weather/maps-a-locations/agosmmapwithmarker/">Joomla Extension Directory</a><br />
</li>
</ul>
</td><td>
<a href="https://github.com/astridx">Astrid Günther</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/mwasil/Leaflet.Facebook/">Leaflet.Facebook</a>
</td><td>
Simple plugin for adding Facebook like button as a control.
</td><td>
<a href="https://marcinwasilewski.eu/u">Marcin Wasilewski</a>
</td>
</tr>
<tr>
<td>
<a href="https://github.com/alexboia/WP-Trip-Summary/">WP-Trip-Summary</a>
</td><td>
A WordPress trip summary plugin to help travel bloggers manage and display structured information about their train rides and biking or hiking trips.
</td><td>
<a href="https://wordpress.org/plugins/wp-trip-summary/">Alexandru Boia</a>
</td>
</tr>
</table>
## Develop your own
Leaflet keeps it simple. If you can think of a feature that is not required by all Leaflet users, and you can write the JavaScript code in a reusable way, you've got yourself a Leaflet plugin already.
There are no hard requirements on how to create your own plugin, but all developers are encouraged to read the recommendations in the [plugin guide](https://github.com/Leaflet/Leaflet/blob/master/PLUGIN-GUIDE.md).
Once your plugin is ready, you can submit it to this list: just send a pull request with the addition to [/docs/plugins.md](https://github.com/Leaflet/Leaflet/blob/master/docs/plugins.md) to our GitHub repository.
|