here’s the URL https://www.shareyourmemories.ca/maps/
If i look at the source I see the map section like this
<!--
This link is for your reference, it can be pasted into a browser:
https://www.shareyourmemories.ca?do_wo_map=1&time=28&units=days&map=4&pin=1&pins=on&text=on&textcolor=000000&textshadow=FFFFFF&textalign=cb&ul_lat=0&ul_lon=0&lr_lat=360&lr_lon=180&offset_x=0&offset_y=0&wp-minify-off=1&type=png
$map_settings = array(
// html map settings
// set these settings as needed
'time' => ’28′, // digits of time
‘units’ => ‘days’, // minutes, hours, or days (with or without the “s”)
‘map’ => ’4′, // 1,2,3 etc. (you can add more map images in settings)
‘pin’ => ’1′, // 1,2,3 etc. (you can add more pin images in settings)
‘pins’ => ‘off’, // off (off is required for html map)
‘text’ => ‘on’, // on or off
‘textcolor’ => ’000000′, // any hex color code
‘textshadow’ => ‘FFFFFF’, // any hex color code
‘textalign’ => ‘cb’, // ll, ul, lr, ur, c, ct, cb (codes for: lower left, upper left, upper right, center, center top, center bottom)
‘ul_lat’ => ’0′, // default 0 for worldmap
‘ul_lon’ => ’0′, // default 0 for worldmap
‘lr_lat’ => ’360′, // default 360 for worldmap
‘lr_lon’ => ’180′, // default 180 for worldmap
‘offset_x’ => ’0′, // + or – offset for x axis – moves pins left, + moves pins right
‘offset_y’ => ’0′, // + or – offset for y axis – moves pins up, + moves pins down
‘type’ => ‘png’, // jpg or png (map output type)
);
echo get_visitor_maps_worldmap($map_settings);
–>
I’m not sure of why everything in my source is converted to html entities (it is converted back on this board), but at any rate the last line converts to -> when it really should be an end comment block -->