<?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: Adding Custom Google Maps to Your Website</title>
	<atom:link href="http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/feed/" rel="self" type="application/rss+xml" />
	<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/</link>
	<description>Web design, graphic design, Photoshop, CSS, etc</description>
	<lastBuildDate>Tue, 31 Jan 2012 01:49:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Czarina</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30593</link>
		<dc:creator>Czarina</dc:creator>
		<pubDate>Tue, 31 Jan 2012 01:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30593</guid>
		<description>HERE IS MY CODE:



		function initialize() {
        var myOptions = {
		center: new google.maps.LatLng(-33.873651, 151.20689),
		zoom: 7,
		mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		
        var map = new google.maps.Map(document.getElementById(&quot;map_canvas&quot;),
		myOptions);
			
  var hamlynterracePos = new google.maps.LatLng(-33.251599,151.477342);
  var contentString =
    &#039;Hamlyn Terrace&#039;+
    &#039;Text goes here.&#039;;
 
  var infowindow = new google.maps.InfoWindow({
    content: contentString
});

  var hamlynterraceMarker = new google.maps.Marker({
      position: hamlynterracePos,
      map: map,
      title:&quot;Hamlyn Terrace&quot;
  });
google.maps.event.addListener(hamlynterraceMarker, &#039;click&#039;, function() {
infowindow.open(map,hamlynterraceMarker);
});
  
  var oranparkPos = new google.maps.LatLng(-34.005997,150.74152);
  var contentString =
    &#039;Oran Park&#039;+
    &#039;Text goes here.&#039;;
 
  var infowindow = new google.maps.InfoWindow({
    content: contentString
});
  var oranparkMarker = new google.maps.Marker({
      position: oranparkPos,
      map: map,
      title:&quot;Oran Park&quot;
  });
google.maps.event.addListener(oranparkMarker, &#039;click&#039;, function() {
infowindow.open(map,oranparkMarker);
});
  
  var bunyaPos = new google.maps.LatLng(-33.776847,150.873334);
  var contentString =
    &#039;Oran Park&#039;+
    &#039;Text goes here.&#039;;
 
  var infowindow = new google.maps.InfoWindow({
    content: contentString
});
  var bunyaMarker = new google.maps.Marker({
      position: bunyaPos,
      map: map,
      title:&quot;Bunya&quot;
  });
  
google.maps.event.addListener(bunyaMarker, &#039;click&#039;, function() {
infowindow.open(map,bunyaMarker);
});
  
  
  }</description>
		<content:encoded><![CDATA[<p>HERE IS MY CODE:</p>
<p>		function initialize() {<br />
        var myOptions = {<br />
		center: new google.maps.LatLng(-33.873651, 151.20689),<br />
		zoom: 7,<br />
		mapTypeId: google.maps.MapTypeId.ROADMAP<br />
		};</p>
<p>        var map = new google.maps.Map(document.getElementById(&#8220;map_canvas&#8221;),<br />
		myOptions);</p>
<p>  var hamlynterracePos = new google.maps.LatLng(-33.251599,151.477342);<br />
  var contentString =<br />
    &#8216;Hamlyn Terrace&#8217;+<br />
    &#8216;Text goes here.&#8217;;</p>
<p>  var infowindow = new google.maps.InfoWindow({<br />
    content: contentString<br />
});</p>
<p>  var hamlynterraceMarker = new google.maps.Marker({<br />
      position: hamlynterracePos,<br />
      map: map,<br />
      title:&#8221;Hamlyn Terrace&#8221;<br />
  });<br />
google.maps.event.addListener(hamlynterraceMarker, &#8216;click&#8217;, function() {<br />
infowindow.open(map,hamlynterraceMarker);<br />
});</p>
<p>  var oranparkPos = new google.maps.LatLng(-34.005997,150.74152);<br />
  var contentString =<br />
    &#8216;Oran Park&#8217;+<br />
    &#8216;Text goes here.&#8217;;</p>
<p>  var infowindow = new google.maps.InfoWindow({<br />
    content: contentString<br />
});<br />
  var oranparkMarker = new google.maps.Marker({<br />
      position: oranparkPos,<br />
      map: map,<br />
      title:&#8221;Oran Park&#8221;<br />
  });<br />
google.maps.event.addListener(oranparkMarker, &#8216;click&#8217;, function() {<br />
infowindow.open(map,oranparkMarker);<br />
});</p>
<p>  var bunyaPos = new google.maps.LatLng(-33.776847,150.873334);<br />
  var contentString =<br />
    &#8216;Oran Park&#8217;+<br />
    &#8216;Text goes here.&#8217;;</p>
<p>  var infowindow = new google.maps.InfoWindow({<br />
    content: contentString<br />
});<br />
  var bunyaMarker = new google.maps.Marker({<br />
      position: bunyaPos,<br />
      map: map,<br />
      title:&#8221;Bunya&#8221;<br />
  });</p>
<p>google.maps.event.addListener(bunyaMarker, &#8216;click&#8217;, function() {<br />
infowindow.open(map,bunyaMarker);<br />
});</p>
<p>  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Czarina</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30592</link>
		<dc:creator>Czarina</dc:creator>
		<pubDate>Tue, 31 Jan 2012 00:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30592</guid>
		<description>Great! I would also like to know how to make specific infowindow for multiple markers?!?!?!??!</description>
		<content:encoded><![CDATA[<p>Great! I would also like to know how to make specific infowindow for multiple markers?!?!?!??!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marije</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30546</link>
		<dc:creator>Marije</dc:creator>
		<pubDate>Mon, 30 Jan 2012 10:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30546</guid>
		<description>Thank you! This was extremely helpful :)</description>
		<content:encoded><![CDATA[<p>Thank you! This was extremely helpful <img src='http://stiern.com/site/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30417</link>
		<dc:creator>Brandon</dc:creator>
		<pubDate>Sat, 28 Jan 2012 10:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30417</guid>
		<description>great tutorial! simple yet informative! thank you so much for even uploading the sample for us to try it out!</description>
		<content:encoded><![CDATA[<p>great tutorial! simple yet informative! thank you so much for even uploading the sample for us to try it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonatan</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30307</link>
		<dc:creator>Jonatan</dc:creator>
		<pubDate>Thu, 26 Jan 2012 20:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30307</guid>
		<description>Thanks you are awesome.. I love you!! hehehehehe ;)</description>
		<content:encoded><![CDATA[<p>Thanks you are awesome.. I love you!! hehehehehe <img src='http://stiern.com/site/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thom Morais</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30236</link>
		<dc:creator>Thom Morais</dc:creator>
		<pubDate>Wed, 25 Jan 2012 15:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30236</guid>
		<description>I&#039;m here to learn</description>
		<content:encoded><![CDATA[<p>I&#8217;m here to learn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eder</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-30192</link>
		<dc:creator>Eder</dc:creator>
		<pubDate>Tue, 24 Jan 2012 23:11:14 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-30192</guid>
		<description>I love this tutorial. Thank you so much, I&#039;m learning javascript and this help me get some stuff.

Great site!</description>
		<content:encoded><![CDATA[<p>I love this tutorial. Thank you so much, I&#8217;m learning javascript and this help me get some stuff.</p>
<p>Great site!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nilima</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-29070</link>
		<dc:creator>nilima</dc:creator>
		<pubDate>Thu, 12 Jan 2012 07:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-29070</guid>
		<description>nice one yaar... it really helped me</description>
		<content:encoded><![CDATA[<p>nice one yaar&#8230; it really helped me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abdul</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-28999</link>
		<dc:creator>abdul</dc:creator>
		<pubDate>Wed, 11 Jan 2012 10:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-28999</guid>
		<description>thanks buddy ..... very much</description>
		<content:encoded><![CDATA[<p>thanks buddy &#8230;.. very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Google Map &#8211; Javascript Resources</title>
		<link>http://stiern.com/tutorials/adding-custom-google-maps-to-your-website/comment-page-6/#comment-28885</link>
		<dc:creator>Using Google Map &#8211; Javascript Resources</dc:creator>
		<pubDate>Tue, 10 Jan 2012 08:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://stiern.com/?p=626#comment-28885</guid>
		<description>[...] Maps API3 &#8211; InfoWindowsGoogle Maps API3 &#8211; Mobile devicesOther useful tutorialsAdding Custom Google Map to your websiteSimple Multiple Marker ExampleAdding Markers to a Map Using the Google Maps API 3 and jQueryUseful [...]</description>
		<content:encoded><![CDATA[<p>[...] Maps API3 &#8211; InfoWindowsGoogle Maps API3 &#8211; Mobile devicesOther useful tutorialsAdding Custom Google Map to your websiteSimple Multiple Marker ExampleAdding Markers to a Map Using the Google Maps API 3 and jQueryUseful [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 5/19 queries in 0.091 seconds using disk: basic
Object Caching 367/374 objects using disk: basic

Served from: stiern.com @ 2012-02-04 04:40:51 -->
