Add `leaflet-circle.html` as a shorcode for map circle.

This commit is contained in:
Kazuhiro MUSASHI 2019-04-14 00:00:20 +08:00
parent 78fd1b8673
commit 7e1fc240f3
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<script>
var circle = L.circle([{{ .Get "lat" }}, {{ .Get "long" }}], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 500
}).addTo(mymap);
</script>