<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: How to add a second pin?</title>
		<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1</link>
		<description>THE MOLITOR FORUMS &#187; Topic: How to add a second pin?</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 14:30:11 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/how-to-add-a-second-pin-1" rel="self" type="application/rss+xml" />

		<item>
			<title>tenchu on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-19600</link>
			<pubDate>Wed, 20 Mar 2013 14:23:17 +0000</pubDate>
			<dc:creator>tenchu</dc:creator>
			<guid isPermaLink="false">19600@http://www.themolitor.com/forums/</guid>
			<description><p>Sorry my friend, but it does not work, that code, i follow your instructions, but instead add a new marker, dissapear all the pins in all the maps  </p>
<p>TAKE A LOOK </p>
<p>//ADD MARKERS HERE - FORMAT IS AS FOLLOWS...<br />
//add(jQuery(this), number += 1, "NAME", "URL","ADDRESS1<br />ADDRESS2","LATITUDE","LONGITUDE", 'THUMBNAIL');<br />
add(jQuery(this), number += 1, "San Pedro Sula", "map_post.html","Parque Central<br />San Pedro Sula, Honduras","15.505409","-88.024931", '&#60;img width="95" height="95" src="images/thumbs/sanpedro.jpg" alt="" "images/pin.png" /&#62;');<br />
                  }<br />
                });<br />
              }<br />
            }<br />
          },{<br />
			action: 'setOptions', args:[{<br />
				zoom:zoomLevel,<br />
				scrollwheel:false,<br />
				disableDefaultUI:true,<br />
				disableDoubleClickZoom:true,<br />
				draggable:true,<br />
				mapTypeControl:false,<br />
				panControl:false,<br />
				scaleControl:false,<br />
				streetViewControl:false,<br />
				zoomControl:false,<br />
				//MAP TYPE: 'roadmap', 'satellite', 'hybrid'<br />
				mapTypeId:'roadmap'<br />
			}]<br />
		});<br />
        function add(jQuerythis, i, title, link, excerpt, lati, longi, img, pin){<br />
          jQuerythis.gmap3({<br />
            action : 'addMarker',<br />
            lat:lati,<br />
            lng:longi,<br />
            //PIN MARKER IMAGE<br />
            options: {icon: new google.maps.MarkerImage(pin)},<br />
            events:{<br />
       			mouseover: function(marker){<br />
          			jQuerythis.css({cursor:'pointer'});
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-19583</link>
			<pubDate>Wed, 20 Mar 2013 10:20:13 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">19583@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I've updated the instructions above. Please double-check your implementation. </p>
<p>If you need additional help with this customization, please use this form: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>tenchu on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-19567</link>
			<pubDate>Wed, 20 Mar 2013 07:30:11 +0000</pubDate>
			<dc:creator>tenchu</dc:creator>
			<guid isPermaLink="false">19567@http://www.themolitor.com/forums/</guid>
			<description><p>The last code it doesn,t work, I already try and istead appear another pin, the actual dissapear, </p>
<p>thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-5010</link>
			<pubDate>Fri, 09 Dec 2011 11:42:39 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">5010@http://www.themolitor.com/forums/</guid>
			<description><ol>
<li>Open up "index.html"</li>
<li>Locate the marker items around line 103 that look like this..</li>
<pre><code>add(jQuery(this), number += 1, &#34;NAME&#34;, &#34;URL&#34;,&#34;ADDR&#34;,&#34;LAT&#34;,&#34;LONG&#34;, &#039;THUMB&#039;);</code></pre>
<p>...and change it to read like this (notice the addition at the end)...</p>
<pre><code>add(jQuery(this), number += 1, &#34;NAME&#34;, &#34;URL&#34;,&#34;ADDR&#34;,&#34;LAT&#34;,&#34;LONG&#34;, &#039;THUMB&#039;, &#039;URL TO PIN IMAGE&#039;);</code></pre>
<li>Around line 134, locate the following...<br />
<pre><code>function add(jQuerythis, i, title, link, excerpt, lati, longi, img)</code></pre>
<p>...and change it to this (notice the new "pin" text)...</p>
<pre><code>function add(jQuerythis, i, title, link, excerpt, lati, longi, img, pin)</code></pre>
</li>
<li>Around line 140, locate the following...<br />
<pre><code>options: {icon: new google.maps.MarkerImage(&#039;images/pin.png&#039;)}</code></pre>
<p>...and change it to this...</p>
<pre><code>options: {icon: new google.maps.MarkerImage(pin)}</code></pre>
</li>
</ol></description>
		</item>
		<item>
			<title>lubofsky on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-4997</link>
			<pubDate>Wed, 07 Dec 2011 15:57:01 +0000</pubDate>
			<dc:creator>lubofsky</dc:creator>
			<guid isPermaLink="false">4997@http://www.themolitor.com/forums/</guid>
			<description><p>The ability to add multiple pins would be enormously helpful.
</p></description>
		</item>
		<item>
			<title>proba on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-4084</link>
			<pubDate>Fri, 09 Sep 2011 06:44:30 +0000</pubDate>
			<dc:creator>proba</dc:creator>
			<guid isPermaLink="false">4084@http://www.themolitor.com/forums/</guid>
			<description><p>I am very sad because of weak support.
</p></description>
		</item>
		<item>
			<title>proba on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-3998</link>
			<pubDate>Wed, 31 Aug 2011 03:26:40 +0000</pubDate>
			<dc:creator>proba</dc:creator>
			<guid isPermaLink="false">3998@http://www.themolitor.com/forums/</guid>
			<description><p>Sorry, I dont want to change default pin.png, I want to add one more (second) pin image for markers on page.</p>
<p>Will be updated for this release?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-3986</link>
			<pubDate>Tue, 30 Aug 2011 12:56:25 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">3986@http://www.themolitor.com/forums/</guid>
			<description><p>You can either replace the 'pin.png' image or change the url that you pasted above.
</p></description>
		</item>
		<item>
			<title>proba on "How to add a second pin?"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-a-second-pin-1#post-3977</link>
			<pubDate>Tue, 30 Aug 2011 01:38:30 +0000</pubDate>
			<dc:creator>proba</dc:creator>
			<guid isPermaLink="false">3977@http://www.themolitor.com/forums/</guid>
			<description><p>How to set custom pin marker image for location on page?</p>
<p>//PIN MARKER IMAGE<br />
options: {icon: new google.maps.MarkerImage('images/pin.png')},
</p></description>
		</item>

	</channel>
</rss>
