and paste it below the previous location (or in the desired order). You can add as many locations as you want. They will show up as locations with connecting lines on the map.
5) Click "Publish Post" and you're done!

I'm helping out on a project,
GreenerEarth, which is a location companion site to the
GreenerMagazine set of environmental weblogs.
For various reasons, they're using
Blogger to currently run their weblogs since it's free, easy to setup, and easy to use for non-technical people.
The goal of
GreenerEarth was to create a companion weblog that provided maps and locations to the various articles that will appear on GreenerEarth. The difficulty resides in the severe restrictions using an hosted blogging tool places on creating a dynamically generated maps. I wanted to allow the writers to easiliy create new posts, put in locations, and then just 'post'. The actual page would handle parsing the post for the location data and then creating the resulting map.
The only access you have in Blogger (at least) is the main template page, and post templates. Therefore, the solution calls for a marked-up post with lots of tags, and heavy Javascripting of the DOM to dynamically create an array of locations and put these on a GoogleMap.
The result is the ability for any blog author to write a post using the template and the resulting post to have a map with the multiple (or single) locations and article body. As the user clicks on locations in the map, the detailed description shows itself and a bubble shows the summary and link to the site's homepage.
The nitty-gritty
The post template looks like this:
The fields should be pretty self-explanatory. The
GeoRSS microformat is still being standardized, and hasn't yet been defined for marking up XHTML content. So I made an ad-hoc solution. A filled out post would then look like so:
Sustainable Diamaonds
Diavik diamond mines are sustainable Mines located in the Northwest Territories.
Diavik diamond mine
Lac de Gras
Northwest Territories
Canada
Some Interesting information about Diamond mines
If you have multiple locations, copy the template before the
and paste it below the previous location (or in the desired order). You can add as many locations as you want. Each location will show up as locations with connecting lines on the map.
The Code
------------
";
var marker = createMarker(locationPoints[locationPoints.length-1], i, html,
mapLocation[i]);
map.addOverlay(marker);
}
map.addOverlay(new GPolyline(locationPoints));
map.centerAndZoom(locationPoints[0], 4);
}
//]]>