More "simple" questions about the Dispatcher. Like David I'll turn the
responses into a doc:
I am doing some work on the listLocations plugin. I need to integrate
Google Maps so that I get a mini-map for each of the entries in a file.
Here is a sample of the code that I need to output. Can someone tell me
what my contract should look like. The part that confuses me is the fact
that I need to add content into the head as well as the body:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://maps.google.com/maps?file=api&v=1
&key=ADD_YOUR_KEY_HERE" type="text/javascript">
</script>
</head>
<body>
<div id="map" style="width: 400px; height: 300px"></div>
<script type="text/javascript">
//<![CDATA[
var map = new GMap(document.getElementById("map"));
map.centerAndZoom(new GPoint(-83.022206, 39.998264), 3);
//]]>
</script>
</body>
</html>
Thanks,
Ross