improve map
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 5m38s
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 5m38s
This commit is contained in:
parent
bb1ac27ea6
commit
5f12042f2f
3 changed files with 18 additions and 6 deletions
|
|
@ -3,7 +3,7 @@
|
|||
crossorigin="">
|
||||
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
|
||||
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
|
||||
crossorigin="">
|
||||
crossorigin=""></script>
|
||||
|
||||
<style>
|
||||
#map { height: 750px; width: 100%; }
|
||||
|
|
@ -26,13 +26,13 @@
|
|||
html: `
|
||||
<div>
|
||||
<span style="background-color: #eee; padding: 2px;">
|
||||
{{ loc.2 }}
|
||||
{{ loc.route_id }} to {{ loc.headsign }}
|
||||
</span>
|
||||
</div>`,
|
||||
className: 'text-label'
|
||||
});
|
||||
var marker = L.marker([{{loc.0}}, {{loc.1}}], {icon: icon}).addTo(map);
|
||||
marker.bindPopup("{{ loc.2 }}")
|
||||
var marker = L.marker([{{loc.lat}}, {{loc.lng}}], {icon: icon}).addTo(map);
|
||||
marker.bindPopup("{{ loc.route_id }}")
|
||||
}
|
||||
{% endfor %}
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue