<?php
//both the index and the map invocation need the configuration.
//so we store it in a separate file that both can include().
$mapconfigstring = <<<END_XML
<jjfmapper>
<output format="png"/>
<projection fit="states:Michigan" padding="5%" />
<layer format="background" color="339" />
<layer name="states"
format="shapefile"
file="\${geodir}/states"
style="fill"
color="393" />
<layer format="text"
color="white"
text="Save Ontario. Help fight global warming."
align="right"
valign="top" />
</jjfmapper>
END_XML;
?>