<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MaisonBisson.com &#187; multimap</title>
	<atom:link href="http://maisonbisson.com/blog/post/tag/multimap/feed/" rel="self" type="application/rss+xml" />
	<link>http://maisonbisson.com</link>
	<description>A bunch of stuff I would have emailed you about.</description>
	<lastBuildDate>Sat, 14 Nov 2009 20:14:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>bsuite_geocode Plugin For WordPress</title>
		<link>http://maisonbisson.com/blog/post/10846/bsuite_geocode-plugin-for-wordpress/</link>
		<comments>http://maisonbisson.com/blog/post/10846/bsuite_geocode-plugin-for-wordpress/#comments</comments>
		<pubDate>Mon, 26 Sep 2005 21:57:21 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog gis]]></category>
		<category><![CDATA[blogmap]]></category>
		<category><![CDATA[blogmaps]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[geocoding]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[geotagging]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[lat]]></category>
		<category><![CDATA[latitude and longitude]]></category>
		<category><![CDATA[lon]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[multimap]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp plugin]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=10846</guid>
		<description><![CDATA[
I&#8217;m a big fan of the WP Geo plugin, but I want more.
My biggest complaint is that I want to insert coordinates using Google Maps or MultiMap URLs, rather than insert them in the modified story editor. So I wrote a bit of code that reads through the URLs in a post, finds the “maps.google” [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10846"><!-- &nbsp; --></abbr>
<p>I&#8217;m a big fan of the <a href="http://dev.wp-plugins.org/wiki/GeoPlugin">WP Geo plugin</a>, but I want more.</p>
<p>My biggest complaint is that I want to insert coordinates using <a href="http://maisonbisson.com/blog/post/10682/">Google Maps</a> or <a href="http://maisonbisson.com/blog/post/10682/">MultiMap</a> URLs, rather than insert them in the modified story editor. So I wrote a bit of code that reads through the URLs in a post, finds the “maps.google” or “multimap.com” URLs, fishes the latitude and longitude out of them, and adds some geocoding tags to the body of the post.</p>
<p>Take a look at how it works with <a href="http://maisonbisson.com/blog/search/maps.google">these posts</a> in my archive&#8230;</p>
<p>You should see one or more blocks of links like the following (from my <a href="http://maisonbisson.com/blog/post/10804/">Osceola Weekend</a> post):</p>
<p style="text-align:right;font-size:10px;">geolocation: <a href="http://technorati.com/tags/geo:lat=44.006336">geo:lat=44.006336</a>, <a href="http://technorati.com/tags/geo:lon=-71.547260">geo:lon=-71.547260</a>, <a href="http://technorati.com/tags/geotagged">geotagged</a>, <a href="http://technorati.com/tags/geolocation:44.006336,-71.547260">geolocation:44.006336,-71.547260</a> <a href="http://www.geobloggers.com/index.cfm?action=search&#038;cutoff=100&#038;fLat=44.006336&#038;fLon=-71.547260&#038;iStartRecord=1&#038;iMaxRecords=25&#038;iZL=6&#038;sMapMode=hybrid&#038;sSearchType=newest&#038;lstItemType=flickr,note,audio,video,link">geobloggers</a></p>
<p>Go ahead and click the “<a href="http://www.geobloggers.com/index.cfm?action=search&#038;cutoff=100&#038;fLat=44.006336&#038;fLon=-71.547260&#038;iStartRecord=1&#038;iMaxRecords=25&#038;iZL=6&#038;sMapMode=hybrid&#038;sSearchType=newest&#038;lstItemType=flickr,note,audio,video,link">geobloggers</a>” link. I could have added these links using the old Geo plugin, but I still would have had to insert the coordinates separately. Actually, that brings up a good point: my code also inserts post metadata in the same format the Geo plugin uses, so I can take advantage of all the good functions it has, like the one that inserts the “&lt;meta name=“ICBM” content=“44.006336, -71.547260” /&gt;” tag in the header of this post (caveat: I had to disable the add_action code in Geo that feeds the postmeta table, as it was conflicting my code).</p>
<p>I&#8217;m releasing this now, to start some public discussion, but please recognize that it&#8217;s a very early beta.</p>
<p><strong>Download:</strong> <a href="http://homepage.mac.com/misterbisson/projects/bsuite_geocode.zip">bsuite_geocode.zip</a><br />
<strong>Install:</strong> place unzipped “bsuite_geocode.php” file in your wp-content/plugins folder and activate it via the WP control panel. See the <a href="http://codex.wordpress.org/Managing_Plugins">WordPress Codex</a> for more detail.<br />
<strong>Use:</strong> write posts as usual, adding links to Google Maps or MultiMap as appropriate. Links to those sites that have latitude and longitude components will be used to geocode the post.</p>
<p>Example of a working URL:</p>
<blockquote><p>http://maps.google.com/maps?<strong>ll=19.355507,-155.072365</strong>&#38;spn=.191780,.318003&#38;t=k&#38;hl=en</p></blockquote>
<p>Example of a URL that won&#8217;t work (note how there&#8217;s no “<strong>ll=</strong>”):</p>
<blockquote><p>http://maps.google.com/maps?q=decker+canyon+rd,+malibu+california&#38;spn=0.019857,0.039750&#38;hl=en</p></blockquote>
<p>I&#8217;ve got a lot of features and uses in mind, so consider this only a start. Please post bugs and suggestions in the comments.</p>
<p>Also, see these previous posts on <a href="http://maisonbisson.com/blog/post/10625/">geolocating the news</a> or <a href="hthttp://maisonbisson.com/blog/post/10586/">geolocating everything</a> or just <a href="http://maisonbisson.com/blog/search/geolocat">search the archives</a> to understand why I&#8217;m so excited about things like this.</p>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">tags: <a href="http://www.technorati.com/tag/beta" rel="tag">beta</a>, <a href="http://www.technorati.com/tag/blog" rel="tag">blog</a>, <a href="http://www.technorati.com/tag/blogmap" rel="tag">blogmap</a>, <a href="http://www.technorati.com/tag/blogmaps" rel="tag">blogmaps</a>, <a href="http://www.technorati.com/tag/blog gis" rel="tag">blog gis</a>, <a href="http://www.technorati.com/tag/geo" rel="tag">geo</a>, <a href="http://www.technorati.com/tag/geocoding" rel="tag">geocoding</a>, <a href="http://www.technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://www.technorati.com/tag/geotagging" rel="tag">geotagging</a>, <a href="http://www.technorati.com/tag/gis" rel="tag">gis</a>, <a href="http://www.technorati.com/tag/google maps" rel="tag">google maps</a>, <a href="http://www.technorati.com/tag/lat" rel="tag">lat</a>, <a href="http://www.technorati.com/tag/latitude and longitude" rel="tag">latitude and longitude</a>, <a href="http://www.technorati.com/tag/lon" rel="tag">lon</a>, <a href="http://www.technorati.com/tag/map" rel="tag">map</a>, <a href="http://www.technorati.com/tag/maps" rel="tag">maps</a>, <a href="http://www.technorati.com/tag/mapping" rel="tag">mapping</a>, <a href="http://www.technorati.com/tag/metadata" rel="tag">metadata</a>, <a href="http://www.technorati.com/tag/multimap" rel="tag">multimap</a>, <a href="http://www.technorati.com/tag/plugin" rel="tag">plugin</a>, <a href="http://www.technorati.com/tag/plugins" rel="tag">plugins</a>, <a href="http://www.technorati.com/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.technorati.com/tag/wordpress plugin" rel="tag">wordpress plugin</a>, <a href="http://www.technorati.com/tag/wp plugin" rel="tag">wp plugin</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10846/bsuite_geocode-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Google Maps Gets All The Attention</title>
		<link>http://maisonbisson.com/blog/post/10682/google-maps-gets-all-the-attention/</link>
		<comments>http://maisonbisson.com/blog/post/10682/google-maps-gets-all-the-attention/#comments</comments>
		<pubDate>Wed, 20 Jul 2005 10:29:16 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[aerial photographs]]></category>
		<category><![CDATA[chernobyl]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[map site]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[maps of the world]]></category>
		<category><![CDATA[multimap]]></category>
		<category><![CDATA[online maps]]></category>
		<category><![CDATA[rest of the world]]></category>
		<category><![CDATA[road maps]]></category>

		<guid isPermaLink="false">http://www.maisonbisson.com/blog/?p=10682</guid>
		<description><![CDATA[
It would reasonably appear that here in the US, there&#8217;s only one map site: good ol&#8217; Google. But until Google adds maps for countries other than the US, Canada, and UK, the rest of the world will have to look elsewhere. Enter the UK competitor: Multimap.com has been serving the world outside the bubble since [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10682"><!-- &nbsp; --></abbr>
<p>It would reasonably appear that here in the US, there&#8217;s only one map site: good ol&#8217; <a href="http://maps.google.com/">Google</a>. But until Google adds maps for countries other than the US, Canada, and UK, the rest of the world will have to look elsewhere. Enter the UK competitor: <a href="http://multimap.com/">Multimap.com</a> has been serving the world outside the bubble <a href="http://multimap.com/static/about1.htm">since 1996</a>.  From their self description:</p>
<blockquote><p>Key features include street-level maps of the United Kingdom, Europe, and the US; road maps of the world; door-to-door travel directions; aerial photographs; and local information.</p></blockquote>
<p>In short, it&#8217;s probably the best place to point any random set of coordinates. Example: my story about the <a href="http://www.maisonbisson.com/blog/post/10300/">Chernobyl tour</a> should probably have included this <a href="http://www.multimap.com/map/browse.cgi?scale=500000&amp;lon=30.233333&amp;lat=51.266667&amp;mapsize=big">street map of the region</a>. (Yes, Google will now give me a low resolution <a href="http://maps.google.com/maps?ll=51.388550,30.111465&amp;spn=0.043297,0.080235&amp;t=k&amp;hl=en">satellite photo of the reactor</a>, but photos and maps offer different value for different uses.)</p>
<p>My only complaint is that the service lacks the <a href="http://en.wikipedia.org/wiki/AJAX">AJAX</a> features that make Google Maps so great. But that might be changing. A post at <a href="http://www.mcwetboy.net/maproom/2005/07/ordnance_survey_overlays_on_multimap_aerial_photos.phtml" title="The Map Room: Ordnance Survey Overlays on Multimap Aerial Photos">The Map Room</a> tells of a new feature for UK regions: a map overlay follows the mouse on aerial photos. Take a look at <a href="http://www.multimap.com/map/photo.cgi?client=public&#038;X=411000&#038;Y=200000&#038;width=700&#038;height=400&#038;gride=&#038;gridn=&#038;srec=0&#038;coordsys=gb&#038;db=&#038;pc=&#038;zm=0&#038;scale=25000&#038;downright.x=67&#038;downright.y=7" title="Nick’s example">this example</a>. Nice trick, eh?</p>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">tags: <a href="http://technorati.com/tag/aerial photographs" rel="tag">aerial photographs</a>, <a href="http://technorati.com/tag/chernobyl" rel="tag">chernobyl</a>, <a href="http://technorati.com/tag/google" rel="tag">google</a>, <a href="http://technorati.com/tag/map" rel="tag">map</a>, <a href="http://technorati.com/tag/map site" rel="tag">map site</a>, <a href="http://technorati.com/tag/mapping" rel="tag">mapping</a>, <a href="http://technorati.com/tag/maps" rel="tag">maps</a>, <a href="http://technorati.com/tag/maps of the world" rel="tag">maps of the world</a>, <a href="http://technorati.com/tag/multimap" rel="tag">multimap</a>, <a href="http://technorati.com/tag/online maps" rel="tag">online maps</a>, <a href="http://technorati.com/tag/rest of the world" rel="tag">rest of the world</a>, <a href="http://technorati.com/tag/road maps" rel="tag">road maps</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10682/google-maps-gets-all-the-attention/feed/</wfw:commentRss>
		<slash:comments>207</slash:comments>
		</item>
	</channel>
</rss>