5 lines
148 B
HTML
5 lines
148 B
HTML
|
<script>
|
||
|
var marker = L.marker([{{ .Get "lat" }}, {{ .Get "long" }}]).addTo(mymap);
|
||
|
marker.bindPopup("{{ .Get "msg" }}").openPopup();
|
||
|
</script>
|