Jump to content

Module: Leaflet Map


Mats

Recommended Posts

is it possible to use an image filed for the markers instead of the fontawesome option?
my code looks like this (it works with the FontIconPicker):
 

<?php
    $options = array(
    'height' => '100%',
    'markerIconColour' => 'black',
    'popupFormatter' => function($page) {
        $out[] = "<p>$page->headline</p>";
        return implode($out);
    },
    'markerFormatter' => function($page, $marker_options) {
        $marker_options['icon'] = $page->marker_icon; // Override the default icon for this marker.
        return $marker_options;
    }
);
      $items = $lage->map_repeater; 
echo $map->render($items, 'map', $options); 
                 ?>

 

  • Like 1
Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...

Hi!

I have problems displaying the map. It is not showing up.

I installed all the modules, setup the field and the template and put the following in my template file (home.php with delayed output):

echo $page->map->address;   // outputs the address you entered
echo $page->map->lat;       // outputs the latitude
echo $page->map->lng;       // outputs the longitude
echo $page->map->zoom;      // outputs the zoom level
$map = wire('modules')->get('MarkupLeafletMap');
echo $map->getLeafletMapHeaderLines();
echo $map->render($page, 'map');

Address, lat, lng and zoom are printed out, but there is no map. What am I doing wrong? I am not a coder.

Looks like sonething is messed up, the source code of the page looks like this

leafletmarkersource.png

Is that the correct? It is the same problem as with the google map marker field :mellow:

Link to comment
Share on other sites

This is my home.php:
 

<?php namespace ProcessWire;

echo $page->map->address;   // outputs the address you entered
echo $page->map->lat;       // outputs the latitude
echo $page->map->lng;       // outputs the longitude
echo $page->map->zoom;      // outputs the zoom level
$map = wire('modules')->get('MarkupLeafletMap');
echo $map->getLeafletMapHeaderLines();
echo $map->render($page, 'map');

// home.php (homepage) template file.
// See README.txt for more information

// Primary content is the page body copy and navigation to children.
// See the _func.php file for the renderNav() function example
$content = $page->body . renderNav($page->children);

// if there are images, lets choose one to output in the sidebar
if(count($page->images)) {
    // if the page has images on it, grab one of them randomly...
    $image = $page->images->getRandom();
    // resize it to 400 pixels wide
    $image = $image->width(400);
    // output the image at the top of the sidebar...
    $sidebar = "<img src='$image->url' alt='$image->description' />";
    // ...and append sidebar text under the image
    $sidebar .= $page->sidebar;    
} else {
    // no images...
    // append sidebar text if the page has it
    $sidebar = $page->sidebar;
}

 

Link to comment
Share on other sites

I tried. But whenever I put

<?php
$map = wire('modules')->get('MarkupLeafletMap');
echo $map->getLeafletMapHeaderLines();
?>

in the head section of _main.php I get this error message:
 

Error: Uncaught Error: Call to a member function render() on null in /home/html/portal.dev/site/templates/home.php:14
Stack trace:
#0 /home/html/portal.dev/wire/core/TemplateFile.php(268): require()
#1 [internal function]: ProcessWire\TemplateFile->___render()
#2 /home/html/portal.dev/wire/core/Wire.php(374): call_user_func_array(Array, Array)
#3 /home/html/portal.dev/wire/core/WireHooks.php(549): ProcessWire\Wire->_callMethod('___render', Array)
#4 /home/html/portal.dev/wire/core/Wire.php(399): ProcessWire\WireHooks->runHooks(Object(ProcessWire\TemplateFile), 'render', Array)
#5 /home/html/portal.dev/wire/modules/PageRender.module(515): ProcessWire\Wire->__call('render', Array)
#6 [internal function]: ProcessWire\PageRender->___renderPage(Object(ProcessWire\HookEvent))
#7 /home/html/portal.dev/wire/core/Wire.php(374): call_user_func_array(Array, Array)
#8 /home/html/portal.dev/wire/core/WireHooks.php(549): ProcessWire\Wire->_callMethod( (line 14 of /home/html/portal.dev/site/templates/home.php)

This error message was shown because: you are logged in as a Superuser. Error has been logged.

 

Link to comment
Share on other sites

This is the original file (I took out the comments):
 

<?php namespace ProcessWire;

?><!DOCTYPE html>
<html lang="en">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title><?php echo $title; ?></title>
    <meta name="description" content="<?php echo $page->summary; ?>" />
    <link href='//fonts.googleapis.com/css?family=Lusitana:400,700|Quattrocento:400,700' rel='stylesheet' type='text/css' />
    <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>styles/main.css" />
</head>

When I add

    <?php
       $map = wire('modules')->get('MarkupLeafletMap');
       echo $map->getLeafletMapHeaderLines();
    ?>

right before </head> I still get the error message mentioned above when I use "echo $map->render($page, 'map');" in home.php!

BTW: the map in the backend is working.

Link to comment
Share on other sites

@fliwatuet

Sounds like $map is undefined in the home.php file. Please try this. In _main.php...

<!DOCTYPE html>
<html lang="en">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title><?php echo $title; ?></title>
    <meta name="description" content="<?php echo $page->summary; ?>" />
    <link href='//fonts.googleapis.com/css?family=Lusitana:400,700|Quattrocento:400,700' rel='stylesheet' type='text/css' />
    <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates?>styles/main.css" />
<?php
    $map = wire('modules')->get('MarkupLeafletMap');
    echo $map->getLeafletMapHeaderLines();
?>
</head>

in home.php...

<?php
    $map = wire('modules')->get('MarkupLeafletMap');
    echo $map->render($page, 'map');
?>

Also, are you sure your field is actually called 'map'?

Link to comment
Share on other sites

7 minutes ago, netcarver said:

Does the page you are viewing using the home template actually have a value for the map field saved in it?

What do you mean? I added the map field to the home template and then edited the home page, put an address into the map field. I then edited the home.php template file and the _main.php.

No errors as far as i can see.

Link to comment
Share on other sites

  • 4 weeks later...

Hello @netcarver I'm having the same problem @fliwatuet reported above.

I supposed I've added everything correctly:

in my _init.php:

$map = $modules->get('MarkupLeafletMap');

inside the <head></head> of my top_nav.php:

echo $map->getLeafletMapHeaderLines();

and then in my template file:

<?php echo $map->render($page, 'map'); ?> // yes, the field is called "map"

Inspecting the code I see all the css and js files in the <head> after this comment:

<!-- Styles supporting the use of Leaflet.js -->
.. css and js are here ..

And the correct <div> is generated by the module:

<div id="mleafletmap1" class="MarkupLeafletMap" style="width: 100%; height: 500px;"></div>

...but unfortunately the map is blank on the front-page of the site. 

I'm working on localhost on ProcessWire 2.8.35.

....got suggestions for me?

Link to comment
Share on other sites

Thanks for the reply @netcarver. I appreciate.

No errors anywhere in the console/inspector.

I've also tried to manually point the module to the 1.0.2 version of the leaflet JS and css (changhing both unpkg.com urls) but without luck, same blank div.

Have you got time to try to reproduce this strange behaviour?

 

 

Link to comment
Share on other sites

@3fingers So, all the resources are loading - and there are no errors - and there is no output? Ok - is this on a local development box or on a server I can take a look at?

Edited to add: I have seen a correctly set-up map fail to load if a browser is blocking scripts using an extension like noscript/umatrix/ublock-origin etc.

  • Like 1
Link to comment
Share on other sites

...And there was the problem! I got an ad-blocker installed causing this issue on chrome. Unfortunately nowadays a lot of people have them turned on.

I'm going to investigate for a workaround, but It is kind of a remarkable issue for my project :(

In the meantime thanks for your support.

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...

Hello, I have a question if this module can do the following.

I have a turtle that lives in one ore more states (US) or countries. I want to show this on a map on the page about that turtle. The input has to based on just the name of the state or country as I want to use the same also just for a text reference (like a tag).

Besides that I want a big map on a sperate page that combines all the turtles and shows which are located where with a hoover link to that turtle (page).

The final step is a page per state or country that show the map of that region on top and all related posts below...

It's a bit ambitious but I had to ask...

Link to comment
Share on other sites

  • 4 weeks later...
On 30/12/2016 at 2:12 PM, webhoes said:

Hello, I have a question if this module can do the following.

I have a turtle that lives in one ore more states (US) or countries. I want to show this on a map on the page about that turtle. The input has to based on just the name of the state or country as I want to use the same also just for a text reference (like a tag).

Besides that I want a big map on a sperate page that combines all the turtles and shows which are located where with a hoover link to that turtle (page).

The final step is a page per state or country that show the map of that region on top and all related posts below...

It's a bit ambitious but I had to ask...

All possible.....for the maps you can select  what items you show on your map based on any field (for your specific turtle page):

$items = $pages->find("marker_colour=red");

My code here:

// LEAFLET MAP WITH BICYCLE ICONS
$items = $pages->find("marker_icon=bicycle");
$map = wire('modules')->get('MarkupLeafletMap');
$options = array(
    'markerFormatter' => function($page, $marker_options) {
              if ($page->marker_icon->title) {
                        $marker_options['icon'] = $page->marker_icon->title;
                    }
                    if ($page->marker_colour->title) {
                        $marker_options['markerColor'] = $page->marker_colour->title;
                    }
                    // And the icon colour. This is another text field. Colour values like White, Black or an RGB value are ok here.
                    if ($page->marker_icon_colour->title) {
                        $marker_options['iconColor'] = $page->marker_icon_colour->title;
                    }    
        return $marker_options;
    },
    'popupFormatter' => function($page) {
        $out[] = "<strong>$page->summary</strong>";
        $out[] = "<a href=\"$page->url\" ><img src=\"{$page->summary_image->url}\" class=\"image fit\"  /></a>";
        $out[] = "<img src=\"{$page->summary_image->url}\" width=\"200\" height=\"200\" />"; // ** NB: Use escaped double quotes if HTML attributes needed **
        return implode('<br/>', $out);
    }
);

 

and for items from different categories (species for your big map):

$items = $pages->find("marker_colour=red|green|blue");

 

Remember you can use:

'red', 'darkred', 'orange', 'green', 'darkgreen', 'blue', 'purple', 'darkpuple' & 'cadetblue'

and any icons from your version of Awesome icons: http://fontawesome.io/icons/

 

Beneath each map you can summarise revevant posts for each region or each species with the page find function based on an "options field type":

$features = $pages->find('species=loggerhead');

 

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...