<?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: Integrating Google Maps in Oracle Apex</title>
	<atom:link href="http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/</link>
	<description>Oracle, Java and SOA expertise - Lean thinking, Agile working</description>
	<lastBuildDate>Mon, 06 Feb 2012 10:46:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Michel van Zoest</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-11292</link>
		<dc:creator>Michel van Zoest</dc:creator>
		<pubDate>Fri, 15 Apr 2011 09:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-11292</guid>
		<description>Hi Krzystof,

It took me a while, but I found the information you are looking for thanks to a colleague. When you want to return the GPS location of a marker from Google Maps to a page item in APEX, you can use the GEvent.addListener in the Google API. Start by making the marker draggable and use the dragstart and dragend functions to allow the user to place the marker.

markerOptions = { icon:letteredIcon, draggable:true };

GEvent.addListener(marker, &quot;dragstart&quot;, function() {
  map.closeInfoWindow();
 });
GEvent.addListener(marker, &quot;dragend&quot;, function() {
  document.getElementById(&quot;P1_ITEM&quot;).value = marker.getPoint().lat();
});

By using document.getElementById you can put the data into your page item.

Hopefully this information is helpful for you.

Regards,
Michel</description>
		<content:encoded><![CDATA[<p>Hi Krzystof,</p>
<p>It took me a while, but I found the information you are looking for thanks to a colleague. When you want to return the GPS location of a marker from Google Maps to a page item in APEX, you can use the GEvent.addListener in the Google API. Start by making the marker draggable and use the dragstart and dragend functions to allow the user to place the marker.</p>
<p>markerOptions = { icon:letteredIcon, draggable:true };</p>
<p>GEvent.addListener(marker, &#8220;dragstart&#8221;, function() {<br />
  map.closeInfoWindow();<br />
 });<br />
GEvent.addListener(marker, &#8220;dragend&#8221;, function() {<br />
  document.getElementById(&#8220;P1_ITEM&#8221;).value = marker.getPoint().lat();<br />
});</p>
<p>By using document.getElementById you can put the data into your page item.</p>
<p>Hopefully this information is helpful for you.</p>
<p>Regards,<br />
Michel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel van Zoest</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-9485</link>
		<dc:creator>Michel van Zoest</dc:creator>
		<pubDate>Wed, 23 Feb 2011 21:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-9485</guid>
		<description>Hello Krzysztof,

What you are looking for, requires some more knowledge of the Google Maps API. I&#039;ll see if I can find some more information for you. Will get back to you on that.

Regards,
Michel</description>
		<content:encoded><![CDATA[<p>Hello Krzysztof,</p>
<p>What you are looking for, requires some more knowledge of the Google Maps API. I&#8217;ll see if I can find some more information for you. Will get back to you on that.</p>
<p>Regards,<br />
Michel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krzysztof</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-9367</link>
		<dc:creator>Krzysztof</dc:creator>
		<pubDate>Mon, 21 Feb 2011 00:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-9367</guid>
		<description>Hi Marcel,

I was searching through the web someone who can help me with Google Maps API and Oracle APEX. I&#039;ve got already page that is working more less like you&#039;ve described. But what I want to do is to show place on the map (place marker) and this information ( lat, lng) I want to send to Oracle DB. So in this situation it is sending variable value from javascript to PL/SQL. Do you have some idea how to do that??

Thanks,

Krzysztof</description>
		<content:encoded><![CDATA[<p>Hi Marcel,</p>
<p>I was searching through the web someone who can help me with Google Maps API and Oracle APEX. I&#8217;ve got already page that is working more less like you&#8217;ve described. But what I want to do is to show place on the map (place marker) and this information ( lat, lng) I want to send to Oracle DB. So in this situation it is sending variable value from javascript to PL/SQL. Do you have some idea how to do that??</p>
<p>Thanks,</p>
<p>Krzysztof</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: san</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-7461</link>
		<dc:creator>san</dc:creator>
		<pubDate>Thu, 30 Dec 2010 16:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-7461</guid>
		<description>Hello Marcel,
In the &quot;Map with markers read from a table&quot; example, you have also displaying a table next to the map. How is it possible to associate location A to a corresponding address?
Also, in the map is it possible to show the address when we take the cursor on top of the marker. Example in your example, if we take the cursor to marker A then it should show Herengracht 205.
Please provide your suggestion. Thanks</description>
		<content:encoded><![CDATA[<p>Hello Marcel,<br />
In the &#8220;Map with markers read from a table&#8221; example, you have also displaying a table next to the map. How is it possible to associate location A to a corresponding address?<br />
Also, in the map is it possible to show the address when we take the cursor on top of the marker. Example in your example, if we take the cursor to marker A then it should show Herengracht 205.<br />
Please provide your suggestion. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Dorst</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-5867</link>
		<dc:creator>Frank Dorst</dc:creator>
		<pubDate>Tue, 26 Oct 2010 07:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-5867</guid>
		<description>Hi Baloch,
Can you give us some more info on what it is that&#039;s not working? What have you tried and what went wrong?
Thanks,
Frank</description>
		<content:encoded><![CDATA[<p>Hi Baloch,<br />
Can you give us some more info on what it is that&#8217;s not working? What have you tried and what went wrong?<br />
Thanks,<br />
Frank</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baloch</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-5866</link>
		<dc:creator>Baloch</dc:creator>
		<pubDate>Tue, 26 Oct 2010 07:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-5866</guid>
		<description>sorry Map with search is not working properly</description>
		<content:encoded><![CDATA[<p>sorry Map with search is not working properly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baloch</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-5865</link>
		<dc:creator>Baloch</dc:creator>
		<pubDate>Tue, 26 Oct 2010 07:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-5865</guid>
		<description>Sorry! Its not working</description>
		<content:encoded><![CDATA[<p>Sorry! Its not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel van der Plas</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-1591</link>
		<dc:creator>Marcel van der Plas</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-1591</guid>
		<description>Hoi Henk, Sorry, bij het laatste stuk, create a pl/sql block, stond step 1. Dat moest step 4 zijn. Verder heb ik nog wat kleine dingen in de tekst aangepast zodat het wat meer duidelijk wordt.</description>
		<content:encoded><![CDATA[<p>Hoi Henk, Sorry, bij het laatste stuk, create a pl/sql block, stond step 1. Dat moest step 4 zijn. Verder heb ik nog wat kleine dingen in de tekst aangepast zodat het wat meer duidelijk wordt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel van der Plas</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-1589</link>
		<dc:creator>Marcel van der Plas</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:07:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-1589</guid>
		<description>Sorry, there was some error at the end of the text. The last step, create a pl/sql block, should be step 4. I modified the text so hopefully everything becomes more clear now.</description>
		<content:encoded><![CDATA[<p>Sorry, there was some error at the end of the text. The last step, create a pl/sql block, should be step 4. I modified the text so hopefully everything becomes more clear now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henk Kolthof</title>
		<link>http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/comment-page-1/#comment-1567</link>
		<dc:creator>Henk Kolthof</dc:creator>
		<pubDate>Tue, 16 Mar 2010 15:26:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.whitehorses.nl/?p=103#comment-1567</guid>
		<description>Hallo Marcel,
Het laatste voorbeeld krijg ik niet werkend. Toch ben ik wel geinteresseerd hoe je de gegevens uit de tabel met de markers op de kaart krijgt. Ik zou dan de te volgen stappen om een nieuwe Apexpagina te maken ook wel willen zien.
Groet,
Henk</description>
		<content:encoded><![CDATA[<p>Hallo Marcel,<br />
Het laatste voorbeeld krijg ik niet werkend. Toch ben ik wel geinteresseerd hoe je de gegevens uit de tabel met de markers op de kaart krijgt. Ik zou dan de te volgen stappen om een nieuwe Apexpagina te maken ook wel willen zien.<br />
Groet,<br />
Henk</p>
]]></content:encoded>
	</item>
</channel>
</rss>

