<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: GoogleMap Addon</title>
	<atom:link href="http://www.schonhose.nl/pixelpost-addons/googlemap/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schonhose.nl</link>
	<description>Bits of blogging and ranting by Schonhose</description>
	<lastBuildDate>Thu, 05 May 2011 18:40:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: .::Schonhose.nl::. &#187; The end of Pixelpost (at my blog)</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-52219</link>
		<dc:creator>.::Schonhose.nl::. &#187; The end of Pixelpost (at my blog)</dc:creator>
		<pubDate>Mon, 09 Aug 2010 07:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-52219</guid>
		<description>[...] alternative language support for templates. I also developed some addons, one of the biggest the Googlemap addon to display images on the map. It is still a nice showcase of the addon power in Pixelpost because [...]</description>
		<content:encoded><![CDATA[<p>[...] alternative language support for templates. I also developed some addons, one of the biggest the Googlemap addon to display images on the map. It is still a nice showcase of the addon power in Pixelpost because [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-47658</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Mon, 28 Jun 2010 05:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-47658</guid>
		<description>Brain, thanks for the fix!</description>
		<content:encoded><![CDATA[<p>Brain, thanks for the fix!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-46462</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 24 Jun 2010 22:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-46462</guid>
		<description>Excellent add-on, thanks for the work.

I found one slight bug and would like to suggest a fix. I use geosetter to add gps info to the exif and then process in lightroom. As a result, the longitude and latitude are given as positive integers with a seperate key saying whether they are degrees north, south, east or west. This means anything west of the meridian or south of the equator will shop up wrongly when using the gps exif info. I&#039;ve fixed this by modifying the addon php file with this code:
&lt;code&gt;
// try to get the GPS exif data
	if (array_key_exists(&#039;LatitudeGPS&#039;, $exif_info)) {
		if (array_key_exists(&#039;Longitude ReferenceGPS&#039;, $exif_info)){
			if ($exif_info[&#039;Latitude ReferenceGPS&#039;]==&#039;S&#039;) {
				$latitudeGPS = &#039;-&#039; . $exif_info[&#039;LatitudeGPS&#039;];
			} else {
				$latitudeGPS = $exif_info[&#039;LatitudeGPS&#039;];
			}
			if ($exif_info[&#039;Longitude ReferenceGPS&#039;]==&#039;W&#039;) {
				$longitudeGPS = &#039;-&#039; . $exif_info[&#039;LongitudeGPS&#039;];
			} else {
				$longitudeGPS = $exif_info[&#039;LongitudeGPS&#039;];
			}
		}
		else {
			$latitudeGPS = $exif_info[&#039;LatitudeGPS&#039;];
			$longitudeGPS = $exif_info[&#039;LongitudeGPS&#039;];
		}
	} else {
		$latitudeGPS = NULL;
		$longitudeGPS = NULL;
	}
&lt;/code&gt;
I hope you don&#039;t mind! Thanks again.</description>
		<content:encoded><![CDATA[<p>Excellent add-on, thanks for the work.</p>
<p>I found one slight bug and would like to suggest a fix. I use geosetter to add gps info to the exif and then process in lightroom. As a result, the longitude and latitude are given as positive integers with a seperate key saying whether they are degrees north, south, east or west. This means anything west of the meridian or south of the equator will shop up wrongly when using the gps exif info. I&#8217;ve fixed this by modifying the addon php file with this code:<br />
<code><br />
// try to get the GPS exif data<br />
	if (array_key_exists('LatitudeGPS', $exif_info)) {<br />
		if (array_key_exists('Longitude ReferenceGPS', $exif_info)){<br />
			if ($exif_info['Latitude ReferenceGPS']=='S') {<br />
				$latitudeGPS = '-' . $exif_info['LatitudeGPS'];<br />
			} else {<br />
				$latitudeGPS = $exif_info['LatitudeGPS'];<br />
			}<br />
			if ($exif_info['Longitude ReferenceGPS']=='W') {<br />
				$longitudeGPS = '-' . $exif_info['LongitudeGPS'];<br />
			} else {<br />
				$longitudeGPS = $exif_info['LongitudeGPS'];<br />
			}<br />
		}<br />
		else {<br />
			$latitudeGPS = $exif_info['LatitudeGPS'];<br />
			$longitudeGPS = $exif_info['LongitudeGPS'];<br />
		}<br />
	} else {<br />
		$latitudeGPS = NULL;<br />
		$longitudeGPS = NULL;<br />
	}<br />
</code><br />
I hope you don&#8217;t mind! Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Photoblog Take 2 &#171; [Insert Witty Title Here]</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-14317</link>
		<dc:creator>Photoblog Take 2 &#171; [Insert Witty Title Here]</dc:creator>
		<pubDate>Sat, 26 Sep 2009 17:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-14317</guid>
		<description>[...] I found editing the theme to be pretty easy, I&#8217;m toying with the idea of installing this add-on, which enables visitors to see where photos were taken on a Google Map.  I was interested in [...]</description>
		<content:encoded><![CDATA[<p>[...] I found editing the theme to be pretty easy, I&#8217;m toying with the idea of installing this add-on, which enables visitors to see where photos were taken on a Google Map.  I was interested in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesper</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-14195</link>
		<dc:creator>Jesper</dc:creator>
		<pubDate>Tue, 15 Sep 2009 09:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-14195</guid>
		<description>Great add-on. I&#039;ve been using it on http://www.jespergarde.com (&#039;View on map&#039; link in top bar) for a long time. Thanks for providing it!

I recently saw another way of using maps where a thumbnail map is added to each individual photo page showing where the photo was taken (ie. http://phototraces.net/image/pei_20081130/)

Would it be easy to re-use the coordinates I already entered for your GoogleMap icon for an image_template level thumbnail map?

Thanks,
Jesper Garde</description>
		<content:encoded><![CDATA[<p>Great add-on. I&#8217;ve been using it on <a href="http://www.jespergarde.com" rel="nofollow">http://www.jespergarde.com</a> (&#8216;View on map&#8217; link in top bar) for a long time. Thanks for providing it!</p>
<p>I recently saw another way of using maps where a thumbnail map is added to each individual photo page showing where the photo was taken (ie. <a href="http://phototraces.net/image/pei_20081130/" rel="nofollow">http://phototraces.net/image/pei_20081130/</a>)</p>
<p>Would it be easy to re-use the coordinates I already entered for your GoogleMap icon for an image_template level thumbnail map?</p>
<p>Thanks,<br />
Jesper Garde</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: .::Schonhose.nl::. &#187; Projects I&#8217;m currently working on</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-14155</link>
		<dc:creator>.::Schonhose.nl::. &#187; Projects I&#8217;m currently working on</dc:creator>
		<pubDate>Wed, 09 Sep 2009 19:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-14155</guid>
		<description>[...] Plugin,, initially developed by my buddy Jay. As not only the author but also user of both the Googlemap addon and the FTP security addon I needed to modify the Lightroom Export plugin to facilitate both GPS [...]</description>
		<content:encoded><![CDATA[<p>[...] Plugin,, initially developed by my buddy Jay. As not only the author but also user of both the Googlemap addon and the FTP security addon I needed to modify the Lightroom Export plugin to facilitate both GPS [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pekka</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-13765</link>
		<dc:creator>Pekka</dc:creator>
		<pubDate>Thu, 23 Jul 2009 10:07:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-13765</guid>
		<description>Hi, this is a great addon, thank you so much. I&#039;ve been using this for years I think.

Found a little bug in info window opening code. Line 1191 in admin_GoogleMap.php misses the clean_pic_thumb parameter in createMarkerLatestPic function call. Which causes the info window output to be wrong, of course. (I&#039;m getting &#039;undefined&#039; in the output.)

Keep up the good work!</description>
		<content:encoded><![CDATA[<p>Hi, this is a great addon, thank you so much. I&#8217;ve been using this for years I think.</p>
<p>Found a little bug in info window opening code. Line 1191 in admin_GoogleMap.php misses the clean_pic_thumb parameter in createMarkerLatestPic function call. Which causes the info window output to be wrong, of course. (I&#8217;m getting &#8216;undefined&#8217; in the output.)</p>
<p>Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-13493</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 12 Jun 2009 19:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-13493</guid>
		<description>Ow yeah, titles can be confusing some times for the googlemap addon. As a programmers point of view I use strings which are encapsulated by single or double quotes (depending on my mood). If one of the string contains such a terminator, somewhere in the string, it will wreck havoc among the rest of the javascript code.

Although it can be easily fixed by both the addon and the Pixelpost core files (HTML entities come to mind), the current version online doesn&#039;t have this fix. The unreleased V3.0 code on my site does, but that doesn&#039;t help your problem a bit.

Not to worry about your five comments, when I do have the time I&#039;ll merge them. Glad you got it fixed.  =)</description>
		<content:encoded><![CDATA[<p>Ow yeah, titles can be confusing some times for the googlemap addon. As a programmers point of view I use strings which are encapsulated by single or double quotes (depending on my mood). If one of the string contains such a terminator, somewhere in the string, it will wreck havoc among the rest of the javascript code.</p>
<p>Although it can be easily fixed by both the addon and the Pixelpost core files (HTML entities come to mind), the current version online doesn&#8217;t have this fix. The unreleased V3.0 code on my site does, but that doesn&#8217;t help your problem a bit.</p>
<p>Not to worry about your five comments, when I do have the time I&#8217;ll merge them. Glad you got it fixed.  <img src='http://www.schonhose.nl/wp-includes/images/smilies/equal_smile.gif' alt='=)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pelar</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-13485</link>
		<dc:creator>Pelar</dc:creator>
		<pubDate>Thu, 11 Jun 2009 17:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-13485</guid>
		<description>Last time, feeling bit stupid to be posting 5 comments in a row, but you can make it one if you want :)

I scanned the last 36 photos one by one what was causing the problem. I finally found out what one was causing the problems, it had this exact title: One of the  founains at Via delle Quattro Fontane&quot;

As you can see there was by mistake a &quot; at the end of the title. I removed it and looked up the coordinates and it didn&#039;t give me any problems anymore! So I guess the problem was as well for the clustering as the blanco page.

Just a tiny stupid thingy that messed it up :)</description>
		<content:encoded><![CDATA[<p>Last time, feeling bit stupid to be posting 5 comments in a row, but you can make it one if you want :)</p>
<p>I scanned the last 36 photos one by one what was causing the problem. I finally found out what one was causing the problems, it had this exact title: One of the  founains at Via delle Quattro Fontane&#8221;</p>
<p>As you can see there was by mistake a &#8221; at the end of the title. I removed it and looked up the coordinates and it didn&#8217;t give me any problems anymore! So I guess the problem was as well for the clustering as the blanco page.</p>
<p>Just a tiny stupid thingy that messed it up :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pelar</title>
		<link>http://www.schonhose.nl/pixelpost-addons/googlemap/comment-page-2/#comment-13484</link>
		<dc:creator>Pelar</dc:creator>
		<pubDate>Thu, 11 Jun 2009 12:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.schonhose.nl/pixelpost-addons/googlemap/#comment-13484</guid>
		<description>And the 4th (sorry):

But it&#039;s also the clustering option that causes problems. Tried several thing with the latest photos and the clustering option on and of and their both causing problems.</description>
		<content:encoded><![CDATA[<p>And the 4th (sorry):</p>
<p>But it&#8217;s also the clustering option that causes problems. Tried several thing with the latest photos and the clustering option on and of and their both causing problems.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

