MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-GoogleMapsTraffic

    Scheduled Pinned Locked Moved Transport
    87 Posts 27 Posters 74.2k Views 28 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • evroomE Offline
      evroom
      last edited by

      Yes, the README tricked you a bit.

      Remove this:

      var config = {
      modules: [
      

      and the last 2 lines:

      }
      ]
      

      Verify with:

      cd ~/MagicMirror; npm run config:check
      

      MagicMirror version: 2.30.0
      Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
      Raspbian GNU/Linux 12 (bookworm)

      Test environment:
      MagicMirror version: v2.30.0
      Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
      Raspbian GNU/Linux 12 (bookworm)

      T 1 Reply Last reply Reply Quote 1
      • T Offline
        tbs86 @evroom
        last edited by

        @evroom

        did what you said and did the config check and this is what i got

        Line 134 col 5 Unexpected ‘]’.
        Line 134 col 5 Expected an identifier and instead saw ‘]’.
        Line 134 col 6 Missing semicolon.
        Line 134 col 5 Unrecoverable syntax error. (95% scanned).
        pi@raspberrypi:~/MagicMirror $

        1 Reply Last reply Reply Quote 0
        • T Offline
          tbs86
          last edited by tbs86

          it says line 134 but the only thing on line 134 is a ]

          here is my code leading up to 134

          		{
              module: "MMM-EARTH",
              position: "bottom_center",
              config: {
                  mode: "Natural",
                  rotateInterval: 15000,
                  MaxWidth: "50%",
                  MaxHeight: "50%",
              }
          },
          		
          			       
          				    
          				    
          
          		
          
          
          	]
          
          };
          
          

          That is line 116 to 136 the end of my config

          Mykle1M 1 Reply Last reply Reply Quote 0
          • Mykle1M Offline
            Mykle1 Project Sponsor Module Developer @tbs86
            last edited by

            @tbs86

            This is your current config entry

            var config = {
            modules: [
                {
                    module: 'MMM-GoogleMapsTraffic',
                    position: 'bottom_left',
                    config: {
                        key: 'YOUR_KEY',
                        lat: 37.8262306,
                        lng: -122.2920096,
                        height: '300px',
                        width: '300px'
                        styledMapType: "transparent",
                        disableDefaultUI: true,
                        backgroundColor: 'hsla(0, 0%, 0%, 0)',
                        markers: [
                            {
                                lat: 37.8262316,
                                lng: -122.2920196,
                                fillColor: '#9966ff'
                            },
                        ],
                    },
                }
            ]
            

            Make it look like this or copy and paste

                {
                    module: 'MMM-GoogleMapsTraffic',
                    position: 'bottom_left',
                    config: {
                        key: 'YOUR_KEY',
                        lat: 37.8262306,
                        lng: -122.2920096,
                        height: '300px',
                        width: '300px'
                        styledMapType: "transparent",
                        disableDefaultUI: true,
                        backgroundColor: 'hsla(0, 0%, 0%, 0)',
                        markers: [
                            {
                                lat: 37.8262316,
                                lng: -122.2920196,
                                fillColor: '#9966ff'
                            },
                        ],
                    },
            

            Props to @evroom

            Create a working config
            How to add modules

            T 1 Reply Last reply Reply Quote 0
            • T Offline
              tbs86 @Mykle1
              last edited by

              @mykle1 said in MMM-GoogleMapsTraffic:

              {
                  module: 'MMM-GoogleMapsTraffic',
                  position: 'bottom_left',
                  config: {
                      key: 'YOUR_KEY',
                      lat: 37.8262306,
                      lng: -122.2920096,
                      height: '300px',
                      width: '300px'
                      styledMapType: "transparent",
                      disableDefaultUI: true,
                      backgroundColor: 'hsla(0, 0%, 0%, 0)',
                      markers: [
                          {
                              lat: 37.8262316,
                              lng: -122.2920196,
                              fillColor: '#9966ff'
                          },
                      ],
                  },
              

              still getting a error

              Mykle1M 1 Reply Last reply Reply Quote 0
              • Mykle1M Offline
                Mykle1 Project Sponsor Module Developer @tbs86
                last edited by Mykle1

                @tbs86

                Sorry about that. I just checked it. Try this please. There was a comma missing after width: '300px', and no comma after the closing } Not your fault. The example in the readme is incorrect

                {
                    module: 'MMM-GoogleMapsTraffic',
                    position: 'bottom_left',
                    config: {
                        key: 'YOUR_KEY',
                        lat: 37.8262306,
                        lng: -122.2920096,
                        height: '300px',
                        width: '300px',
                        styledMapType: "transparent",
                        disableDefaultUI: true,
                        backgroundColor: 'hsla(0, 0%, 0%, 0)',
                        markers: [
                            {
                                lat: 37.8262316,
                                lng: -122.2920196,
                                fillColor: '#9966ff'
                            },
                        ],
                    }
                  },
                

                Create a working config
                How to add modules

                T 1 Reply Last reply Reply Quote 1
                • T Offline
                  tbs86 @Mykle1
                  last edited by

                  @mykle1

                  this worked thank you!!

                  Mykle1M 1 Reply Last reply Reply Quote 0
                  • Mykle1M Offline
                    Mykle1 Project Sponsor Module Developer @tbs86
                    last edited by

                    @tbs86

                    You’re welcome, mate. :thumbsup:

                    Create a working config
                    How to add modules

                    1 Reply Last reply Reply Quote 0
                    • R Offline
                      rvanuden
                      last edited by

                      it all seems to be working but googlemaps can not be loaded, i used a new key though

                      any ideas?

                      0_1560152399610_maps.PNG

                      R 1 Reply Last reply Reply Quote 0
                      • R Offline
                        rvanuden @rvanuden
                        last edited by

                        @rvanuden anyone?

                        M 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 6
                        • 7
                        • 8
                        • 9
                        • 5 / 9
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy