<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I don't know how to explain it better than I described in the mails or
in the developer guide:<br>
<a class="moz-txt-link-freetext" href="http://trac.osgeo.org/mapguide/wiki/maestro/MaestroAPI/basics">http://trac.osgeo.org/mapguide/wiki/maestro/MaestroAPI/basics</a><br>
<br>
Creating a runtime map has advanced uses.<br>
Most likely, you will load a runtime map created by a viewer.<br>
<br>
<pre class="moz-signature" cols="72">Regards, Kenneth Skovhede, GEOGRAF A/S
</pre>
<br>
padmini godavarthi skrev:
<blockquote cite="mid:20851069.post@talk.nabble.com" type="cite">
  <pre wrap="">Hi,
i dont know about the runtime map.
thats why iam waiting for someone to explain about the runtime map 


Regards,
padmini



zspitzer wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">what do you think a run time map is?

On Fri, Dec 5, 2008 at 8:45 PM, padmini godavarthi
<a class="moz-txt-link-rfc2396E" href="mailto:godavarthi.padmini@gmail.com">&lt;godavarthi.padmini@gmail.com&gt;</a> wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap="">hi,
thanks for ur reply.
but i didnt get u.
can u explain me briefly.


Thanks and Regards,
Padmini


Kenneth Skovhede, GEOGRAF A/S wrote:
      </pre>
      <blockquote type="cite">
        <pre wrap="">If you are using the AJAX, DWF or Fusion viewer only,
you probably never want to create a runtime map.
The official viewers create the runtime map for you.
(and overwrite any you have created).

In that situation, you will need to load the current runtime map from
the repository,
modify it, save it, and refresh the client.

You would the pass the SessionID to your ASPX code, and
open the connection using:
conn = new HttpServerConnection(host, sessionId, "en", True)

Then you will load the runtime map (delete the create call):

Dim rtMap As RuntimeClasses.RuntimeMap = conn.GetRuntimeMap(rtMapId)


Modify it, eg:
 rtMap.Layers(0).Visible = False

and Save it:
conn.SaveRuntimeMap(rtMap);


Then in javascript do:
GetMapFrame().Refresh();

Regards, Kenneth Skovhede, GEOGRAF A/S



padmini godavarthi skrev:
        </pre>
        <blockquote type="cite">
          <pre wrap="">Hi,
iam using mapguide opensource 2.0(.net 2.0 +IIS 5.1).
i saw the runtime map sample application in the url

<a class="moz-txt-link-freetext" href="http://trac.osgeo.org/mapguide/wiki/maestro/MaestroAPI/samples/RuntimeMap">http://trac.osgeo.org/mapguide/wiki/maestro/MaestroAPI/samples/RuntimeMap</a>

according to the sample application i changed my code as


               Dim host As New
Uri(<a class="moz-txt-link-rfc2396E" href="http://localhost/mapguide/mapagent/mapagent.fcgi">"http://localhost/mapguide/mapagent/mapagent.fcgi"</a>)
        Dim conn As New HttpServerConnection(host, "Administrator",
"admin",
"en", True)
        Dim res As New ResourceIdentifier("Filebased
data/Maps/mapdata",
ResourceTypes.MapDefinition)
        Dim mapId As String = res.ResourceId
        Dim mapDef As MapDefinition = conn.GetMapDefinition(mapId)
        Dim mapName As String = res.Name
        Dim rtMapId As String = New ResourceIdentifier(mapName,
ResourceTypes.RuntimeMap, conn.SessionID)
        conn.CreateRuntimeMap(rtMapId, mapDef)
        Dim rtMap As RuntimeClasses.RuntimeMap =
conn.GetRuntimeMap(rtMapId)

i didnt get this one

1) What i have to do with this?
2) What will be the output

If anybody knows me can u plz tell me the procedure


Regards,
Padmini



          </pre>
        </blockquote>
        <pre wrap="">_______________________________________________
mapguide-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a>
<a class="moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/mapguide-users">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a>


        </pre>
      </blockquote>
      <pre wrap="">--
View this message in context:
<a class="moz-txt-link-freetext" href="http://www.nabble.com/Runtime-map-tp20830536p20850643.html">http://www.nabble.com/Runtime-map-tp20830536p20850643.html</a>
Sent from the MapGuide Users mailing list archive at Nabble.com.

_______________________________________________
mapguide-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a>
<a class="moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/mapguide-users">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a>

      </pre>
    </blockquote>
    <pre wrap="">

-- 
Zac Spitzer -
<a class="moz-txt-link-freetext" href="http://zacster.blogspot.com">http://zacster.blogspot.com</a>
+61 405 847 168
_______________________________________________
mapguide-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mapguide-users@lists.osgeo.org">mapguide-users@lists.osgeo.org</a>
<a class="moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/mapguide-users">http://lists.osgeo.org/mailman/listinfo/mapguide-users</a>


    </pre>
  </blockquote>
  <pre wrap=""><!---->
  </pre>
</blockquote>
</body>
</html>