0.2.1 • Published 4 years ago

leaflet-trails v0.2.1

Weekly downloads
92
License
GPL-3.0
Repository
github
Last release
4 years ago

leaflet-trails.js

A Leaflet plugin that allows easy integration with Lonvia's Waymarked Trails Site

For a working example see one of the following examples:


How to use

  1. include CSS & JavaScript
    <head>
    ...
    <style> html, body, #map { height: 100%; width: 100%; padding: 0; margin: 0; } </style>
    <!-- Leaflet (JS/CSS) -->
    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css" />
    <script src="https://unpkg.com/leaflet@1.3.4/dist/leaflet.js"></script>
    <!-- Leaflet-Pointable -->
    <script src="https://unpkg.com/leaflet-pointable@0.0.2/leaflet-pointable.js"></script>
    <!-- Leaflet-Trails -->
    <script src="https://unpkg.com/leaflet-trails@0.0.1/leaflet-trails.js"></script>
    <link rel="stylesheet" href="https://unpkg.com/leaflet-trails@0.0.1/leaflet-trails.css">
    ...
    </head>
  2. choose a div container used for the slippy map
    <body>
    ...
      <div id="map"></div>
    ...
    </body>
  3. create your first simple “leaflet-trails slippy map

    <script>
    var map = L.map('map');
    	map.setView(new L.LatLng(43.5978, 12.7059), 5);
    
    	var control = L.control.layers(null, null, {
    		collapsed: false
    	}).addTo(map);
    
    	var OpenTopoMap = L.tileLayer('https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png', {
    		maxZoom: 17,
    		attribution: 'Map data: &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, <a href="http://viewfinderpanoramas.org">SRTM</a> | Map style: &copy; <a href="https://opentopomap.org">OpenTopoMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)',
    		opacity: 0.90
    	});
    
    	var HikingTrails = L.tileLayer('https://tile.waymarkedtrails.org/{id}/{z}/{x}/{y}.png', {
    		id: 'hiking',
    		pointable: true,
    		attribution: '&copy; <a href="http://waymarkedtrails.org">Sarah Hoffmann</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)',
    	});
    	var CyclingTrails = L.tileLayer('https://tile.waymarkedtrails.org/{id}/{z}/{x}/{y}.png', {
    		id: 'cycling',
    		pointable: true,
    		attribution: '&copy; <a href="http://waymarkedtrails.org">Sarah Hoffmann</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)',
    	});
    
    	control.addOverlay(HikingTrails, "Hiking Routes");
    	control.addOverlay(CyclingTrails, "Cycling Routes");
    
    	OpenTopoMap.addTo(map);
    </script>

Compatibile with: leaflet@1.3.4, leaflet-pointable@0.0.2


Contributors: Raruto

0.2.1

4 years ago

0.2.0

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.9

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago