Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Как я сделал JS-библиотеку Leaflet успешной

Как я сделал JS-библиотеку Leaflet успешной

Leaflet — JS-библиотека для интерактивных карт, взлетевшая до небес популярности за очень короткое время, несмотря на очень крупных и именитых конкурентов. Что обеспечило такой успех и любовь пользователей?

Vladimir Agafonkin

November 17, 2012
Tweet

More Decks by Vladimir Agafonkin

Other Decks in Technology

Transcript

  1. • 2 года разработки • 8009 строк кода • 1732

    коммита от 86 разных человек • 3233 followers, 535 forks • issues: 188 открытых, 964 закрытых • pull requests: 38 открытых, 328 закрытых
  2. количество возможностей Images Markers Popups Vectors XYZ tiles GeoJSON WMS

    Layer groups Inertial pan Scroll zoom Dblclick zoom Box zoom Keyboard nav Pinch zoom Dbltap zoom Marker drag Pan anim Zoom anim Zoom buttons Attribution Layer switcher Scale Map rotation Fractional zoom WebGL renderer TMS WMTS TileCache MapGuide MapServer KaMap KaMapCache MultiMap Google Yahoo WorldWind Virtual Earth Bing Zoomify UTFGrid OSM ArcGIS ArcIMS GML GeoRSS KML WFS WFST ArcXML Atom CQL SLD GPX OSM XML OWS Context WKT XLS XML Drawing Editing Graticule Measure Pan control Minimap Permalink Clustering
  3. количество возможностей Images Markers Popups Vectors XYZ tiles GeoJSON WMS

    Layer groups Inertial pan Scroll zoom Dblclick zoom Box zoom Keyboard nav Pinch zoom Dbltap zoom Marker drag Pan anim Zoom anim Zoom buttons Attribution Layer switcher Scale Map rotation Fractional zoom WebGL renderer TMS WMTS TileCache MapGuide MapServer KaMap KaMapCache MultiMap Google Yahoo WorldWind Virtual Earth Bing Zoomify UTFGrid OSM ArcGIS ArcIMS GML GeoRSS KML WFS WFST ArcXML Atom CQL SLD GPX OSM XML OWS Context WKT XLS XML Drawing Editing Graticule Measure Pan control Minimap Permalink Clustering
  4. качество возможностей Images Markers Popups Vectors XYZ tiles GeoJSON WMS

    Layer groups Inertial pan Scroll zoom Dblclick zoom Box zoom Keyboard nav Pinch zoom Dbltap zoom Marker drag Pan anim Zoom anim Zoom buttons Attribution Layer switcher Scale + сторонние плагины
  5. var map = L.map('map') .setView([51.505, -0.09], 13); L.tileLayer( 'http://{s}.tile.osm.org/{z}/{x}/{y}.png') .addTo(map);

    L.marker([51.5, -0.09]) .addTo(map) .bindPopup('Hello World!') .openPopup(); максимально простой API