<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page Section1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[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]-->
</head>

<body lang=HR link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal>Try this:<o:p></o:p></p>

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

<p class=MsoNormal>&nbsp;&lt;script language=&quot;javascript&quot;&gt;<br>
function getsession()<br>
{<br>
&nbsp;var sessionId=parent.parent.mapframe.GetSessionId();<br>
}<br>
function getmapname()<br>
{<o:p></o:p></p>

<p class=MsoNormal>&nbsp;var mapname=parent.parent.mapframe.GetMapName();<br>
}<br>
&lt;/script&gt;<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>

<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 0cm 0cm 0cm'>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
"Tahoma","sans-serif"'>From:</span></b><span lang=EN-US style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'> mapguide-users-bounces@lists.osgeo.org
[mailto:mapguide-users-bounces@lists.osgeo.org] <b>On Behalf Of </b>susan
Daniel<br>
<b>Sent:</b> Friday, April 24, 2009 11:25 AM<br>
<b>To:</b> MapGuide Users Mail List<br>
<b>Subject:</b> Re: [mapguide-users] select the location on map<o:p></o:p></span></p>

</div>

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

<p class=MsoNormal style='margin-bottom:12.0pt'>HI..<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I removed that brace but still the
error is there<br>
<br>
<br>
regards<br>
susan<o:p></o:p></p>

<div>

<p class=MsoNormal>On Fri, Apr 24, 2009 at 2:35 PM, Jackie Ng &lt;<a
href="mailto:jumpinjackie@gmail.com">jumpinjackie@gmail.com</a>&gt; wrote:<o:p></o:p></p>

<p class=MsoNormal><br>
I see an extra brace (the very first one) in the javascript block that could<br>
be messing everything up.<br>
<br>
- Jackie<o:p></o:p></p>

<div>

<div>

<p class=MsoNormal><br>
<br>
SusanDaniel wrote:<br>
&gt;<br>
&gt; hi all<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; In order to display a form in the task pane
i've the following<br>
&gt; code<br>
&gt; in &quot;....../mapviewerphp/window.php&quot;<br>
&gt;<br>
&gt; &lt;body&gt;<br>
&gt; &lt;script language=&quot;javascript&quot;&gt;<br>
&gt; {<br>
&gt; function getsession()<br>
&gt; {<br>
&gt; sessionId=parent.parent.mapframe.GetSessionId();<br>
&gt; }<br>
&gt; function getmapname()<br>
&gt; {<br>
&gt; mapname=parent.parent.mapframe.GetMapName();<br>
&gt; }<br>
&gt; &lt;/script&gt;<br>
&gt;<br>
&gt;<br>
&gt; &lt;form action=&quot;selectlocation.php&quot; method=&quot;get&quot;&gt;<br>
&gt; Enter PanId &lt;input type=&quot;text&quot;
name=&quot;PanId&quot;/&gt;&lt;br&gt;&lt;br&gt;<br>
&gt;<br>
&gt; &lt;input type=&quot;hidden&quot;name=&quot;SESSION&quot;
value=&quot;javascript:getsession()&quot;/ &gt;<br>
&gt; &lt;input type=&quot;hidden&quot;name=&quot;MAPNAME&quot;
value=&quot;javascript:getmapname()&quot;/ &nbsp;&gt;<br>
&gt; &lt;input type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;<br>
&gt; &lt;/form&gt;<br>
&gt;<br>
&gt; *and in the selectlocation .php i am having<br>
&gt; *<br>
&gt; &nbsp;&lt;/head&gt;<br>
&gt; &nbsp; &lt;?php $ID= $_GET['PanId'];<br>
&gt; &nbsp; &nbsp; ?&gt;.&lt;br /&gt;<br>
&gt;<br>
&gt; &nbsp; &lt;body class=&quot;AppFrame&quot;
onLoad=&quot;OnPageLoad()&quot;&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; &lt;h1 class=&quot;AppHeading&quot;&gt;Select
features&lt;/h1&gt;<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; &lt;?php<br>
&gt; &nbsp; &nbsp; include '../common/common.php';<br>
&gt;<br>
&gt; &nbsp; &nbsp; $args = ($_SERVER['REQUEST_METHOD'] == &quot;POST&quot;)?
$_POST: $_GET;<br>
&gt; &nbsp; &nbsp; $sessionId = $args['SESSION'];<br>
&gt; &nbsp; &nbsp; $mapName = $args['MAPNAME'];<br>
&gt;<br>
&gt; &nbsp; &nbsp; try<br>
&gt; &nbsp; &nbsp; {<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; // Initialize the Web Extensions and connect to the
Server using<br>
&gt; &nbsp; &nbsp; &nbsp; // the Web Extensions session identifier stored in
PHP session<br>
&gt; state.<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; MgInitializeWebTier ($webconfigFilePath);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $userInfo = new MgUserInformation($sessionId);<br>
&gt; &nbsp; &nbsp; &nbsp; $siteConnection = new MgSiteConnection();<br>
&gt; &nbsp; &nbsp; &nbsp; $siteConnection-&gt;Open($userInfo);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $map = new MgMap($siteConnection);<br>
&gt; &nbsp; &nbsp; &nbsp; $map-&gt;Open($mapName);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; // Get the geometry for the boundaries of District 1<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $districtQuery = new MgFeatureQueryOptions();<br>
&gt; &nbsp; &nbsp; &nbsp;
$districtQuery-&gt;SetFilter(&quot;pan_id==$ID&quot;);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $layer = $map-&gt;GetLayers()-&gt;GetItem('Panchayat');<br>
&gt; &nbsp; &nbsp; &nbsp; $featureReader =
$layer-&gt;SelectFeatures($districtQuery);<br>
&gt; &nbsp; &nbsp; &nbsp; $featureReader-&gt;ReadNext();<br>
&gt; &nbsp; &nbsp; &nbsp; $districtGeometryData = $featureReader-&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; GetGeometry('Data');<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; // Convert the AGF binary data to MgGeometry.<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $agfReaderWriter = new MgAgfReaderWriter();<br>
&gt; &nbsp; &nbsp; &nbsp; $districtGeometry =
$agfReaderWriter-&gt;Read($districtGeometryData);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; // Create a filter to select the desired features.
Combine<br>
&gt; &nbsp; &nbsp; &nbsp; // a basic filter and a spatial filter.<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $queryOptions = new MgFeatureQueryOptions();<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $queryOptions-&gt;SetSpatialFilter('SHPGEOM',
$districtGeometry,<br>
&gt; MgFeatureSpatialOperations::Inside);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; // Get the features from the feature source,<br>
&gt; &nbsp; &nbsp; &nbsp; // turn it into a selection, then save the selection
as XML.<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $layer = $map-&gt;GetLayers()-&gt;GetItem(0);<br>
&gt; &nbsp; &nbsp; &nbsp; $featureReader =
$layer-&gt;SelectFeatures($queryOptions);<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; $layer = $map-&gt;GetLayers()-&gt;GetItem(0);<br>
&gt; &nbsp; &nbsp; &nbsp; $selection = new MgSelection($map);<br>
&gt; &nbsp; &nbsp; &nbsp; $selection-&gt;AddFeatures($layer, $featureReader,
0);<br>
&gt; &nbsp; &nbsp; &nbsp; $selectionXml = $selection-&gt;ToXml();<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; }<br>
&gt; &nbsp; &nbsp; catch (MgException $e)<br>
&gt; &nbsp; &nbsp; {<br>
&gt; &nbsp; &nbsp; &nbsp; echo $e-&gt;GetMessage();<br>
&gt; &nbsp; &nbsp; &nbsp; echo $e-&gt;GetDetails();<br>
&gt; &nbsp; &nbsp; }<br>
&gt; &nbsp; &nbsp; ?&gt;<br>
&gt;<br>
&gt; &nbsp; &lt;/body&gt;<br>
&gt;<br>
&gt; &nbsp; &lt;script language=&quot;javascript&quot;&gt;<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; function OnPageLoad()<br>
&gt; &nbsp; &nbsp; {<br>
&gt; &nbsp; &nbsp; &nbsp; selectionXml = '&lt;?php echo $selectionXml; ?&gt;';<br>
&gt; &nbsp; &nbsp; &nbsp; parent.parent.SetSelectionXML(selectionXml);<br>
&gt; &nbsp; &nbsp; }<br>
&gt;<br>
&gt; &nbsp; &lt;/script&gt;<br>
&gt;<br>
&gt; &lt;/body&gt;<br>
&gt; &lt;/html&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; *This code..But when i enter the panId in the form this error is occuring<br>
&gt; *<br>
&gt;<br>
&gt; &nbsp; Invalid argument(s): [1] = &quot;javascript:getsession()&quot; The
session ID is<br>
&gt; invalid because the session separator character was not found.Invalid<br>
&gt; argument(s): [1] = &quot;javascript:getsession()&quot; The session ID is
invalid<br>
&gt; because the session separator character was not found. Exception occurred<br>
&gt; in<br>
&gt; method MgUserInformation.SetMgSessionId at line 183 in file<br>
&gt;
d:\buildforgeprojects\mapguide_open_source_v2.0\build_27.16\mgdev\common\mapguidecommon\System/UserInformation.cpp<br>
&gt;<br>
&gt;<br>
&gt; Any mistake in my coding?????<br>
&gt;<br>
&gt; Help me plss<br>
&gt;<br>
&gt; regards<br>
&gt; susan<br>
&gt;<br>
&gt; On Wed, Apr 22, 2009 at 9:01 PM, Dave Wilson<br>
&gt; &lt;<a href="mailto:dave.wilson@autodesk.com">dave.wilson@autodesk.com</a>&gt;wrote:<br>
&gt;<br>
&gt;&gt; &nbsp;Did you check out the samples in the downloads area of Osgeo?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://mapguide.osgeo.org/download/releases/2.0.x-samples"
target="_blank">http://mapguide.osgeo.org/download/releases/2.0.x-samples</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Dave<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *Ivan Milicevic<br>
&gt;&gt; *Sent:* Wednesday, April 22, 2009 1:52 AM<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* RE: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; You can get it from some of them. Please, read descritption.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Wednesday, April 22, 2009 9:46 AM<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Thank u....<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Can i get the
source code of any of these sample<br>
&gt;&gt; applications? If so from where?<br>
&gt;&gt;<br>
&gt;&gt; regards<br>
&gt;&gt; susan<br>
&gt;&gt;<br>
&gt;&gt; On Wed, Apr 22, 2009 at 1:00 PM, Ivan Milicevic &lt;<br>
&gt;&gt; <a href="mailto:Ivan.Milicevic@supranet.hr">Ivan.Milicevic@supranet.hr</a>&gt;
wrote:<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://mapguide.osgeo.org/livegallery.html" target="_blank">http://mapguide.osgeo.org/livegallery.html</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Wednesday, April 22, 2009 8:06 AM<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; hi deve<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I couldn't find that sample
application.Any link?<br>
&gt;&gt; regards<br>
&gt;&gt; susan<br>
&gt;&gt;<br>
&gt;&gt; On Tue, Apr 21, 2009 at 8:01 PM, Dave Wilson &lt;<a
href="mailto:dave.wilson@autodesk.com">dave.wilson@autodesk.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; The sample application that does the Find Address does a selection on
the<br>
&gt;&gt; map when you click on one of the search results. I thought this was<br>
&gt;&gt; discussed in the Sample Application.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Dave<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Monday, April 20, 2009 12:18 AM<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; hi alll...........<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I read
the dev guide but didn't get any idea regarding<br>
&gt;&gt; this.Hav anyone tried this before pls give me any hint how to start
this<br>
&gt;&gt; ...<br>
&gt;&gt;<br>
&gt;&gt; thanks &amp;regards<br>
&gt;&gt; susan<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 17, 2009 at 8:18 PM, Dave Wilson &lt;<a
href="mailto:dave.wilson@autodesk.com">dave.wilson@autodesk.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Have you read through the developer&#8217;s guide? It has sample code for<br>
&gt;&gt; selection and explains many concepts. It sounds like you need to make<br>
&gt;&gt; either<br>
&gt;&gt; an invoke script or invoke url call from a command in your Basic or<br>
&gt;&gt; Flexible<br>
&gt;&gt; Web Layout. You don&#8217;t actually have to replace the gettingstarted.php.
In<br>
&gt;&gt; the invoke script or invoke url command allows you to specify the
target<br>
&gt;&gt; frame for the output of the script.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Regards,<br>
&gt;&gt;<br>
&gt;&gt; Dave<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Friday, April 17, 2009 3:57 AM<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; yeah...i know that..<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 17, 2009 at 3:15 PM, Ivan Milicevic &lt;<br>
&gt;&gt; <a href="mailto:Ivan.Milicevic@supranet.hr">Ivan.Milicevic@supranet.hr</a>&gt;
wrote:<br>
&gt;&gt;<br>
&gt;&gt; Did you know how to create file that display's database table? If you<br>
&gt;&gt; don't<br>
&gt;&gt; know that you must find help somewhere else because I'm not a PHP guy.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Friday, April 17, 2009 11:42 AM<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi..<br>
&gt;&gt; &nbsp; &nbsp; No i dont have the file that displays database
table...Actually iam<br>
&gt;&gt; doing this prjct in php.but i know javascript'<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 17, 2009 at 3:02 PM, Ivan Milicevic &lt;<br>
&gt;&gt; <a href="mailto:Ivan.Milicevic@supranet.hr">Ivan.Milicevic@supranet.hr</a>&gt;
wrote:<br>
&gt;&gt;<br>
&gt;&gt; Ok, so you have file that display's data from your database table? Or
you<br>
&gt;&gt; don't have it at all? How familiar are you with javascript?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Friday, April 17, 2009 11:13 AM<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; hi...<br>
&gt;&gt; &nbsp; &nbsp;My problem is that..<br>
&gt;&gt; &nbsp; &nbsp;I have a database table..Having colums &nbsp;place ,id
etc .If i<br>
&gt;&gt; selected(clicking) a data in the table the corresponding
place(polygon)<br>
&gt;&gt; should be displayed(selected) on the map...My map is a polygon map
.each<br>
&gt;&gt; polygon having unique id.and the same id is present in the db table<br>
&gt;&gt; also....Now u got it?any idea please help...<br>
&gt;&gt;<br>
&gt;&gt; regards<br>
&gt;&gt; susan<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 17, 2009 at 2:24 PM, Ivan Milicevic &lt;<br>
&gt;&gt; <a href="mailto:Ivan.Milicevic@supranet.hr">Ivan.Milicevic@supranet.hr</a>&gt;
wrote:<br>
&gt;&gt;<br>
&gt;&gt; I'm not sure that I understand your problem. With this code you can<br>
&gt;&gt; select<br>
&gt;&gt; any feature on map. Can you send a little bit more information? I'm
clues<br>
&gt;&gt; over there.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Friday, April 17, 2009 10:47 AM<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; thank you &nbsp;ivan...<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;on which file i have to write this coding??? &nbsp;any<br>
&gt;&gt; idea??<br>
&gt;&gt;<br>
&gt;&gt; regards<br>
&gt;&gt; susan<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 17, 2009 at 2:09 PM, Ivan Milicevic &lt;<br>
&gt;&gt; <a href="mailto:Ivan.Milicevic@supranet.hr">Ivan.Milicevic@supranet.hr</a>&gt;
wrote:<br>
&gt;&gt;<br>
&gt;&gt; OBJEKTI is layer name and other thing is path to the feature source.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &quot;Library://SAMPLES/DATA/SEWERS/SEWERS.FeatureSource&quot;);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; You can copy/paste feature source from mapguide maestro in layer<br>
&gt;&gt; definition<br>
&gt;&gt; window.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Friday, April 17, 2009 9:45 AM<br>
&gt;&gt; *To:* MapGuide Users Mail List<br>
&gt;&gt; *Subject:* Re: [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; thank you Ivan<br>
&gt;&gt; but &nbsp;i 'd like to know on which file i want to write this
coding??<br>
&gt;&gt; In ur coding OBJEKT1 &nbsp;is layer name right?then what is this<br>
&gt;&gt; &quot;Library://PROJEKTI/&quot; + TIMgisUser +
&quot;/PODACI/OBJEKTI.FeatureSource&quot;);<br>
&gt;&gt;<br>
&gt;&gt; thanks and regards<br>
&gt;&gt; susan<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 17, 2009 at 12:46 PM, Ivan Milicevic &lt;<br>
&gt;&gt; <a href="mailto:Ivan.Milicevic@supranet.hr">Ivan.Milicevic@supranet.hr</a>&gt;
wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hello Susan,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Here is C# code for selection, it's pretty same as PHP.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; MgSiteConnection siteConnection = null;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; InitializeWebTier();<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgUserInformation userInfo = new
MgUserInformation(mgSessionId);<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; siteConnection = new MgSiteConnection();<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; siteConnection.Open(userInfo);<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgResourceService resourceService = siteConnection.CreateService(<br>
&gt;&gt; MgServiceType.ResourceService) as MgResourceService;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgFeatureService featureService =
siteConnection.CreateService(<br>
&gt;&gt; MgServiceType.FeatureService) as MgFeatureService;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgMap map = new MgMap();<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; map.Open(resourceService, &quot;1&quot;); //opening map
with name &#8222;1&#8220;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgFeatureQueryOptions queryOptionsObjekti = new
MgFeatureQueryOptions<br>
&gt;&gt; ();<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgAgfReaderWriter geometryReaderWriter = new
MgAgfReaderWriter();<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgSelection selection = new MgSelection(map);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; //Defining layer and feature source<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgLayer layerObjekti = GetLayerByName(map,
&quot;OBJEKTI&quot;);<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgResourceIdentifier featureResIdObjekti = new
MgResourceIdentifier(<br>
&gt;&gt; &quot;Library://PROJEKTI/&quot; + TIMgisUser +
&quot;/PODACI/OBJEKTI.FeatureSource&quot;);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; //Creating feature filter, this is very important step!<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; string filter = &quot;ID=&quot; + idO;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; queryOptionsObjekti.SetFilter(filter);<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; MgFeatureReader featureReaderObjekti = featureService.SelectFeatures(<br>
&gt;&gt; featureResIdObjekti, &quot;OBJEKTI&quot;, queryOptionsObjekti);<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; selection.AddFeatures(layerObjekti,
featureReaderObjekti, 1);<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; selection.Save(resourceService, &quot;1&quot;);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; StringReader stream = new StringReader(selection.ToXml());<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; string selectionXml = selection.ToXml();<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; featureReaderObjekti.Close();<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; map.Save();<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; //Here, you call javascript function and pass the
selection var<br>
&gt;&gt;<br>
&gt;&gt; &nbsp; &nbsp; Response.Write(&quot;&lt;script&gt;select('&quot; +
selectionXml + &quot;');&lt;/script&gt;&quot;);<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; //This is javascript function that set's the selection from code and
do<br>
&gt;&gt; the<br>
&gt;&gt; refresh.<br>
&gt;&gt;<br>
&gt;&gt; function select(xml)<br>
&gt;&gt;<br>
&gt;&gt; {<br>
&gt;&gt;<br>
&gt;&gt; parent.mapFrame.SetSelectionXML(xml);<br>
&gt;&gt;<br>
&gt;&gt; parent.mapFrame.ExecuteMapAction(10);<br>
&gt;&gt;<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; *From:* <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>
[mailto:<br>
&gt;&gt; <a href="mailto:mapguide-users-bounces@lists.osgeo.org">mapguide-users-bounces@lists.osgeo.org</a>]
*On Behalf Of *susan Daniel<br>
&gt;&gt; *Sent:* Friday, April 17, 2009 9:11 AM<br>
&gt;&gt; *To:* <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><br>
&gt;&gt; *Subject:* [mapguide-users] select the location on map<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; hi all<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; My plat form is mapguide maestro&amp;php.I
connect it with mysql.Now<br>
&gt;&gt; i<br>
&gt;&gt; want to select the corresponding polygon on the map while clicking on
the<br>
&gt;&gt; data in database.In order to display the database table in the
taskpane,i<br>
&gt;&gt; removed the contents of the file &quot;/mapviewerphp/getting started
.php&quot; and<br>
&gt;&gt; wrote my codings.then how to select the polygon?.Any one know<br>
&gt;&gt; this????Anyone<br>
&gt;&gt; having coding to do this???<br>
&gt;&gt; please help me<br>
&gt;&gt;<br>
&gt;&gt;<o:p></o:p></p>

</div>

</div>

<div>

<p class=MsoNormal>&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; thanks&amp;regards<br>
&gt;&gt; &nbsp;susan<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt;&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; thanks&amp;regards<br>
&gt; &nbsp;susan<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; mapguide-users mailing list<o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt; <a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<p class=MsoNormal>&gt; <a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><br>
&gt;<br>
&gt;<br>
<br>
--<o:p></o:p></p>

</div>

<p class=MsoNormal>View this message in context: <a
href="http://n2.nabble.com/select-the-location-on-map-tp2649765p2691346.html"
target="_blank">http://n2.nabble.com/select-the-location-on-map-tp2649765p2691346.html</a><br>
Sent from the MapGuide Users mailing list archive at Nabble.com.<br>
<br>
_______________________________________________<br>
mapguide-users mailing list<o:p></o:p></p>

<div>

<p class=MsoNormal><a href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a><o:p></o:p></p>

</div>

<div>

<div>

<p class=MsoNormal><a
href="http://lists.osgeo.org/mailman/listinfo/mapguide-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a><o:p></o:p></p>

</div>

</div>

</div>

<p class=MsoNormal><br>
<br clear=all>
<br>
-- <br>
thanks&amp;regards<br>
&nbsp;susan<o:p></o:p></p>

</div>

</body>

</html>