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.

12 lines
355 B

  1. const LeafletGeoSearch = require('leaflet-geosearch')
  2. register_hook('init', function () {
  3. // Add Geo Search
  4. var provider = new LeafletGeoSearch.OpenStreetMapProvider()
  5. var searchControl = new LeafletGeoSearch.GeoSearchControl({
  6. provider: provider,
  7. showMarker: false,
  8. retainZoomLevel: true
  9. })
  10. global.map.addControl(searchControl)
  11. })