<?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>Blog of Travis Hydzik &#187; update</title>
	<atom:link href="http://thydzik.com/tag/update/feed/" rel="self" type="application/rss+xml" />
	<link>http://thydzik.com</link>
	<description>random snippets and information</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:54:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>thydzikGoogleMap v1.5 – an inline Google map plugin for WordPress</title>
		<link>http://thydzik.com/thydzikgooglemap-v1-5-an-inline-google-map-plugin-for-wordpress/</link>
		<comments>http://thydzik.com/thydzikgooglemap-v1-5-an-inline-google-map-plugin-for-wordpress/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 05:03:09 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[thydzik Google Map]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[v1.5]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=511</guid>
		<description><![CDATA[Recently updated and confirmed still working with WordPress 3.0. The following examples use the included example.xml file. Marker Z &#8211; no HTML, nonclickable. Marker 1 &#8211; standard maker with some text. Marker Default &#8211; no icon defaults to standard Google Maps marker. Marker $ &#8211; some symbols can even be displayed on a marker and [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/thydzikgooglemap-v1-5-an-inline-google-map-plugin-for-wordpress/' addthis:title='thydzikGoogleMap v1.5 – an inline Google map plugin for WordPress ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>Recently updated and confirmed still working with WordPress 3.0.</p>
<p>The following examples use the included <em>example.xml</em> file.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;markers&gt;
&lt;!-- Marker Z has no html to show nonclickability--&gt;
&lt;marker lat=&quot;-31.9554&quot; lng=&quot;115.85859&quot;  icon=&quot;Z&quot; color=&quot;c89bff&quot;/&gt;
&lt;marker lat=&quot;-32.053128&quot; lng=&quot;115.745869&quot; html=&quot;Fremantle&quot;  icon=&quot;1&quot; color=&quot;6b98ff&quot;/&gt;
&lt;!-- Standard marker with html--&gt;
&lt;marker lat=&quot;-32.036036&quot; lng=&quot;115.92724&quot; html=&quot;Lynwood&amp;lt;br&amp;gt;Residence of the author&quot; color=&quot;ffed5c&quot;/&gt;
&lt;marker lat=&quot;-31.963013&quot; lng=&quot;115.836239&quot; html=&quot;Kings Park&quot; icon=&quot;KP&quot; color=&quot;97ec7d&quot;/&gt;
&lt;!-- Character marker with html that includes link--&gt;
&lt;marker lat=&quot;-31.956659&quot; lng=&quot;115.869906&quot; html=&quot;&amp;lt;a href=&amp;quot;http://perthmint.com.au&amp;quot; rel=&amp;quot;nofollow&amp;quot;&amp;gt;Perth Mint&amp;lt;/a&amp;gt;&quot; icon=&quot;$&quot; color=&quot;ffffff&quot;/&gt;
&lt;line colour=&quot;#0000FF&quot; width=&quot;2&quot; opacity=&quot;0.75&quot;&gt;
	&lt;point lat=&quot;-32.027579&quot; lng=&quot;115.751266&quot; /&gt;
	&lt;point lat=&quot;-31.987404&quot; lng=&quot;115.769463&quot; /&gt;
	&lt;point lat=&quot;-31.957697&quot; lng=&quot;115.852203&quot; /&gt;
	&lt;point lat=&quot;-31.963814&quot; lng=&quot;115.879326&quot; /&gt;
	&lt;point lat=&quot;-32.026415&quot; lng=&quot;115.942154&quot; /&gt;
&lt;/line&gt;
&lt;/markers&gt;
</pre>
<ul>
<li>Marker Z &#8211; no HTML, nonclickable.</li>
<li>Marker 1 &#8211; standard maker with some text.</li>
<li>Marker Default &#8211; no icon defaults to standard Google Maps marker.</li>
<li>Marker $ &#8211; some symbols can even be displayed on a marker and links in the HTML.</li>
<li>Marker KP &#8211; up to two characters can be displayed.</li>
</ul>
<p>The syntax is as follows;</p>
<pre>thydzikGoogleMap(example.xml, width, height, zoom, maptype)</pre>
<p>where;</p>
<ul>
<li>example.xml is your xml file, and example xml file is included with thdyzikGoogleMap in the plugin directory.</li>
<li>width is the optional width parameter, if left out the default width defined in the thydzikGoogleMap options will be used.</li>
<li>height is the optional height parameter, if left out the default height defined in the thydzikGoogleMap options will be used.</li>
<li>zoom is the optional zoom level from 0 to 17 (0 being the furthest away), if left out zoom will be calculated automatically to fit all points.</li>
<li>maptype is the optional map type parameters, which can be (Normal, G_NORMAL_MAP, N), (SATELLITE, G_SATELLITE_MAP, S), (HYBRID, G_HYBRID_MAP, H), (PHYSICAL, G_PHYSICAL_MAP, P, TERRAIN or T) if left out Normal is defined.</li>
</ul>
<p><strong>Normal</strong>, <strong>G_NORMAL_MAP</strong>, <strong>N</strong> or left out; i.e. <strong>thydzikGoogleMap(example.xml)</strong>, thydzikGoogleMap will produce a default styled map;</p>
<!--thydzikgooglemap-->
<div class='tgm_div' id='map511n1' style='width: 460px; height: 345px'></div>
<script type='text/javascript'>
google.maps.event.addDomListener(window, 'load', function () {thydzikgm('map511n1', 'aHR0cDovL3RoeWR6aWsuY29tL3dwLWNvbnRlbnQvcGx1Z2lucy90aHlkemlrLWdvb2dsZS1tYXAvZXhhbXBsZS54bWw=', -1, 'ROADMAP', 1, 'XML'); });
</script>
<!--/thydzikgooglemap-->

<p><strong>SATELLITE</strong>, <strong>G_SATELLITE_MAP</strong>, <strong>S</strong>; i.e. <strong>thydzikgooglemap(example.xml, 4, S)</strong>, thydzikGoogleMap will produce a satellite styled map. Note I have included a zoom of 4, and used the abreviation &#8216;S&#8217;;</p>
<!--thydzikgooglemap-->
<div class='tgm_div' id='map511n2' style='width: 460px; height: 345px'></div>
<script type='text/javascript'>
google.maps.event.addDomListener(window, 'load', function () {thydzikgm('map511n2', 'aHR0cDovL3RoeWR6aWsuY29tL3dwLWNvbnRlbnQvcGx1Z2lucy90aHlkemlrLWdvb2dsZS1tYXAvZXhhbXBsZS54bWw=', 4, 'SATELLITE', 1, 'XML'); });
</script>
<!--/thydzikgooglemap-->

<p><strong>HYBRID</strong>, <strong>G_HYBRID_MAP</strong>, <strong>H</strong>; i.e. <strong>tHyDzIkGoOgLeMaP(example.xml,hYbRiD,450,225)</strong>, thydzikGoolgeMap will produce a hybrid styled map. Note I have included a width and height, and proved that capitalisation is not of concern;</p>
<!--thydzikgooglemap-->
<div class='tgm_div' id='map511n3' style='width: 450px; height: 225px'></div>
<script type='text/javascript'>
google.maps.event.addDomListener(window, 'load', function () {thydzikgm('map511n3', 'aHR0cDovL3RoeWR6aWsuY29tL3dwLWNvbnRlbnQvcGx1Z2lucy90aHlkemlrLWdvb2dsZS1tYXAvZXhhbXBsZS54bWw=', -1, 'HYBRID', 1, 'XML'); });
</script>
<!--/thydzikgooglemap-->

<p><strong>PHYSICAL</strong>, <strong>G_PHYSICAL_MAP</strong>, <strong>P</strong>, <strong>TERRAIN</strong> or <strong>T</strong>; i.e <strong>thydzikGoogleMap(example.xml,TERRAIN)</strong>, thydzikGoogleMap will produce a terrain styled map;</p>
<!--thydzikgooglemap-->
<div class='tgm_div' id='map511n4' style='width: 460px; height: 345px'></div>
<script type='text/javascript'>
google.maps.event.addDomListener(window, 'load', function () {thydzikgm('map511n4', 'aHR0cDovL3RoeWR6aWsuY29tL3dwLWNvbnRlbnQvcGx1Z2lucy90aHlkemlrLWdvb2dsZS1tYXAvZXhhbXBsZS54bWw=', -1, 'TERRAIN', 1, 'XML'); });
</script>
<!--/thydzikgooglemap-->

<p><strong>Reading XML from different folder</strong><br />
The XML can be in any location, as long as the whole path is specified i.e. thydzikgooglemap(<a href="http://thydzik.com/geocaching/karratha-mar08/karratha-mar08.xml">http://thydzik.com/geocaching/karratha-mar08/karratha-mar08.xml</a>). Yes, even links in the marker text are preserved.</p>
<!--thydzikgooglemap-->
<div class='tgm_div' id='map511n5' style='width: 460px; height: 345px'></div>
<script type='text/javascript'>
google.maps.event.addDomListener(window, 'load', function () {thydzikgm('map511n5', 'aHR0cDovL3RoeWR6aWsuY29tL2dlb2NhY2hpbmcva2FycmF0aGEtbWFyMDgva2FycmF0aGEtbWFyMDgueG1s', -1, 'ROADMAP', 1, 'XML'); });
</script>
<!--/thydzikgooglemap-->

<p>Reading XML from different domain<br />
The XML can even be on a different domain, as long as the whole path is specified. i.e. thydzikgooglemap(<a href="http://sonyaandtravis.com/maps/clare-melbourne08.xml">http://sonyaandtravis.com/maps/our-nullarbor-adventure-clare-melbourne08.xml</a>).</p>
<!--thydzikgooglemap-->
<div class='tgm_div' id='map511n6' style='width: 460px; height: 345px'></div>
<script type='text/javascript'>
google.maps.event.addDomListener(window, 'load', function () {thydzikgm('map511n6', 'aHR0cDovL3NvbnlhYW5kdHJhdmlzLmNvbS9tYXBzL291ci1udWxsYXJib3ItYWR2ZW50dXJlLWNsYXJlLW1lbGJvdXJuZTA4LnhtbA==', -1, 'ROADMAP', 1, 'XML'); });
</script>
<!--/thydzikgooglemap-->

<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/thydzikgooglemap-v1-5-an-inline-google-map-plugin-for-wordpress/' addthis:title='thydzikGoogleMap v1.5 – an inline Google map plugin for WordPress ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/thydzikgooglemap-v1-5-an-inline-google-map-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>thydzikGoogleMap v1.3</title>
		<link>http://thydzik.com/thydzikgooglemap-v13/</link>
		<comments>http://thydzik.com/thydzikgooglemap-v13/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 01:23:20 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[thydzik Google Map]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[v1.3]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=57</guid>
		<description><![CDATA[I have finally managed to get WordPress to update the version number. This problem was due to not updating the version number in the PHP file as well as the readme.txt. Version 1.3 fixes a problem with thydzikGoogleMap not displaying correctly when a WordPress blog isn&#8217;t located in the domain folder. I have seen a [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/thydzikgooglemap-v13/' addthis:title='thydzikGoogleMap v1.3 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>I have finally managed to get WordPress to update the version number. This problem was due to not updating the version number in the PHP file as well as the readme.txt.</p>
<p>Version 1.3 fixes a problem with thydzikGoogleMap not displaying correctly when a WordPress blog isn&#8217;t located in the domain folder.</p>
<p>I have seen a few users, using thydzikGoogleMap to display a single point or no points at all, thydzikGoogleMap isn&#8217;t really for this as it is not worth creating an XML file just for the single point. Plus I believe you can now simply embed a Google map with some simple code.</p>
<p>However, if you want full customization; including lines, numbered points, HTML in a point&#8217;s detail, then thydzikGoogleMap is exactly for you.</p>
<p>Comments and suggestions very welcome.</p>
<p><a title="Download thydzikGoogleMap v1.3" href="http://wordpress.org/extend/plugins/thydzik-google-map/" target="_blank">Download thydzikGoogleMap v1.3</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://thydzik.com/thydzikgooglemap-v13/' addthis:title='thydzikGoogleMap v1.3 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/thydzikgooglemap-v13/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 679/707 objects using disk: basic
Content Delivery Network via t01.thydzik.com

Served from: thydzik.com @ 2012-02-10 19:48:03 -->
