<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->

<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->




<div class=Section1>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Thanks for your detailed response! Maybe this should be in the
Openlayers section but it started here so&#8230; It is very helpful confirming
that I am not completely clueless. We all want speedy development cycles and at
first glance Openlayers seemed to promise interoperability with MapServer,
MapGuide, ArcGIS and basic WMS&#8230; Google, Bing and so on. It&#8217;s great
for displaying maps, redlining and overlays hands down, don&#8217;t get me
wrong.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Openlayers still is a great hope that we don&#8217;t have to
recode a client side interface for every map application we build or was that
never the end goal? I guess what I am saying is will we ever be able to use
Openlayers to bring layers in on those systems and make selections to name a
few standard features without huge client side hacks?<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Do you see more Openlayers API development for MapGuide and
ArcGIS specifically in the future?<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
color:darkblue'><o:p>&nbsp;</o:p></span></b></p>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
color:darkblue'><o:p>&nbsp;</o:p></span></b></p>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
color:darkblue'>Chris Gountanis | <a href="http://www.mpowerinnovations.com" target="_top" rel="nofollow" link="external">www.mpowerinnovations.com</a><br>
________________________________________<br>
</span></b><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
color:gray'>mPower Innovations</span></b><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif";color:gray'><br>
</span><span style='font-size:9.0pt;font-family:"Tahoma","sans-serif";
color:gray'>Software Engineer<br>
1051 N Lynndale Drive, Suite 2A, Appleton, WI 54914<br>
T: 920.830-4053 ext. 205 | F: 920.955-4057</span><span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:#1F497D'><o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Paul Spencer [via
OSGeo.org] [mailto:<a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&node=4759067&i=0" target="_top" rel="nofollow">[hidden email]</a>] <br>
<b>Sent:</b> Thursday, March 18, 2010 1:05 PM<br>
<b>To:</b> Chris Gountanis<br>
<b>Subject:</b> Re: MapGuide with Openlayers (Searching for Detailed yet Simple
Development Examples)<o:p></o:p></span></p>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal>Chris, <br>
<br>
the simplest MapGuide + OpenLayers example is the one that comes with
OpenLayers in the examples (<a
href="http://dev.openlayers.org/releases/OpenLayers-2.8/examples/mapguide.html"
target="_top" rel="nofollow" link="external">http://dev.openlayers.org/releases/OpenLayers-2.8/examples/mapguide.html</a>).
<br>
<br>
The problems start when you want to do anything more complicated than showing a
MapDefinition as a layer in this way. &nbsp; <br>
<br>
OpenLayers is most efficient when you use minimal client-side layers, it really
bogs down a browser to display a lot of separate layers. &nbsp;The controls
that come with OpenLayers assume that each image is a single entity, so if you
want to display and control layers separately, you need to communicate with the
server to get extra information about the layers that make up a map and to
control the display of individual layers in a session (turn on and off). <br>
<br>
OpenLayers selections are actually vector layers, to work with them you need to
export individual vector features from layers in your MapDefinition and load
them up on the client side. <br>
<br>
A lot of the complexity of Fusion comes from the fundamental differences
between OpenLayers and how MapGuide and MapServer users 'expect' things to work
in a more GIS type application. <br>
<br>
Sorry, this probably hasn't been very helpful in solving your particular
problem. &nbsp;It just really isn't that easy to do what you are asking,
otherwise I'm sure that the examples would already be out there. <br>
<br>
Cheers <br>
<br>
Paul <br>
<br>
On 2010-03-18, at 12:21 PM, Chris Gountanis wrote: <o:p></o:p></p>

<div>

<p class=MsoNormal><br>
&gt; <br>
&gt; I know the common answer to this is take a look at Fusions 65k lines of
OOP <br>
&gt; inheritance rich code. If you are not used to JavaScript programming with <br>
&gt; higher level OOP concepts on a daily basis it can be a pain to reverse <br>
&gt; engineer. I will be checking out Fiddler later today as suggested by <br>
&gt; zspitzer in another post. I assume this is why there are ZERO simple <br>
&gt; break-down development examples on how to use Openlayers with MapGuide or <br>
&gt; ArcGIS. <br>
&gt; <br>
&gt; <br>
&gt; I think what people including myself are looking in simple in-line <br>
&gt; JavaScript: <br>
&gt; - Bring in a MapGuide Map showing separate layers as it was designed in <br>
&gt; Studio. Bringing in a map from MapGuide and having it show up in
OpenLayers <br>
&gt; as a single overlay is not very useful for most MapGuide developers. <br>
&gt; - Allow built-in Openlayers selection methods on the layers that allow <br>
&gt; selections nothing fancy just show results in message box or something
along <br>
&gt; those lines. <br>
&gt; - Show tool tips using MapGuide built-in tool tip settings. <br>
&gt; - Show some legend examples like Fusion but more of a simple JavaScript
for <br>
&gt; beginners... nothing pretty just functional examples. <br>
&gt; <br>
&gt; <br>
&gt; To the point question: Is OpenLayers and MapGuide a priority or will it <br>
&gt; always be more for WMS overlay in general for max built-in functionality?
I <br>
&gt; need to evaluate for our development projects and right now I am
personally <br>
&gt; at a loss for MapGuide and ArcGIS with OL as the base client. I really
want <br>
&gt; to get on board here and admit my advanced JavaScript is lacking but is <br>
&gt; there anything to help us get started with simple proof of concepts? <br>
&gt; <br>
&gt; <br>
&gt; -- <br>
&gt; View this message in context: <a
href="http://n2.nabble.com/MapGuide-with-Openlayers-Searching-for-Detailed-yet-Simple-Development-Examples-tp4757480p4757480.html"
target="_top" rel="nofollow" link="external">http://n2.nabble.com/MapGuide-with-Openlayers-Searching-for-Detailed-yet-Simple-Development-Examples-tp4757480p4757480.html</a><br>
&gt; Sent from the MapGuide Users mailing list archive at Nabble.com. <br>
&gt; _______________________________________________ <br>
&gt; mapguide-users mailing list <br>
&gt; <a
href="http://n2.nabble.com/user/SendEmail.jtp?type=node&amp;node=4758255&amp;i=0"
target="_top" rel="nofollow" link="external">[hidden email]</a> <br>
&gt; <a href="http://lists.osgeo.org/mailman/listinfo/mapguide-users"
target="_top" rel="nofollow" link="external">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><o:p></o:p></p>

</div>

<p class=MsoNormal style='margin-bottom:12.0pt'><br>
_______________________________________________ <br>
mapguide-users mailing list <br>
<a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&amp;node=4758255&amp;i=1"
target="_top" rel="nofollow" link="external">[hidden email]</a> <br>
<a href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_top" rel="nofollow" link="external">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
<br>
<o:p></o:p></p>

<div class=MsoNormal align=center style='text-align:center'>

<hr size=1 width="100%" noshade style='color:#CCCCCC' align=center>

</div>

<div>

<p class=MsoNormal><span style='font-size:6.5pt;font-family:"Tahoma","sans-serif";
color:#666666'>View message @ <a
href="http://n2.nabble.com/MapGuide-with-Openlayers-Searching-for-Detailed-yet-Simple-Development-Examples-tp4757480p4758255.html" target="_top" rel="nofollow" link="external">http://n2.nabble.com/MapGuide-with-Openlayers-Searching-for-Detailed-yet-Simple-Development-Examples-tp4757480p4758255.html</a>
<br>
To start a new topic under MapGuide Users, email <a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&node=4759067&i=1" target="_top" rel="nofollow">[hidden email]</a>
<br>
To unsubscribe from MapGuide Users, <a target="_top" rel="nofollow" link="external">click
here</a>. <o:p></o:p></span></p>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>





<br><hr align="left" width="300">
View this message in context: <a href="http://n2.nabble.com/MapGuide-with-Openlayers-Searching-for-Detailed-yet-Simple-Development-Examples-tp4757480p4759067.html">RE: MapGuide with Openlayers (Searching for Detailed yet Simple Development Examples)</a><br>
Sent from the <a href="http://n2.nabble.com/MapGuide-Users-f1803227.html">MapGuide Users mailing list archive</a> at Nabble.com.<br>