Hello, I'm searching a way to display maps with the share function of google maps like this <iframe src="https://embed.waze.com/iframe?zoom=12&lat=46.385425&lon=-0.687675&ct=livemap" width="600" height="450" allowfullscreen></iframe> is it possible with the s9e text formatter plugin ? Thank you for your help

    jordanjay29 It is enabled here, though, so you could try with just the normal share link, and not the embed code.

      datitisev Hello do you know how I could extend this in order to embed google maps and/or Waze is there a documentation in order to do this myself ?
      This feature is really really important for many hobbies like motorcycle, bicycle, races, running, trek and many many other things.
      Thanks for your help.

        • [deleted]

        brian85 Doesn't that background image make the text difficult to read ? Also, that image would have to be loaded on every page increasing the actual load time ?

        brian85 You can add your own, by following the examples found @ https://s9etextformatter.readthedocs.io/Plugins/MediaEmbed/Add_custom/.

        Just the following part though, the rest of the code isn't necessary:

        
        $configurator->MediaEmbed->add(
            'youtube',
            [
                'host'    => ['youtube.com', 'youtu.be'],
                'extract' => [
                    "!youtube\\.com/watch\\?v=(?'id'[-0-9A-Z_a-z]+)!",
                    "!youtu\\.be/(?'id'[-0-9A-Z_a-z]+)!"
                ],
                'iframe'  => [
                    'width'  => 560,
                    'height' => 315,
                    'src'    => 'http://www.youtube.com/embed/{@id}'
                ]
            ]
        );

        That would go in your forum's (or extension's, if you decide to make one) extend.php, from which the configurator can be accessed by listening the Configuring event (see here for an example, no need for the Frontend assets though unless you require them).

        Thank you, sorry I'm totaly noob in Flarum, is it a new file ? where should I place it ?

        Ok now I got no error but it doesn't work I'm surely making some mistakes :

        use Flarum\Extend;
        use s9e\TextFormatter\Configurator;
        
        return [
            // Register extenders here to customize your forum!
            (new Extend\Formatter)
                ->configure(function (Configurator $config) {
        
                    $configurator = new s9e\TextFormatter\Configurator;
        
                    $configurator->MediaEmbed->add(
                        'ggmaps',
                        [
                            'host'    => ['google.com'],
                            'extract' => [
                                "!google\\.com/maps/d/embed\\?mid=([-.&=0-9A-Z_a-z]+)!",
                                //"!youtube\\.com/watch\\?v=(?'id'[-0-9A-Z_a-z]+)!"
                            ],
                            'iframe'  => [
                                'width'  => 560,
                                'height' => 315,
                                'src'    => 'https://www.google.com/maps/d/embed?mid={@id}'
                            ]
                        ]
                    );
                    // Get an instance of the parser and the renderer
                    extract($configurator->finalize());
        
                    $text = '[media]https://www.google.com/maps/d/embed?mid=-cEzsCAzTak[/media]';
                    $xml  = $parser->parse($text);
                    $html = $renderer->render($xml);
        
                    echo $html;
                }),
        ];

        I try to paste this https://www.google.com/maps/d/embed?mid=17Tr1RXRo-GFJ-lY4AaiQUOF22KkLV9ak&hl=fr
        And it could work, there is no google's restrictions, here is the result by editing html in dev console :

        I think it's a problem of regex that does not match... but the regex are really weird in the examples in documentation they failed in a regex online tester there is anything customized behind the scene, it's not a simple preg_match ?

        Is there anybody have the experience extending the s9e\TextFormatter ?

          brian85 You'll need to clear the cache. First, however, perform the following changes. You only need the $configurator->MediaEmbed->add block, not the rest.

          Rename Configurator $config to Configurator $configurator, and remove the following lines:

                      $configurator = new s9e\TextFormatter\Configurator;
                      // Get an instance of the parser and the renderer
                      extract($configurator->finalize());
          
                      $text = '[media]https://www.google.com/maps/d/embed?mid=-cEzsCAzTak[/media]';
                      $xml  = $parser->parse($text);
                      $html = $renderer->render($xml);
          
                      echo $html;

          Thank you it works after the cache clear sorry for my mistake with $config it's a closure off course ! It's juste THE feature I was hopping ! Many thanks !

          2 years later

          What file or folder should I create exactly? I wanted to do it manually with ftp.

          a year later