<?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: Google Mapping in FileMaker</title>
	<atom:link href="http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/feed/" rel="self" type="application/rss+xml" />
	<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/</link>
	<description>Syndicating the best FileMaker blogs</description>
	<lastBuildDate>Sat, 29 Nov 2008 04:44:04 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mike.lee</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-2909</link>
		<dc:creator>mike.lee</dc:creator>
		<pubDate>Wed, 26 Nov 2008 19:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-2909</guid>
		<description>Hello everyone. I’m moving this over to the main Proof Group blog to continue this topic and discussion. I’ve made a lot of progress on the issues and look forward to sharing.

http://www.proofgroup.com/blog/2008/nov/google_mapping_redux</description>
		<content:encoded><![CDATA[<p>Hello everyone. I’m moving this over to the main Proof Group blog to continue this topic and discussion. I’ve made a lot of progress on the issues and look forward to sharing.</p>
<p><a href="http://www.proofgroup.com/blog/2008/nov/google_mapping_redux" rel="nofollow">http://www.proofgroup.com/blog/2008/nov/google_mapping_redux</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dennisburnham</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-2887</link>
		<dc:creator>dennisburnham</dc:creator>
		<pubDate>Tue, 11 Nov 2008 09:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-2887</guid>
		<description>Mike,

I am confused by this because I don&#039;t know enough about PHPor Java.  I am trying to use the Google API to create a web viewer object that will give me point-to-point directions using addresses that are in my database.  I can forego the map, if necessary, because of space limitations on my layout.  But I need to learn how to formulate the calculation that calls the directions from Google Maps.

Any clues?</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>I am confused by this because I don&#8217;t know enough about PHPor Java.  I am trying to use the Google API to create a web viewer object that will give me point-to-point directions using addresses that are in my database.  I can forego the map, if necessary, because of space limitations on my layout.  But I need to learn how to formulate the calculation that calls the directions from Google Maps.</p>
<p>Any clues?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Lee</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-751</link>
		<dc:creator>Mike Lee</dc:creator>
		<pubDate>Tue, 27 Nov 2007 14:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-751</guid>
		<description>Prior to FM9, the Web Viewer could only display URLs (not HTML directly).  That&#039;s why I originally started looking at tools that could convert a structured URL (i.e. http://example/map.php?addr=ADDRESS) into a suitable page for Google Maps.  I couldn&#039;t create the HTML locally and display it locally without resorting to other tricks (plug-ins to save a file locally, etc.)  And those other tricks would make it brittle and add to the general complexity of making it work (although that&#039;s open for debate).  I settled on PHP because I happened to find some tools to make the Google Mapping easier (the &quot;Easy Google Map&quot; PHP class) and I have the PHP knowledge to make it work.  That said, there are downsides to a server-based approach, notably the URL length limits mentioned above which impedes the total number of addresses that can be mapped at once.

With FM9, you can use the &quot;data: URI scheme&quot; (see http://en.wikipedia.org/wiki/Data:_URI_scheme) to hand-build the HTML and display it directly in a Web Viewer.  This seems on the surface to be a much better choice, because the data don&#039;t have to be sent across the internet to another server just to be displayed.

Here&#039;s a simplified example:
&quot;data:text/html,&lt;html&gt;&lt;body&gt;Hello World!&lt;/body&gt;&lt;/html&gt;&quot;

If you put that into a Web Viewer (&gt;=FM9), it will show &quot;Hello World!&quot;.  Fairly boring, but the HTML can be as complex as required to get the job done.

The last step would be to write a process by which the JavaScript-based page is created directly in FM.  I&#039;ll leave that as an exercise for the reader.  I&#039;d be interested if anyone out there gets a prototype working.

Cheers,
Mike</description>
		<content:encoded><![CDATA[<p>Prior to FM9, the Web Viewer could only display URLs (not HTML directly).  That&#8217;s why I originally started looking at tools that could convert a structured URL (i.e. <a href="http://example/map.php?addr=ADDRESS)" rel="nofollow">http://example/map.php?addr=ADDRESS)</a> into a suitable page for Google Maps.  I couldn&#8217;t create the HTML locally and display it locally without resorting to other tricks (plug-ins to save a file locally, etc.)  And those other tricks would make it brittle and add to the general complexity of making it work (although that&#8217;s open for debate).  I settled on PHP because I happened to find some tools to make the Google Mapping easier (the &#8220;Easy Google Map&#8221; PHP class) and I have the PHP knowledge to make it work.  That said, there are downsides to a server-based approach, notably the URL length limits mentioned above which impedes the total number of addresses that can be mapped at once.</p>
<p>With FM9, you can use the &#8220;data: URI scheme&#8221; (see <a href="http://en.wikipedia.org/wiki/Data:_URI_scheme)" rel="nofollow">http://en.wikipedia.org/wiki/Data:_URI_scheme)</a> to hand-build the HTML and display it directly in a Web Viewer.  This seems on the surface to be a much better choice, because the data don&#8217;t have to be sent across the internet to another server just to be displayed.</p>
<p>Here&#8217;s a simplified example:<br />
&#8220;data:text/html,&lt;html>&lt;body>Hello World!&lt;/body>&lt;/html>&#8221;</p>
<p>If you put that into a Web Viewer (>=FM9), it will show &#8220;Hello World!&#8221;.  Fairly boring, but the HTML can be as complex as required to get the job done.</p>
<p>The last step would be to write a process by which the JavaScript-based page is created directly in FM.  I&#8217;ll leave that as an exercise for the reader.  I&#8217;d be interested if anyone out there gets a prototype working.</p>
<p>Cheers,<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dburnham</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-748</link>
		<dc:creator>dburnham</dc:creator>
		<pubDate>Tue, 27 Nov 2007 06:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-748</guid>
		<description>I would like to know if there is a solution to this same problem within FileMaker itself, without PHP serving anything.  That is, how can I get the web viewer to simply display the full image of the map without the sidebar?</description>
		<content:encoded><![CDATA[<p>I would like to know if there is a solution to this same problem within FileMaker itself, without PHP serving anything.  That is, how can I get the web viewer to simply display the full image of the map without the sidebar?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: igpltcd</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-85</link>
		<dc:creator>igpltcd</dc:creator>
		<pubDate>Sat, 18 Aug 2007 05:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-85</guid>
		<description>Nice post Mike :D

Have you tried FusionMaps Pro for FileMaker? This is a flash mapping component for FM solutions, it renders animated data-driven maps through Web Viewer. The tool comes with a FileMaker Script Library as well.</description>
		<content:encoded><![CDATA[<p>Nice post Mike <img src='http://fmcollective.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Have you tried FusionMaps Pro for FileMaker? This is a flash mapping component for FM solutions, it renders animated data-driven maps through Web Viewer. The tool comes with a FileMaker Script Library as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Lee</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-69</link>
		<dc:creator>Mike Lee</dc:creator>
		<pubDate>Thu, 26 Jul 2007 14:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-69</guid>
		<description>&lt;p&gt;Could be a specific PHP variety or version difference.&lt;/p&gt;
&lt;br/&gt;
&lt;p&gt;Try enclosing the class name in parens:&lt;br /&gt;
require (&#039;EasyGoogleMap.class.php&#039;);&lt;/p&gt;
&lt;br/&gt;
&lt;p&gt;If that doesn&#039;t work, try double quotes instead of single quotes.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Could be a specific PHP variety or version difference.</p>
<p></p>
<p>Try enclosing the class name in parens:<br />
require (&#8217;EasyGoogleMap.class.php&#8217;);</p>
<p></p>
<p>If that doesn&#8217;t work, try double quotes instead of single quotes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Head</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-68</link>
		<dc:creator>David Head</dc:creator>
		<pubDate>Thu, 26 Jul 2007 03:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-68</guid>
		<description>I get an error:

Parse error: syntax error, unexpected T_CLASS in /clientdata/clients/u/l/ulearnit.com.au/www/googlemap/googlemap.php on line 35

Line 35 is:

require ‘EasyGoogleMap.class.php’;

Any ideas what could be wrong?</description>
		<content:encoded><![CDATA[<p>I get an error:</p>
<p>Parse error: syntax error, unexpected T_CLASS in /clientdata/clients/u/l/ulearnit.com.au/www/googlemap/googlemap.php on line 35</p>
<p>Line 35 is:</p>
<p>require ‘EasyGoogleMap.class.php’;</p>
<p>Any ideas what could be wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andreas Andersson</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-63</link>
		<dc:creator>Andreas Andersson</dc:creator>
		<pubDate>Fri, 13 Jul 2007 13:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-63</guid>
		<description>Hi guys. I got it to work but not when the adress contains swedish charachters like å ä ö. I&#039;ve tried with $charset = &quot;iso-8859-1&quot;; in both of the files but nothing works. Please help me.</description>
		<content:encoded><![CDATA[<p>Hi guys. I got it to work but not when the adress contains swedish charachters like å ä ö. I&#8217;ve tried with $charset = &#8220;iso-8859-1&#8243;; in both of the files but nothing works. Please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KoenVanHulle</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-53</link>
		<dc:creator>KoenVanHulle</dc:creator>
		<pubDate>Tue, 12 Jun 2007 18:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-53</guid>
		<description>To make it usefull in all kinds of layout, you could make the width and height dynamic by adding the width and height as an extra parameter:

http://etc.proofgroup.com/fmcollective/googlemap.php?addr=1600+Amphitheatre+Pkwy,+Mountain+View,+CA+94043&amp;width=400&amp;height=300


I did an implementation with Microsoft Virtual Earth. With Virtual Earth you don&#039;t need a public domain.
More info: http://www.microsoft.com/virtualearth/

Koen</description>
		<content:encoded><![CDATA[<p>To make it usefull in all kinds of layout, you could make the width and height dynamic by adding the width and height as an extra parameter:</p>
<p><a href="http://etc.proofgroup.com/fmcollective/googlemap.php?addr=1600+Amphitheatre+Pkwy,+Mountain+View,+CA+94043&amp;width=400&amp;height=300" rel="nofollow">http://etc.proofgroup.com/fmcollective/googlemap.php?addr=1600+Amphitheatre+Pkwy,+Mountain+View,+CA+94043&amp;width=400&amp;height=300</a></p>
<p>I did an implementation with Microsoft Virtual Earth. With Virtual Earth you don&#8217;t need a public domain.<br />
More info: <a href="http://www.microsoft.com/virtualearth/" rel="nofollow">http://www.microsoft.com/virtualearth/</a></p>
<p>Koen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Warwick</title>
		<link>http://fmcollective.com/2007/05/23/google-mapping-in-filemaker/comment-page-1/#comment-49</link>
		<dc:creator>Andy Warwick</dc:creator>
		<pubDate>Tue, 29 May 2007 12:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://fmcollective.com/?p=43#comment-49</guid>
		<description>It&#039;s worth pointing out the terms of use for the Google Maps API found here: 

http://www.google.com/apis/maps/index.html

and here:

http://www.google.com/enterprise/maps/faq.html

Basically, you are okay to use it in an open, free non-commercial product for nothing; if--on the other hand--you are using it in a commercial, intranet or non-public solution, there is a license fee of at least$10,000.

So be very careful if you are planning to use any of the above article&#039;s information in a solution for a client, and make sure you read the Terms and Conditions of use very carefully.</description>
		<content:encoded><![CDATA[<p>It&#8217;s worth pointing out the terms of use for the Google Maps API found here: </p>
<p><a href="http://www.google.com/apis/maps/index.html" rel="nofollow">http://www.google.com/apis/maps/index.html</a></p>
<p>and here:</p>
<p><a href="http://www.google.com/enterprise/maps/faq.html" rel="nofollow">http://www.google.com/enterprise/maps/faq.html</a></p>
<p>Basically, you are okay to use it in an open, free non-commercial product for nothing; if&#8211;on the other hand&#8211;you are using it in a commercial, intranet or non-public solution, there is a license fee of at least$10,000.</p>
<p>So be very careful if you are planning to use any of the above article&#8217;s information in a solution for a client, and make sure you read the Terms and Conditions of use very carefully.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
