diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/controllers/map_controller.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/javascript/controllers/map_controller.js b/app/javascript/controllers/map_controller.js index 5363e5e..2a2b310 100644 --- a/app/javascript/controllers/map_controller.js +++ b/app/javascript/controllers/map_controller.js @@ -7,14 +7,15 @@ // import { Controller } from "stimulus" -import L from "leaflet" import "leaflet/dist/leaflet.css" +import L from "leaflet" + export default class extends Controller { static targets = [ "container" ] initialize() { - console.log("Map controller initialized.") + } connect() { |