You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
519 B

  1. register_hook('init', function () {
  2. // Geo location
  3. L.control.locate({
  4. locateOptions: {
  5. enableHighAccuracy: true
  6. },
  7. flyTo: true,
  8. keepCurrentZoomLevel: true,
  9. initialZoomLevel: 17,
  10. drawCircle: true,
  11. circleStyle: {
  12. weight: 0,
  13. fillColor: '#ff0000'
  14. },
  15. markerStyle: {
  16. color: '#ff0000',
  17. fillColor: '#ff0000'
  18. },
  19. compassStyle: {
  20. color: '#ff0000',
  21. fillColor: '#ff0000'
  22. },
  23. showCompass: true,
  24. showPopup: false
  25. }).addTo(map)
  26. })