Re: [mapguide-users] Where is the Taskbar-Tools flyout stored plz??

2013-02-06 Thread Jackie Ng
When you hit preview on a non-WebLayout resource, Maestro generates its own preview WebLayout that contains these 3 commands, when you're previewing a layout Maestro uses *that* layout for previewing. I guess you're wondering how these 3 commands are implemented? They are all invoke script

Re: [mapguide-users] specification of TileCache

2013-02-06 Thread Jackie Ng
Are you using the official method? The non-official method of tile generation is known to be imperfect and inaccurate and getting it fixed will be hard because I have no idea how this tile generation algorithm works. If you're not using the official method because you don't know what value to

Re: [mapguide-users] specification of TileCache

2013-02-06 Thread Jackie Ng
Are you using the official method? The non-official method of tile generation is known to be imperfect and inaccurate and getting it fixed will be hard because I have no idea how this tile generation algorithm works. If you're not using the official method because you don't know what value to

Re: [mapguide-users] specification of TileCache

2013-02-06 Thread Hans Milling
The tile cache folder is calculated like this looping trough all the tiles (pseudo code): for r=r1 to r2 for c=c1 to c2 ri = r - (r % 30) ci = c - (c % 30) if (ri == 0 r 0) ri = -ri; if (ci == 0 c 0) ci = -ci; folder = tileroot + \\S + scaleindex + \\ + groupname + \\R +

Re: [mapguide-users] specification of TileCache

2013-02-06 Thread Stefanie Siegel
Thanks -that might do the trick. I tried both methods but didn't change meters per unit when using the official method (was 1)... . Therefore the result is likely to be wrong. :-) -Ursprüngliche Nachricht- Von: mapguide-users-boun...@lists.osgeo.org

Re: [mapguide-users] Where is the Taskbar-Tools flyout stored plz??

2013-02-06 Thread Peter Shoemark
Excellent thanks Jackie. I will take a look. Cheers, Peter On 06/02/2013, at 7:02 PM, Jackie Ng jumpinjac...@gmail.com wrote: When you hit preview on a non-WebLayout resource, Maestro generates its own preview WebLayout that contains these 3 commands, when you're previewing a layout Maestro

Re: [mapguide-users] MapGuide 2.4 on Azure Windows Server 2012 .NET 4.5

2013-02-06 Thread Johan Van de Wauw
On Tue, Feb 5, 2013 at 1:41 PM, David Wilhelmsson david.wilhelms...@65nord.se wrote: Johan - Absolute genius! I did miss the .json MIME type. Adding that fixed the Fusion viewer! Great! I'll update the wiki shortly, so we'll finally have a complete set of instructions for a manual

[mapguide-users] Mapguide training

2013-02-06 Thread Johanna Pfalz
Hi, There is a class being offered through NAIT (Edmonton, AB) the weekend of March 8, 9, and 10th called Web Mapping/GIS Using Open Source Software. The open source software being taught in the course is MapGuide. I'm signed up, but there is a possibility the course will be cancelled if

Re: [mapguide-users] Mapguide training

2013-02-06 Thread GordonL
That is great news. If only we could get it into all the colleges! -- View this message in context: http://osgeo-org.1560.n6.nabble.com/Mapguide-training-tp5032563p5032566.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___

[mapguide-users] Filter query problem

2013-02-06 Thread sidecar5
Team, I have a data set that has a colmn 'NAME' that includes a bunch called '?? ISLAND' I am trying to exclude the ISLAND tags by using (NAME '% ISLAND') without brackets as my filter but it does work. any helpers plz or a page where I can get basic examples?? I'm ,more than comfortable

Re: [mapguide-users] Filter query problem

2013-02-06 Thread Ryan Northcott
Try NAME NOT LIKE '% ISLAND' The % needs to be used with LIKE or NOT LIKE in SQL - sent via mobile iOS5 On 2013-02-06, at 4:58 PM, sidecar5 shoemark.pe...@gmail.com wrote: Team, I have a data set that has a colmn 'NAME' that includes a bunch called '?? ISLAND' I am trying to exclude

[mapguide-users] MapGuide Open Source 2.5 Beta 1 released

2013-02-06 Thread Jackie Ng
We are pleased to announce that the MapGuide Open Source project team has made MapGuide Open Source 2.5 beta 1 available Release notes: http://trac.osgeo.org/mapguide/wiki/Release/2.5/Notes Downloads: http://trac.osgeo.org/mapguide/wiki/Release/2.5/Notes#Installation Documentation: Updated

Re: [mapguide-users] Filter query problem

2013-02-06 Thread Rémy Gourrat
I believe with fdo it's a little different, you must put no first Not name like '%island' If you have an autodesk map you have a good help about. Rémy Gourrat - AG-Carto - Bayonne -- View this message in context:

Re: [mapguide-users] Filter query problem

2013-02-06 Thread Zac Spitzer
I'm not 100% certain, but I think NAME might be a reserved word in some FDO providers? On Thu, Feb 7, 2013 at 10:02 AM, Rémy Gourrat rgour...@ag-carto.fr wrote: I believe with fdo it's a little different, you must put no first Not name like '%island' If you have an autodesk map you have a

Re: [mapguide-users] specification of TileCache

2013-02-06 Thread Zac Spitzer
Firstly, MgCooker just mimics the calls a browser makes, so it's exactly the same as browsing a map, just automated. the default settings for mgcooker are for 1 concurrent request, that is request one title and then request the next tile, this will always be the absolute slowest way to generate

Re: [mapguide-users] Filter query problem

2013-02-06 Thread Peter Shoemark
Guys respectfully I think you are looking too deep. Yes most certainly NAME 'NEW SOUTH WALES' means I dont want NSW to appear from my Australia data feature source and it doesnt. Likewise if I add, and NAME 'VICTORIA' and NAME 'SOUTH AUSTRALIA', those states also disappear from

Re: [mapguide-users] Mapguide training

2013-02-06 Thread GIS4U
Can you send a link, I'd be happy to to post. On 2013-02-06 10:37 AM, Johanna Pfalz johanna.pf...@telus.net wrote: Hi, There is a class being offered through NAIT (Edmonton, AB) the weekend of March 8, 9, and 10th called Web Mapping/GIS Using Open Source Software. The open source software

Re: [mapguide-users] Mapguide training

2013-02-06 Thread Shoby Shah
Dear Sir,I am new user of mapguide studio enterprise. i need your help regarding multiple selection of features.I have created a search button, when i search the features, the search button cannot display all the features on map. I need that all the features which are searched will display on

Re: [mapguide-users] Filter query problem

2013-02-06 Thread Peter Shoemark
Ok, the solution. (found through Google) under some circumstances NOT LIKE and simply don't work. As an alternate try moving the NOT part of the code So what worked for me was NOT NAME LIKE '%ISLAND' Perfect. Hope others can get something from this. Cheers, Peter On Thu, Feb 7, 2013 at 1:21