RE: [mapguide-users] Pass variables

2007-10-12 Thread Kori Maleski
You can do a zoom to parcel from the original page.

 

You must use do a check to see if the map is initialized prior to executing
javascript:

 

var viewer;

var initTimer;

 

initTimer = setInterval(InitDocument, 200);

 

function InitDocument()

{

try{

 viewer = top.GetYourMapFrame().mapFrame;

 if(viewer.mapInit) {

clearInterval(initTimer);

Do stuff.

Send stuff to TaskPane etc.

 

 }

   }catch(err){}

}

 

 

 

  _  


  

  

  

Kori Maleski

Senior Application Developer

WEBSOFT DEVELOPERS, INC.

P: (530) 759-8754 ext 114

F: (530) 759-0923

[EMAIL PROTECTED]

  _  

 

  _  

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark
Pendergraft
Sent: Friday, October 12, 2007 4:22 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

The problem isn't passing variables in a form.

The issues is that I have a page with 2 frames.  A title bar, and the
mapguide viewer.  I want to execute some code based on this original page's
URL.

However, the map loads after this page loads.  So it would be worthless to
try and execute code (zoom to a parcel) in the original page.  The task
pane's default page would be a great place to do this.  Just one problem.
How do I get variables from the original page to the task pane?

When the map loads, it actually loads about 6 pages.  So passing variables
to the first page means nothing because those variables aren't being passed
to the next page, or the page after that, or the page after that.  Hence my
issues is that I can't pass variables from the original page containing the
map viewer to the task pane or scriptframe which are frames embedded within
frames embedded within frames embedded within the original page.

 

Hope that wasn't too confusing.  Here's a diagram of my issue.

 

Original Page w/ variables being passed to it. (e.g.  mga.aspx?JobNo=12345)

-titleFrame

-ViewerFrame

-Unamed 2 row frame

-Unamed 2 column frame

-mapArea

-taskArea

 
-taskBar

 
-taskFrame

 
-taskListFrame

 
-taskPaneFrame (this is where the code should execute, using variables from
the original page)

-statusbarFrame

 

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ivan Milicevic
Sent: Friday, October 12, 2007 4:01 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

why don't you try put some values into hidden forms and then pass it via
javascript to the other frame... just suggestion.

 

  _  

From: [EMAIL PROTECTED] on behalf of Mark Pendergraft
Sent: pet 12.10.2007 22:53
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

A little bit.

I think I have solved this by putting some javascript code into my taskpane
default page, which gets the url for the top frame (top.location.href)

Then I split it by the '?' character, and divide from there.

Of course, all this requires that the original page uses explicit paths to
the pages being opened in the original 2 frames (took me a while to get that
figured out).

 

Seems to work okay, but I'm definitely open to suggestions/hints.

 

 

-Mark Pendergraft

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ivan Milicevic
Sent: Friday, October 12, 2007 12:45 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

Familiar with using ajax?

 

  _  

From: [EMAIL PROTECTED] on behalf of Mark Pendergraft
Sent: pet 12.10.2007 18:38
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Pass variables

Is there a way to pass variables from my default page (which creates two
frames - titleFrame and viewerFrame) to the task page page?

 

I'm having trouble storing session variables when the map loads and
retrieving them from the task pane afterwards.  It's as if the session
variables are expiring due to the fact that a new frame has been created.
And seeing as mapguide opens a bunch of pages once it loads, I don't think
it would be feasible to rewrite the viewer code just to continue passing
along a few custom variables to the following pages.

 

 

Error! Filename not specified.

Ph: (425) 486-1252  Fx: (425) 486-6108   
www.meadgilman.com

 

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Pass variables

2007-10-12 Thread Mark Pendergraft
The problem isn't passing variables in a form.

The issues is that I have a page with 2 frames.  A title bar, and the
mapguide viewer.  I want to execute some code based on this original
page's URL.

However, the map loads after this page loads.  So it would be worthless
to try and execute code (zoom to a parcel) in the original page.  The
task pane's default page would be a great place to do this.  Just one
problem.  How do I get variables from the original page to the task
pane?

When the map loads, it actually loads about 6 pages.  So passing
variables to the first page means nothing because those variables aren't
being passed to the next page, or the page after that, or the page after
that.  Hence my issues is that I can't pass variables from the original
page containing the map viewer to the task pane or scriptframe which are
frames embedded within frames embedded within frames embedded within the
original page.

 

Hope that wasn't too confusing.  Here's a diagram of my issue.

 

Original Page w/ variables being passed to it. (e.g.
mga.aspx?JobNo=12345)

-titleFrame

-ViewerFrame

-Unamed 2 row frame

-Unamed 2 column frame

-mapArea

 
-taskArea

 
-taskBar

 
-taskFrame

 
-taskListFrame

 
-taskPaneFrame (this is where the code should execute, using variables
from the original page)

-statusbarFrame

 

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ivan
Milicevic
Sent: Friday, October 12, 2007 4:01 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

why don't you try put some values into hidden forms and then pass it via
javascript to the other frame... just suggestion.

 



From: [EMAIL PROTECTED] on behalf of Mark
Pendergraft
Sent: pet 12.10.2007 22:53
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

A little bit.

I think I have solved this by putting some javascript code into my
taskpane default page, which gets the url for the top frame
(top.location.href)

Then I split it by the '?' character, and divide from there.

Of course, all this requires that the original page uses explicit paths
to the pages being opened in the original 2 frames (took me a while to
get that figured out).

 

Seems to work okay, but I'm definitely open to suggestions/hints.

 

 

-Mark Pendergraft

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ivan
Milicevic
Sent: Friday, October 12, 2007 12:45 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

Familiar with using ajax?

 



From: [EMAIL PROTECTED] on behalf of Mark
Pendergraft
Sent: pet 12.10.2007 18:38
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Pass variables

Is there a way to pass variables from my default page (which creates two
frames - titleFrame and viewerFrame) to the task page page?

 

I'm having trouble storing session variables when the map loads and
retrieving them from the task pane afterwards.  It's as if the session
variables are expiring due to the fact that a new frame has been
created.  And seeing as mapguide opens a bunch of pages once it loads, I
don't think it would be feasible to rewrite the viewer code just to
continue passing along a few custom variables to the following pages.

 

 

Error! Filename not specified.

Ph: (425) 486-1252  Fx: (425) 486-6108  www.meadgilman.com
 

 

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] A question on MgTileService.GetTile() function

2007-10-12 Thread Kori Maleski
The AJAX viewer dynamically assigns an image ID to a URL that consists of a
GETTILEIMAGE request.

On a Windows XP machine when using Internet Explorer, this GETTILEIMAGE URL
and resulting .png/.jpg are stored in the Temporary Internet Files folder.

On a Windows XP machine when using Firefox, these are stored in a profile
folder - Local Settings\Application
Data\Mozilla\Firefox\Profiles\q6c40rzw.default\Cache.
Firefox encrypts the cache.  You can view the contents by typing
"about:cache" in the Firefox URL, and follow the links.

On a Windows XP machine when using Safari, the cache is stored in an SQLLite
database.


The Ajax viewer will perform GETTILEIMAGE for tiles within the map view.
Your browser settings for caching will determine whether the request is
performed or not if a tile that has been previously requested is within the
view.

The Ajax viewer will calculate which tile row/columns fall within the view
extent at the current zoom threshold, then perform the requests for those
row/column tiles.

The ID assigned to the image starts at 0 for the map session and increments
up, and has no bearing on the row/column order.

The URL contains all of the relevant row/column and scale info obviously. 






Kori Maleski
Senior Application Developer
WEBSOFT DEVELOPERS, INC.
P: (530) 759-8754 ext 114
F: (530) 759-0923
[EMAIL PROTECTED]


 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Maksim Sestic
Sent: Friday, October 12, 2007 4:50 AM
To: mapguide-users@lists.osgeo.org
Subject: Re: [mapguide-users] A question on MgTileService.GetTile() function


Maciek, as Jackie sad, it does produce a cached tile - but on the server
side. I don't know how and if AJAX stores it's cached data locally.

Regards,
Maksim Sestic



macieksk wrote:
> 
> Jackie Ng pisze:
>> Yes it does produce a cached tile. 
>   can anybody send ex. code of it?
> 
> mayby can we create php code to create jpg/png file of map.
> 
> 
> --
> 
> maciek
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 

-- 
View this message in context:
http://www.nabble.com/A-question-on-MgTileService.GetTile%28%29-function-tf4
612851s16610.html#a13173813
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Pass variables

2007-10-12 Thread Ivan Milicevic
why don't you try put some values into hidden forms and then pass it via 
javascript to the other frame... just suggestion.



From: [EMAIL PROTECTED] on behalf of Mark Pendergraft
Sent: pet 12.10.2007 22:53
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables



A little bit.

I think I have solved this by putting some javascript code into my taskpane 
default page, which gets the url for the top frame (top.location.href)

Then I split it by the '?' character, and divide from there.

Of course, all this requires that the original page uses explicit paths to the 
pages being opened in the original 2 frames (took me a while to get that 
figured out).

 

Seems to work okay, but I'm definitely open to suggestions/hints.

 

 

-Mark Pendergraft

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ivan Milicevic
Sent: Friday, October 12, 2007 12:45 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

Familiar with using ajax?

 



From: [EMAIL PROTECTED] on behalf of Mark Pendergraft
Sent: pet 12.10.2007 18:38
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Pass variables

Is there a way to pass variables from my default page (which creates two frames 
- titleFrame and viewerFrame) to the task page page?

 

I'm having trouble storing session variables when the map loads and retrieving 
them from the task pane afterwards.  It's as if the session variables are 
expiring due to the fact that a new frame has been created.  And seeing as 
mapguide opens a bunch of pages once it loads, I don't think it would be 
feasible to rewrite the viewer code just to continue passing along a few custom 
variables to the following pages.

 

 

cid:image001.jpg@01C7185E.D0B84C40

Ph: (425) 486-1252  Fx: (425) 486-6108  www.meadgilman.com 
 

 

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] MapGuide Automated Tiling Engine 1.2 - patched release

2007-10-12 Thread Kori Maleski
Hi everyone,

 

I have posted an update release of the TilingEngine:

 

Http://www.websoftdev.com/download.cfm  

 

 

The update addresses the following issues:

 

Finite Scale Issues:

 

There was a change between 1.1 and 1.2 that I failed to catch.

A single scale specification will now work correctly.

 

You may specify either the exact Finite Scale as per MapGuide Studio.

  As a double value with 5 decimal places:  20759.66589

  As an integer value rounded up: 20760

 

- problem identified by George McLean 

 

 

Projection Issues:

 

Had problems with MGE.  Built a workaround.  Failed to catch a problem with
extents.

This led to the engine falling back to a 3x3 tile in special cases.

 

You may specify any projection including arbitrary XY and shouldn't run into
any issue.

 

- problem identified by Martin Burrows and Krunoslav

 

 

MGE vs MGO mapagent fcgi path issue:

 

There is now a setting in the FmTilingEngine.exe.config that allows you to
specify mapguide or mapguide2008 for the virtual directory for MapGuide.

 

- problem identified by Maksim Sestic  

 

 

 

 

Thanks for your assistance in finding the issues, let me know if any issues
still persist.

 

Cheers,

 

 

 

  _  


  

  

  

Kori Maleski

Senior Application Developer

WEBSOFT DEVELOPERS, INC.

P: (530) 759-8754 ext 114

F: (530) 759-0923

[EMAIL PROTECTED]

  _  

 

 

Hi everyone,

 

Websoft Developers is pleased to announce the availability of the new 1.2
version of our free MapGuide tiling utility.

 

You may download the installation file from the following link:

 

Http://www.websoftdev.com/download.cfm  

 

 

This is a command line utility that can be accessed via a windows console
window or executed via a batch file.

 

Note:

 

1) The application will work on both MapGuide Open Source 1.2 and Autodesk
MapGuide Enterprise 2008.

2) The application works on the Windows platform only, and will work with
.NET, Java and PHP extensions having been installed.

3) Replace MapGuide Open DLLs/webconfig.ini with MapGuide Enterprise
DLLs/webconfig.ini and reconfigure the Tiling Engine config for use with
Enterprise.

 

 

Please provide feedback for any bugs and application hangs, etc.  

 

 

Enjoy!   

 

 

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Pass variables

2007-10-12 Thread Mark Pendergraft
A little bit.

I think I have solved this by putting some javascript code into my
taskpane default page, which gets the url for the top frame
(top.location.href)

Then I split it by the '?' character, and divide from there.

Of course, all this requires that the original page uses explicit paths
to the pages being opened in the original 2 frames (took me a while to
get that figured out).

 

Seems to work okay, but I'm definitely open to suggestions/hints.

 

 

-Mark Pendergraft

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ivan
Milicevic
Sent: Friday, October 12, 2007 12:45 PM
To: MapGuide Users Mail List
Subject: RE: [mapguide-users] Pass variables

 

Familiar with using ajax?

 



From: [EMAIL PROTECTED] on behalf of Mark
Pendergraft
Sent: pet 12.10.2007 18:38
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Pass variables

Is there a way to pass variables from my default page (which creates two
frames - titleFrame and viewerFrame) to the task page page?

 

I'm having trouble storing session variables when the map loads and
retrieving them from the task pane afterwards.  It's as if the session
variables are expiring due to the fact that a new frame has been
created.  And seeing as mapguide opens a bunch of pages once it loads, I
don't think it would be feasible to rewrite the viewer code just to
continue passing along a few custom variables to the following pages.

 

 

 
cid:image001.jpg@01C7185E.D0B84C40 

Ph: (425) 486-1252  Fx: (425) 486-6108  www.meadgilman.com
 

 

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] problem using mgos 1.2.x on vista and iis7.0

2007-10-12 Thread geostarter

I`ve installed mapguide open source successfully on windows vista running iis
7.0. The admin interface of mapguide is working without any problems and so
i could load the Sheboygan.mgp file successfully. I configure the
dotnetviewerexample and got running the ajaxviewer, but there is no map
loaded within the ajax viewer. There are no error messages in log files.

I have also tried running mapagent enumerateResources function and there i
get the following error:
Configuration file "C:\Program
Files\MapGuideOpenSource\WebServerExtensions\www\mapagent../webconfig.ini"
cannot be found or cannot be opened.
Configuration file "C:\Program
Files\MapGuideOpenSource\WebServerExtensions\www\mapagent../webconfig.ini"
cannot be found or cannot be opened. Exception occured in method
MgConfiguration.LoadConfiguration at line 110 in file
c:\build_bond_area\mapguide_open_source_v1.2\build_18.1\mgdev\common\foundation\System/Configuration.cpp
 

I cant find where the path is set to this.

Please help
Greets
geostarter
-- 
View this message in context: 
http://www.nabble.com/problem-using-mgos-1.2.x-on-vista-and-iis7.0-tf4599474s16610.html#a13132140
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


RE: [mapguide-users] Pass variables

2007-10-12 Thread Ivan Milicevic
Familiar with using ajax?



From: [EMAIL PROTECTED] on behalf of Mark Pendergraft
Sent: pet 12.10.2007 18:38
To: mapguide-users@lists.osgeo.org
Subject: [mapguide-users] Pass variables



Is there a way to pass variables from my default page (which creates two frames 
- titleFrame and viewerFrame) to the task page page?

 

I'm having trouble storing session variables when the map loads and retrieving 
them from the task pane afterwards.  It's as if the session variables are 
expiring due to the fact that a new frame has been created.  And seeing as 
mapguide opens a bunch of pages once it loads, I don't think it would be 
feasible to rewrite the viewer code just to continue passing along a few custom 
variables to the following pages.

 

 

 
cid:image001.jpg@01C7185E.D0B84C40
 

Ph: (425) 486-1252  Fx: (425) 486-6108  www.meadgilman.com 
 

 

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Pass variables

2007-10-12 Thread Mark Pendergraft
Is there a way to pass variables from my default page (which creates two
frames - titleFrame and viewerFrame) to the task page page?

 

I'm having trouble storing session variables when the map loads and
retrieving them from the task pane afterwards.  It's as if the session
variables are expiring due to the fact that a new frame has been
created.  And seeing as mapguide opens a bunch of pages once it loads, I
don't think it would be feasible to rewrite the viewer code just to
continue passing along a few custom variables to the following pages.

 

 

 

Ph: (425) 486-1252  Fx: (425) 486-6108  www.meadgilman.com
 

 

<>___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Version 2.0 and printing question

2007-10-12 Thread Robert Bray

Bruno,

At the moment we do not have plans for improving print capabilities in 
MGOS 2.0. The roadmap and summary plan for 2.0 can be found here:


http://trac.osgeo.org/mapguide/roadmap

More detail along with all of the RFCs are here:

http://trac.osgeo.org/mapguide/wiki/MapGuideRfcs

We do not and cannot discuss plans for MapGuide Studio in a public forum 
such as this because it is a proprietary product.


We of course welcome community contributions, so if you want to propose 
and develop some printing enhancements we would be very open to that. If 
you are interested in doing something like that please join the 
[EMAIL PROTECTED] mailing list and make your proposal in that 
 forum.


Thanks,
Bob

Bruno Scott wrote:

Hy all
Is there some plan for improving the printing functionnality in release 2.0
of mapguide?

I was thinking of more flexibility in the printLayout xml format
and maybe a print to pdf in addition to the print dwf/raster?
what about a printlayout editor?

Thanks
Bruno Scott

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MgByteReader and XmlSerializer question

2007-10-12 Thread Maksim Sestic

Hi Kenneth,

You're right, still it would be such a pain to maintain custom .NET wrapper
:-) What I've done in past few days is, I created a small .NET library
exposing ready-made collections of resources, e.g. Maps, Layers, etc. in
their "native" form (MgMapCollection, etc). XML parsing is used sparely,
only for global resources enumeration (to certain level). There's an
abstract class relying on singleton structure to share certain data -
UserInformation, Connection, Session... to other classes inheriting it.
Works for now.

What I had to do was to separate, so to speak, external developers and MGE
API. So they don't have direct access to, say, features - but still can
perform certain oprations over them. On the other hand, they don't rely on
resource library structure since it changes frequently. Basic access
restrictions are still implied through MG.

Regards,
Maksim Sestic



Kenneth, GEOGRAF A/S wrote:
> 
> The .Net wrapper that is built from the MapGuide OS is very simple and 
> only passes messages onto
> the native Dll files. This means that a wrapper can use either 
> Enterprise or Open Source, depending on what
> native Dll's are present.
> 
> This means that you may use a custom Open Source wrapper for the 
> Enterprise API.
> 
> If you want to be restrictive, there are user administration avalible 
> within the MapGuide Server.
> 
> Regards, Kenneth, GEOGRAF A/S
> 
> 
> 
> Maksim Sestic skrev:
>> Kenneth, I'm stuck with commercial version of MGE... So, basically, What
>> I
>> See Is What I Get :-)
>>
>> My intention was to build a small .NET wrapper to offer some neatly
>> picked
>> functionality to 3rd party developers leaning on present MGE
>> implementation.
>> I can't let them browse data repositories as they will since I need to
>> keep
>> certain data "locked" on server side and actually never let the client
>> developer persist a full dataset copy with them. This .NET wrapper was
>> supposed to serve as an additional layer of protection between MGE API
>> and
>> potential 3rd party APIs/implementations. But it's purpose is not
>> restrictive in nature, it would also enable MGE administrators create and
>> modify maps/layers/etc. apart from external solutions depending on it.
>>
>> I'm currently working on exposing my .NET wrapper's methods to PHP users
>> via
>> COM interop. Present PHP's function for direct connecting to .NET objects
>> is
>> not working as expected. 
>>
>> As you may already guessed what's it all about - it's a city GIS used by
>> dozens of both municipal and infrastructure departments regionwide.
>>
>> Regards,
>> Maksim Sestic
>>
>>
>>
>> Kenneth, GEOGRAF A/S wrote:
>>   
>>> :D yes, that would be one way of coping with it.
>>>
>>> If you are up to the task, you can compile the mapguide server on your 
>>> own machine.
>>> After compilation, it will create the .cs files required for the
>>> wrapper.
>>> You can modify those to work as you want, but be aware that you will 
>>> need to keep your modifications up to date yourself.
>>>
>>> I am working on an alternate API, that uses Xml serialization to load 
>>> and save the objects, but its still needs some work.
>>>
>>> Regards, Kenneth, GEOGRAF A/S
>>>
>>>
>>>
>>> Maksim Sestic skrev:
>>> 
 Hi Kenneth,

 Thanks for the tip, it saved me hours of trying. This also means that
 we
 need to write our own .NET wrappers over existing .NET wrappers to
 include
 proper object de/serialization... :-)

 Regards,
 Maksim Sestic


 Kenneth, GEOGRAF A/S wrote:
   
   
> Yes, you are missing a few key pieces of information.
>
> 
> 
   
   
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> http://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>>>
>>> 
>>
>>   
> 
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/MgByteReader-and-XmlSerializer-question-tf4587994s16610.html#a13174213
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] A question on MgTileService.GetTile() function

2007-10-12 Thread Maksim Sestic

Maciek, as Jackie sad, it does produce a cached tile - but on the server
side. I don't know how and if AJAX stores it's cached data locally.

Regards,
Maksim Sestic



macieksk wrote:
> 
> Jackie Ng pisze:
>> Yes it does produce a cached tile. 
>   can anybody send ex. code of it?
> 
> mayby can we create php code to create jpg/png file of map.
> 
> 
> --
> 
> maciek
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapguide-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/A-question-on-MgTileService.GetTile%28%29-function-tf4612851s16610.html#a13173813
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] A question on MgTileService.GetTile() function

2007-10-12 Thread Maciej Skorczewski

Jackie Ng pisze:
Yes it does produce a cached tile. 

 can anybody send ex. code of it?

mayby can we create php code to create jpg/png file of map.


--

maciek
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] A question on MgTileService.GetTile() function

2007-10-12 Thread Jackie Ng

Yes it does produce a cached tile. 

- Jackie


Maksim Sestic wrote:
> 
> Does anybody know if calling MgTileService.GetTile() function produces a
> cached tile (if it's not cached previously), even when working outside of
> AJAX?
> 
> Regards,
> Maksim Sestic
> 

-- 
View this message in context: 
http://www.nabble.com/A-question-on-MgTileService.GetTile%28%29-function-tf4612851s16610.html#a13173503
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] A question on MgTileService.GetTile() function

2007-10-12 Thread Maksim Sestic

Does anybody know if calling MgTileService.GetTile() function produces a
cached tile (if it's not cached previously), even when working outside of
AJAX?

Regards,
Maksim Sestic
-- 
View this message in context: 
http://www.nabble.com/A-question-on-MgTileService.GetTile%28%29-function-tf4612851s16610.html#a13173127
Sent from the MapGuide Users mailing list archive at Nabble.com.

___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users