Re: [mapguide-users] Layer based on a view

2024-06-28 Thread Gordon Luckett via mapguide-users
Make sure the view has a key too.

*alter view myView add constraint myConstraint primary key (myID) disable
novalidate;*


On Fri, Jun 28, 2024 at 4:42 PM David Bowen via mapguide-users <
mapguide-users@lists.osgeo.org> wrote:

> I'm trying to create a layer based on a view but the view isn't showing up
> in the Feature Class selection pane in Maestro. The view is based on an
> Oracle table that has a Primary Key and a spatial column. We're using
> SLKING FDO as the provider, MGOS 4 Beta 1 and Maestro 6.0m12.
>
>
>
> Does anyone have suggestions on how to resolve this?
>
>
>
> Thanks,
>
> David
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MutationEvents in Chrome and Edge

2024-06-24 Thread Gordon Luckett via mapguide-users
Nothing appears in the console, I have just heard a lot of warnings from
ESRI about their products and wondered if MapGuide would be affected too.


On Mon, Jun 24, 2024 at 10:05 AM Jackie Ng via mapguide-users <
mapguide-users@lists.osgeo.org> wrote:

> Seriously doubt it. Our viewer offerings don't do heavy DOM manipulation
> where we would need or care about such events.
>
> Has the browser console being logging warnings about usage of these APIs
> on our viewer offerings?
>
> - Jackie
>
> You wrote:
>
> Any thoughts on the end of Mutation Events for Chrome and Edge in July?
> Will it affect mapguide?
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] MutationEvents in Chrome and Edge

2024-06-23 Thread Gordon Luckett via mapguide-users
Any thoughts on the end of Mutation Events for Chrome and Edge in July?
Will it affect mapguide?
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Precache MapGuide REST tile.png

2024-05-01 Thread Gordon Luckett via mapguide-users
I have never tried this, but it looks promising for priming any xyz layer.

https://github.com/dechristopher/xyz


On Wed, 1 May 2024, 18:20 Nimrod Cnaan via mapguide-users, <
mapguide-users@lists.osgeo.org> wrote:

> Hi,
>
> Is there a way to write a script that makes requests to the MapGuide REST
> API,
> causing the server to generate and store precache tiles ?
>
> Assuming this will improve performance for the "External General XYZ
> Layer".
> Something like:
>
> import requests
>
> server_url = 'http://myserverurl/mapguide/rest/'
> map_name = 'library/projectname/Maps/mymap.MapDefinition'
> base_map_url = f'{server_url}tile/{map_name}/'
>
> # Define the zoom levels and tile ranges to precache
> zoom_levels = [0, 1, 2, 3]  # Example zoom levels
> tile_range = range(0, 10)  # Example tile range for x and y
>
> # Loop through each zoom level and tile range to request tiles
> for zoom in zoom_levels
> for x in tile_range
> for y in tile_range
> tile_url = f'{base_map_url}{zoom}{x}{y}.png'
> response = requests.get(tile_url)
> print(f'Requesting {tile_url} - Status {response.status_code}')
>
> # Optional Implement some error handling and retry logic
> if response.status_code != 200
> print(f'Error retrieving tile at {zoom}{x}{y}')
>
> --
>
> בכבוד רב,
>
> *נמרוד כנען**   |   *גיאומינד שירותי GIS  –  פיתוח,  ייעוץ  ושירותי ענן
> ישיר: 048101268 | נייד: 0525355483 | nim...@geomind.co.il
>
> נא בקרו באתר החדש שלנו http://geomind.co.il
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] AutoDesk Oracle Driver and NLS Variables

2024-03-08 Thread Gordon Luckett via mapguide-users
The Autodesk Driver for oracle is not tested with mgos 4.  If possible, try
the same query, with the FDO, using AutoCAD Map where the FDO driver was
originally installed. This will rule out if the issue is with the mgos/adsk
FDO driver first

If it is repeatable in AutoCAD Map,  then I would recommend submitting a
bug to Autodesk directly.



On Fri, 8 Mar 2024, 06:08 David Bowen via mapguide-users, <
mapguide-users@lists.osgeo.org> wrote:

> We're testing using the AutoDesk Oracle driver in MGOS Beta 1, running on
> Apache on Windows Server 2022 Standard, and are encountering an issue when
> we select an object to query against the database (Oracle 19).
> Instead of returning results, that are being returned when using the
> Oracle SLKING driver, we're getting an error message (image 1).
>
> Image 1:
> [image: image.png]
>
> The relevant section of code is as follows:
>
> function _setEnvironment() {
>   Set Oracle NLS variables
> $NLS_ENV = "ALTER SESSION SET NLS_NUMERIC_CHARACTERS='.,'";
> $set = $this->db_app->simple_query( $NLS_ENV );
> $NLS_ENV = "ALTER SESSION SET NLS_DATE_FORMAT='-MM-DD'";
> $set = $this->db_app->simple_query( $NLS_ENV );
> }
>
> It fails when attempting to run the first simple_query, and I presume it
> will fail when attempting to run the second simple_query. Has anyone
> encountered this or are using the AutoDesk Oracle driver where the NLS
> variables are being set?
>
> Thanks,
> David
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Unable to save MapGuide Site Admin tool

2024-02-07 Thread Gordon Luckett via mapguide-users
I would recommend turning on Session and Trace logging to get a better idea
of the resources used.

[image: image.png]

On Wed, Jan 10, 2024 at 8:02 PM pierre.cardinal--- via mapguide-users <
mapguide-users@lists.osgeo.org> wrote:

> Hi David,
>
>
>
>
>
> To fix the problem “definitely”
>
>
>
> Remove or comment the two following lines in the file
>  ..\Web\www\mapadmin\serverdatafunctions.php
>
>
>
>
>
> function CleanUpMagicQuotes( &$path )
>
> {
>
>// if ( get_magic_quotes_gpc() )
>
>// $path = str_replace('', '\\', $path );
>
> }
>
>
>
>
>
> The function get_magic_quote_gpc() is deprecated.
>
>
>
>
>
> Restart your Apache server
>
>
>
>
>
> Regards,
>
>
>
> Pierre
>
>
>
>
>
>
>
> *De :* mapguide-users  *De la
> part de* David Bowen via mapguide-users
> *Envoyé :* 10 janvier 2024 09:30
> *À :* MapGuide Users Mail List 
> *Cc :* David Bowen 
> *Objet :* [mapguide-users] Unable to save MapGuide Site Admin tool
>
>
>
> I'm attempting to update settings in the Site Administrator tool but when
> I click on Save, a blank page is returned. When I click on the go back
> button, none of the updated settings are shown.
>
>
>
> Has anyone encountered this? I know you can update the serverconfig.ini
> file but I'm trying to update how often the logs are archived and there
> doesn't appear to be an option for it in the serverconfig.ini file.
>
>
>
> Thanks,
>
> David
>
>
>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mapguide-users Digest, Vol 204, Issue 6

2024-01-14 Thread Gordon Luckett via mapguide-users
You may have in install the Linux .net libraries.

https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-2204

On Sun, 14 Jan 2024, 20:00 ,  wrote:

> Send mapguide-users mailing list submissions to
> mapguide-users@lists.osgeo.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
> or, via email, send a message with subject or body 'help' to
> mapguide-users-requ...@lists.osgeo.org
>
> You can reach the person managing the list at
> mapguide-users-ow...@lists.osgeo.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of mapguide-users digest..."
>
>
> Today's Topics:
>
>1. Maestro 6.0m12 with Mono under Ubuntu 22.04 LTS
>   (pierre.cardi...@sympatico.ca)
>
>
> --
>
> Message: 1
> Date: Sat, 13 Jan 2024 22:12:38 -0500
> From: 
> To: "'MapGuide Users Mail List'" 
> Subject: [mapguide-users] Maestro 6.0m12 with Mono under Ubuntu 22.04
> LTS
> Message-ID: <000f01da4697$87886580$96993080$@sympatico.ca>
> Content-Type: text/plain; charset="us-ascii"
>
> Hi,
>
>
>
> I am unable to run Maestro 6.0m12 with Mono under Ubuntu 22.04 LTS.
>
> The message is : Cannot open assembly './Maestro.exe': File does not
> contain
> a valid CIL image.
>
> Any solution ?
>
>
>
> Regards,
>
>
>
> Pierre
>
>
>
>
>
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> http://lists.osgeo.org/pipermail/mapguide-users/attachments/20240113/adeee9f3/attachment-0001.htm
> >
>
> --
>
> Subject: Digest Footer
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
>
> --
>
> End of mapguide-users Digest, Vol 204, Issue 6
> **
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] WMS with MapGuide OS 4 Beta 1 on Ubuntu 22.04

2024-01-12 Thread Gordon Luckett via mapguide-users
In the PHP.INI the output buffering is quite now.  you can try increasing
it:

output_buffering = 4096 (default)

On Fri, Jan 12, 2024 at 9:53 AM Daniel Knoop via mapguide-users <
mapguide-users@lists.osgeo.org> wrote:

> Hi List,
>
>
>
> I’ve installed MapGuide OS 4.0 Beta 1 on a fresh Ubuntu 22.04 Server. Most
> seems to work, but I can’t get WMS running.
>
> If I try to open the capabilities document, I get “Error: Server returned
> nothing (no headers, no data)” in my client.
>
> Digging around in the logfiles, I’ve found in
> /usr/local/mapguideopensource-4.0.0/webserverextensions/apache2/logs/error_log:
>
>
>
> [Fri Jan 12 08:36:22.292425 2024] [core:notice] [pid 4624:tid
> 140102563568576] AH00051: child pid 5007 exit signal Abort (6), possible
> coredump in /usr/local/mapguideopensource-4.0.0/webserverextensions/apache2
>
> *** buffer overflow detected ***: terminated
>
> [Fri Jan 12 08:42:55.758679 2024] [core:notice] [pid 4624:tid
> 140102563568576] AH00051: child pid 5471 exit signal Abort (6), possible
> coredump in /usr/local/mapguideopensource-4.0.0/webserverextensions/apache2
>
> *** buffer overflow detected ***: terminated
>
>
>
> This appears every time, I request the capabilities document.
>
>
> http://server:8008/mapguide/mapagent/mapagent.fcgi?service=wms&request=getcapabilities&version=1.3.0
>
>
>
> The same installation (all default, using apache2) on Windows is fine.
>
>
>
> Is there any hint, how to get running WMS with MapGuide on Linux?
>
>
>
> Thanks,
>
>
>
>
>
> Mit freundlichen Grüßen
>
> *Daniel Knoop *
>
>
>
> [image: X8LsR+VcR2yJwBJRU5ErkJggg==]
>
>
>
> *Mensch und Maschine acadGraph GmbH*
>
> *Daniel Knoop | Teamleiter Consulting |daniel.kn...@mum.de
> *
>
>
> Phone +49 2861 68021-57 | Mobile +49 176 19295 127 | Teams
> 
> Dülmener Weg 221 | 46325 Borken | www.mum-acadgraph.de
> 
>
>
> Geschäftsführer: Roman Wagener, Peter Buss, Rainer Sailer,
> Markus Pech | Sitz: München, Amtsgericht München, HRB 147237
>
>
>
>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Unable to install MGOS 4 Beta 1

2023-12-11 Thread Gordon Luckett via mapguide-users
You might be able to right click > properties and choose 'unblock' with
Explorer to allow the installer to run

On Mon, 11 Dec 2023, 15:07 David Bowen via mapguide-users, <
mapguide-users@lists.osgeo.org> wrote:

> I'm attempting to install MGOS 4 Beta 1 on a Windows 2022 server but am
> getting the following error:
>
> Microsoft Defender SmartScreen prevented an unrecognized app from
> starting. Running this app might put your PC at risk.
>
> [image: image.png]
> Has anyone encountered this before and have a workaround?
>
> Thanks,
> David
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Map not rendering

2023-12-10 Thread Gordon Luckett via mapguide-users
Check logs.
Check anti-virus.
Check that the service is running.
Check IIS/Apache is running.


On Sun, 10 Dec 2023, 18:18 anniechan03--- via mapguide-users, <
mapguide-users@lists.osgeo.org> wrote:

> Hi,
>
> Im using mapguide 3.1.2 vb asp.net fusion layout.. seems to be odd, i
> switch computer and resintalled everything, but for some reason the map is
> not rendering and no errors was thrown.
>
> I do have fastcgi added on  handlers mappings, i did try to reinstall
> again the mapguide but still not rendering..
>
> Any ideas or help ?
>
>
> Thanks
>
> Maria A
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] google maps problem

2023-11-20 Thread Gordon Luckett via mapguide-users
I always use Google's XYZ layers and avoid the API.

You need to use mapguide 3.1.2 or higher though.

On Mon, 20 Nov 2023, 15:15 pierre.cardinal--- via mapguide-users, <
mapguide-users@lists.osgeo.org> wrote:

> Hi Yuval,
>
>
>
> You will have the best answers with this thread
>
>
>
> https://www.mail-archive.com/mapguide-users@lists.osgeo.org/msg27061.html
>
>
>
> Regards,
>
>
>
> Pierre
>
>
>
> *De :* mapguide-users  *De la
> part de*   via mapguide-users
> *Envoyé :* 19 novembre 2023 11:28
> *À :* mapguide-users@lists.osgeo.org
> *Cc :* יובל קימל 
> *Objet :* [mapguide-users] google maps problem
>
>
>
> Hello to all
>
> for many years now i have using mapguide open source as a main platform
> for agriculture management system
>
> Throughout the years i had some problems with the google maps background
> that were solved by changing the version to the correct google maps api
> version.
>
> On the 17 of November the google maps API stopped delivering google maps
> background and i have no idea how to solve this problem.
>
> We use a pretty old version of mapguide open source. 2.6.1.8732-Final-x64
>
> Please any idea will be great.
>
> regards
>
> Yuval
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MapGuide Open Source 4.0 RC1 plans and some remarks on MVT tiles

2023-10-27 Thread Gordon Luckett via mapguide-users
HI Jackie,
from my perspective, I never use the MVT.  I would not be disappointed if
you dropped it from the next build (at least for now).

On Fri, Oct 27, 2023 at 10:16 AM Jackie Ng via mapguide-users <
mapguide-users@lists.osgeo.org> wrote:

> Hi All,
>
> I am currently putting the finishing touches on a new mapguide-rest
> release that will be compatible with both 3.1.2 and current 4.0 Beta, thus
> fully validating the new PHP binding work (if mapguide-rest can work with
> these new PHP bindings, then there is no real reason your PHP MapGuide
> application should not work as well!)
>
> Which means that after the new release of mapguide-rest I can divert my
> full attention back onto MapGuide proper and work towards the RC1 release.
>
> The main goals for the RC1 release will be:
>
>- Getting the supplemental stories around the new API binding work
>ready, such as:
>   - Getting the .net binding packages onto nuget
>   - Per-language API documentation instead of using doxygen with an
>   umbrella static gateway site to point to all 3.
>- Getting mg-desktop working under the new API bindings
>- Updating Apache/PHP/Tomcat again to whatever the current version is
>- Fixing the PostGIS problem reported on this list and on trac (
>https://trac.osgeo.org/mapguide/ticket/2874). I'm still looking for
>solid reproduction steps against some PostGIS dataset that I can replicate
>locally. That will help drastically reduce turnaround time on a
>solution/fix.
>- Addressing any other minor MapGuide/FDO issues that can be addressed
>in this timeframe.
>
> But one particular item I want to talk about (and too important to fit
> into a single bullet point) is around the new Mapbox Vector Tile (MVT)
> support. I have personally been disappointed with the implementation I
> added because outside of the Sheboygan dataset, it is not producing the MVT
> tiles I am expecting, with a whole random assortment of geometry and
> rendering artifacts in my OpenLayers examples.
>
> I am strongly considering pulling this feature out of the codebase because
> I do not have the confidence to actually fix these issues because the
> implementation was predicated on "I trust this library of code to
> write/encode MVT tiles to spec and so I will integrate said code into the
> MG rendering/stylization pipeline".
>
> That "library of code" is the MVT tile encoder from the GDAL/OGR MVT
> driver and whatever "trust" I had in this code was somewhat shook when I
> used ogr2ogr directly to produce these MVT tiles and even then, the MVT
> tiles would not display correctly in my OpenLayers examples. Now
> admittedly, I was using an older version of the tile encoder and ogr2ogr
> (v2.4.4), so the implementation may have been immature. But a starting
> position of "not fully working" doesn't give me hope.
>
> This has been my experience with MVT tile support. How has your experience
> been with this new feature? Does it actually produce MVT tiles as you
> expect?
>
> Please try to convince me that this is a feature worth keeping. Be honest
> in your appraisal of the current implementation. If MVT support isn't fully
> working for you, then that is a situation that is not likely to improve so
> we're better off just pulling the feature out and just relying on
> external/dedicated MVT encoding tools on your data to do the job better.
>
> - Jackie
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Mapguide-Rest with Beta 4.0

2023-09-20 Thread Gordon Luckett
Just run php composer listed on the mapguide rest site..

On Thu, 21 Sep 2023, 03:19 Sympatico,  wrote:

> Hi Gordon,
>
> What do you mean by you had to recompile the Rest first ? Mapguide-rest is
> developped with PHP and JS.
>
> Regards
>
> Pierre
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Mapguide-Rest with Beta 4.0

2023-09-20 Thread Gordon Luckett
I had the Rest working with MGOS 4 Beta, but I had to recompile the Rest
first - not just download the files...

On Wed, Sep 20, 2023 at 6:24 PM Scott Hameister 
wrote:

> I saw that Jackie had work with Mapguide-Rest on his todo list.
> Has any one tried Mapguide-Rest with Beta 4.0?
> Does it work? I have a customer has has flagged the old PHP versions as a
> problem , however I need mapguide Rest to work if I upgrade them to Beta
> 4.0.
>
> I just use rest for Getting sessions, MAking selections, Getting
> fieldnames, Getting layers, no fancy stuff.
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] RES: Google Satellite

2023-08-07 Thread Gordon Luckett
There is an undocumented way, and you must read the Google TOC to see if it
violates, but you can use the XYZ tiles like this article for qgis states.

https://hatarilabs.com/ih-en/how-to-add-a-google-map-in-qgis-3-tutorial

But remember to add the $ sign in front of the {x} etc for MapGuide.

https://mt0.google.com/vt/lyrs=m&hl=en&x=${x}&y=${y}&z=${z}




On Mon., Aug. 7, 2023, 7:26 p.m. ,  wrote:

> Hi,
>
>
>
> So nobody is using google maps as base map right now ?
>
>
>
> Liglio
>
>
>
>
>
> *De:* mapguide-users  *Em nome de
> *Jackie Ng
> *Enviada em:* terça-feira, 25 de julho de 2023 09:50
> *Para:* mapguide-users@lists.osgeo.org
> *Assunto:* Re: [mapguide-users] Google Satellite
>
>
>
> We do not support the use or integration of Google Maps layers and
> services in any of our viewer offerings (official or unofficial viewer
> offerings like my react viewer)
>
>
>
> It is too much of a technical and legal minefield for us to deal with.
>
>
>
> The current release of MapGuide Maestro may give you the impression that
> all of this is possible, but the current release is also a year old and the
> next release of Maestro (coming this week) will be dropping Fusion editor
> support for anything Google-related to officially put the nail in the
> coffin on the idea of any kind of Google Maps integration in MapGuide.
>
>
>
> - Jackie
>
>
>
> You wrote:
>
> Hi,
>
>
>
>
>
> I am using Bing Aerial as Basemap, but now I want to change to Google
>
> Satellite.
>
>
>
> I just have to pay for the Google key, and associate it in the Web Layout,
>
> or need more work ?
>
>
>
> It works fine ? I read about some issues with Openlayers
>
>
>
> Using Mapguide Open Source Server 3.1.2 on Windows Server 2019 and Fusion
>
> Viewer.
>
>
>
> Regards,
>
>
>
> Liglio
>
> --
>
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Intermittent MapGuide issue

2023-05-17 Thread Gordon Luckett
Strangely, I sometime do this:

$mySel = $sel->ToXml();
$this->originalSel = $mySel;

and I find that works better..



On Wed, May 17, 2023 at 2:17 PM David Bowen  wrote:

> Our application has functionality where a user can search for an address
> and then click on a button to return data, when available, from a selection
> of layers. We're encountering an issue where there is data present, however
> when the user clicks the button, MapGuide returns an error saying no valid
> objects are selected. If the user clicks the button a second time, results
> are returned. This seems like a MapGuide error and I've been attempting to
> troubleshoot it without success.
> This issue is intermittent and only seems to exist in our Development
> environment, however I can recreate it if I export the Development package
> from Maestro and import it into another environment.
>
> The relevant section of code that seems to be failing is:
>
> $myMap = $this->MapGuideObject->getMap();
> $session = $this->mgSessionId;
> $mapName = $this->mgMapID;
> $objkeys = '';
> $errorMsg = null;
> $siteConnection = $this->MapGuideObject->getSiteConnection();
> // Get an instance of the Resource and Mapping Services and use them to
> open
> // the map and initialize a selection object.
> $resourceSrvc = $this->MapGuideObject->getResourceService();
> $featureSrvc = $this->MapGuideObject->getFeatureService();
> //Get selected map layers.
> $sel = new MgSelection( $myMap );
>
> $sel->Open( $resourceSrvc, $mapName );
>
> $this->originalSel = $sel->ToXml();
> $selLayers = $sel->GetLayers();
> //Check to see if no objects are selected.
>
> It appears that the line $this->originalSel = $sel->ToXml(); is the issue
> as there are times where it returns data but other times it's an empty
> string. Has anyone encountered an issue like this, or would anyone have an
> idea of how to resolve it?
> Alternatively, what would be the best way to try to catch a potential
> MapGuide error that is being generated? I believe that we have all error
> logging turned on but nothing has appeared in the log files.
>
> Thanks,
> David
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] SQL Server connection with windows authentication

2023-03-17 Thread Gordon Luckett
If mapguide server is logged into SQL Server as a user that have windows
authentication, you should be able to do this.

For example, make a network user called mapguide_server_user, and log into
MapGuide Services as that user and grant that user access to SQL Server,
you can use Windows Authentication.

On Fri, Mar 17, 2023 at 10:46 AM Gunter Becker 
wrote:

> Hi,
>
>
>
>
> is it possible to connect to a SQL Server database using integrated
> security (windows authentication) in FDO Provider? If so, how can I do that
> in Maestro, for example? So far I've only done this with SQL authentication.
>
>
>
> Thanks, Gunter
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] MapGuide 4 and mapguide-rest

2023-02-28 Thread Gordon Luckett
I was wondering if there will be a new composer build for MGOS 4 and
mapguide-rest with all the dependencies with the new and updated version of
PHP within MGOS 4.

PHP is too new for the current dependencies (ie. SLIM, SMARTY)
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] WFS 2

2023-02-23 Thread Gordon Luckett
Thanks, I will give WFS 2.0 a try with the AWD file..

On Thu, Feb 23, 2023 at 7:14 AM Jackie Ng  wrote:

> It may be feasible, but if WFS 2.0 introduces new operations or new
> parameters for existing operations, there will be no support for them. Also
> if any of these new additions are required implementations to be
> conforming, that means you'll have a non-standard/non-conforming
> implementation that may subtly break WFS 2.0 clients.
>
> The easy way to find out if it's feasible is to clone the 1.1.0 awd, tweak
> the capabilities response content and see if you can get at it with a WFS
> 2.0 GetCapabilities request.
>
> This is uncharted territory, so good luck!
>
> - Jackie
>
> You wrote:
>
> Hi All,
> has anyone used WFS 2 with MGOS 4?
>
> would it be feasible to tweak the
> 1.1.0.xml.awd to 2.0.xml.awd to make that happen?
>
> I wanted to share a layer with arcgis.com from MGOS but I got the
> "Unsupported WFS version 1.1.0. Supported version: 2.0.0" only..
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] WFS 2

2023-02-17 Thread Gordon Luckett
Hi All,
has anyone used WFS 2 with MGOS 4?

would it be feasible to tweak the
1.1.0.xml.awd to 2.0.xml.awd to make that happen?

I wanted to share a layer with arcgis.com from MGOS but I got the
"Unsupported WFS version 1.1.0. Supported version: 2.0.0" only..


[image: image.png]
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] north rotation

2023-02-13 Thread Gordon Luckett
If you use the react viewer, you can access the openlayers rotation:

https://openlayers.org/en/latest/examples/rotation.html


On Mon., Feb. 13, 2023, 9:36 a.m. Jonathan Rizzo,  wrote:

> Is there a way to pre-set the north rotation for a map, like you would set
> the initial zoom, so that when the map loads, north is some direction other
> than straight up?  If not, is this something that can make its way in to a
> future version?  The flexibility of not only allowing the user to spin a
> map, but also to pre-set this rotation on the initial load would be of
> great benefit to us.
>
>
>
> Regards,
>
>
>
> Jon
> This message may contain confidential, proprietary, or privileged
> information. Confidentiality or privilege is not intended to be waived or
> lost by erroneous transmission of this message. If you receive this message
> in error, please notify the sender immediately by return email and delete
> this message from your system. Disclosure, use, distribution, or copying of
> a message or any of its attachments by anyone other than the intended
> recipient is strictly prohibited.
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] GetFeatureKML & GETLayerKML

2023-02-02 Thread Gordon Luckett
I prefer to use the mapguide-rest tool to pull KML.
https://github.com/jumpinjackie/mapguide-rest

You have more control and can render other types as well (i.e. geojson)


On Thu, Feb 2, 2023 at 2:40 AM Hadis Alinia  wrote:

> Hi,
>
> I want to export the layers based on their layer definition to KML/KMZ.
> Using GetLayerKml I can download the layers. In this case, I can see the
> features in the KML but the properties and attributes of the features are
> not included. Even I used Getfeaturekml but it returns an empty KML file
> with no feature.
>
> Searching in the previous questions/answers about this I couldn't find the
> solution. I found this URL
> http://data.mapguide.com/mapguide/DynamicKml/GoogleEarth.php but it's not
> opening.
> Do you have some sample codes or applications with the source code that
> shows how to do it?
>
> Thank you
>
> Regards,
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] QuiqePlot Mapguide-react is Not working - mg.v.3.1.1.4601

2023-01-30 Thread Gordon Luckett
If you are using iis, try increasing the request size limits from the
defaults .


On Mon., Jan. 30, 2023, 1:36 a.m. Nimrod Cnaan,  wrote:

> We have tried to pull every trick
> 
>  (trik2 ) in the book
> with no success.
>
> Regards
> Nimrod C.
> --
>
> בכבוד רב,
>
> *נמרוד כנען**   |   *גיאומינד שירותי GIS  –  פיתוח,  ייעוץ  ושירותי ענן
> ישיר: 048101268 | נייד: 0525355483 | nim...@geomind.co.il
>
> נא בקרו באתר החדש שלנו http://geomind.co.il
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] fusion error in google chrome

2022-10-05 Thread Gordon Luckett
Something has recently changed in the past month or so with the Google API.

I have changed all my links to Google to use the XYZ version:
https://mt0.google.com/vt/lyrs=m&hl=en&x=${x}&y=${y}&z=${z}

You should still have an API Key (or at least pay for the licence) as it is
required by the TOS

On Wed, Oct 5, 2022 at 2:04 PM Hadis Alinia  wrote:

> Hi,
>
> I am using MapGuide version 3.1.2 and when I add the commercial layers my
> application doesn't open in google chrome but works fine with other
> browsers like Microsoft Edge. When I try to open it in Google Chrome, I get
> the following errors "Cannot read properties of undefined (reading
> 'width')
>
> Stack Trace:
>
>  - ? at /mapguide/fusion/lib/fusionSF-compressed.js (line: 57)
>  - ? at https://maps.googleapis.com/maps-api-v3/api/js/50/7a/util.js (line: 
> 328)
>  - ? at https://maps.googleapis.com/maps-api-v3/api/js/50/7a/util.js (line: 
> 21)
>
>  - ? at  /mapguide/fusion/lib/fusionSF-compressed.js (line: 55)"
>
> I even changed fusionSF-compressed.js to fusionSF.js still doesn't work.
>
> The MapGuide version 2 was working with commercial layers.
>
> What is the reason and what changes need to be made?
>
> Thank you
> Hadis
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Raster Layer background transparency

2022-10-04 Thread Gordon Luckett
I am pretty sure only Bi-Tonal Images are supported with the Transparency.

On Mon, Oct 3, 2022 at 4:35 PM  wrote:

> Hi,
>
>
>
> Maestro 6.0m11 at the Advanced Settings of the Raster Layer, enabling the
> Advanced Settings and choosing the Transparency Color really works ?
>
> I tried with no lucky. I used a PNG image.
>
>
>
> Then I made the image background transparent using GDAL and the image did
> not show in the Maestro preview. The image is ok using photoshop.
>
>
>
> Regards,
>
>
>
> Liglio
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Google street view fail (not able to transform the map to EPSG:4326)

2022-09-30 Thread Gordon Luckett
Ensure you have assigned a coordinate system to your data (data sources).
If you change your coordinate system of the map, all the layers should
re-project if MapGuide knows what coordinate system the layers are in.

Once you solve this problem, I would then check the Street View with the
LL84 map (4326).



On Thu, Sep 29, 2022 at 1:09 PM Hadis Alinia 
wrote:

> Hi Gordon,
>
> Thank you for your email. By changing the main map to LL84, my layers
> disappears from the maps view and I can't see any of my maps and even the
> basemaps.
> The projection that I am currently using and working well to display all
> the layers is:
>
> "PROJCS["WGS84.PseudoMercator",GEOGCS["LL84",DATUM["WGS84",SPHEROID["WGS84",6378137.000,298.25722293]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Popular
> Visualisation Pseudo
> Mercator"],PARAMETER["false_easting",0.000],PARAMETER["false_northing",0.000],PARAMETER["central_meridian",0.00],UNIT["Meter",1.00]]"
>
> Is it something that I need to change in Google Street viewer.js?
>
> Hadis
>
>
>
>
> On Thu, Sep 29, 2022 at 5:34 AM Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> If you set your main map to LL84, does Google Street view work?
>>
>> On Wed., Sep. 28, 2022, 1:39 p.m. Hadis Alinia, 
>> wrote:
>>
>>> Hi,
>>>
>>> I am trying to have google street view on my fusion map. I added the
>>> widget and I can see the icon added to my webpage and also turned on the
>>> google street base map.
>>> But when I click on the "Google Street View" icon I get the following
>>> error: "The CS of current map can not be transformed to EPSG: 2346". The
>>> coordinate system of my map to overlay the layers is WGS84.PseudoMercator
>>> as was mentioned in the instruction.
>>>
>>> I hope you can help me to fix this problem.
>>>
>>> Thank you
>>> Hadis
>>>
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Google street view fail (not able to transform the map to EPSG:4326)

2022-09-29 Thread Gordon Luckett
If you set your main map to LL84, does Google Street view work?

On Wed., Sep. 28, 2022, 1:39 p.m. Hadis Alinia, 
wrote:

> Hi,
>
> I am trying to have google street view on my fusion map. I added the
> widget and I can see the icon added to my webpage and also turned on the
> google street base map.
> But when I click on the "Google Street View" icon I get the following
> error: "The CS of current map can not be transformed to EPSG: 2346". The
> coordinate system of my map to overlay the layers is WGS84.PseudoMercator
> as was mentioned in the instruction.
>
> I hope you can help me to fix this problem.
>
> Thank you
> Hadis
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] RES: How to display PNG images

2022-09-27 Thread Gordon Luckett
Most images in MapGuide require a georeferencing file or World file.

For JPG you may have to create a JPW
(check out this
https://iric-gui-user-manual.readthedocs.io/en/latest/06/09_georef.html or
google JPG world files)

The json should be enough to create the file.


On Tue, Sep 27, 2022 at 10:01 AM  wrote:

> Hi Gordon,
>
>
>
> I want to display the image on my map, it´s a rain area image. You can
> download the image using the link
> https://estatico-redemet.decea.mil.br/radar/2022/09/25/mi/maxcappi/maps/2022-09-25--18:46:27.png
> .
>
> The images are provided using an API, that returns a json with information
> about the image: coordinates, link to download, etc. I provided an example
> of the json return.
>
> I have to create a feature source and a layer to display this image, but I
> don’t know what type of feature source to use, or type of layer.
>
>
>
> Regards,
>
>
>
> Liglio
>
>
>
> *De:* mapguide-users  *Em nome de
> *Gordon Luckett
> *Enviada em:* terça-feira, 27 de setembro de 2022 09:12
> *Para:* MapGuide Users Mail List 
> *Assunto:* Re: [mapguide-users] How to display PNG images
>
>
>
> What is the source of the image?
>
> Where did it come from?
>
>
>
> Do you want it to appear as a tooltip or is it geo-coded?
>
>
>
> where did the metadata come from?
>
>
>
>
>
>
>
>
>
> On Mon, Sep 26, 2022 at 4:35 PM  wrote:
>
> Hi,
>
>
>
> I got an image (PNG) to display on map, but I don’t know how to do it.
> What feature source and layer types to select ?
>
> I got these information returned from a API Json.
>
>
>
> "lat_center": "-28.128373",
>
> "lon_center": "-49.471816",
>
> "lon_min": "-53.6805",
>
> "lon_max": "-45.2529",
>
> "lat_min": "-31.758",
>
> "lat_max": "-24.462",
>
> "path": "
> https://estatico-redemet.decea.mil.br/radar/2022/09/25/mi/maxcappi/maps/2022-09-25--18:46:27.png
> ",
>
> "size": 20184,
>
> "date": "2022-09-25 18:46:27"
>
>
>
> Thanks,
>
>
>
> Liglio
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] How to display PNG images

2022-09-27 Thread Gordon Luckett
What is the source of the image?
Where did it come from?

Do you want it to appear as a tooltip or is it geo-coded?

where did the metadata come from?




On Mon, Sep 26, 2022 at 4:35 PM  wrote:

> Hi,
>
>
>
> I got an image (PNG) to display on map, but I don’t know how to do it.
> What feature source and layer types to select ?
>
> I got these information returned from a API Json.
>
>
>
> "lat_center": "-28.128373",
>
> "lon_center": "-49.471816",
>
> "lon_min": "-53.6805",
>
> "lon_max": "-45.2529",
>
> "lat_min": "-31.758",
>
> "lat_max": "-24.462",
>
> "path": "
> https://estatico-redemet.decea.mil.br/radar/2022/09/25/mi/maxcappi/maps/2022-09-25--18:46:27.png
> ",
>
> "size": 20184,
>
> "date": "2022-09-25 18:46:27"
>
>
>
> Thanks,
>
>
>
> Liglio
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] FDO website

2022-09-17 Thread Gordon Luckett
Thanks Pierre
I've reached out to Tom.
Waiting to hear back..

On Sat., Sep. 17, 2022, 5:58 p.m. ,  wrote:

> Hi Gordon,
>
>
>
>
>
> Can you give a try with https://www.osgeo.org/member/tom-kralidis/ ? Canadian
> in Toronto, speaking french, english,...
>
>
>
> Regards
>
>
>
> Pierre
>
>
>
> (second invoice, problem with mailman ☹)
>
>
>
>
>
>
>
> *De :* mapguide-users  *De la
> part de* Gordon Luckett
> *Envoyé :* 17 septembre 2022 08:39
> *À :* MapGuide Users Mail List 
> *Objet :* Re: [mapguide-users] FDO website
>
>
>
> Oh dear.
>
> I'll look into it.  Does anyone have a contact at osgeo.org?
>
>
>
> On Fri., Sep. 16, 2022, 8:05 p.m. Pierre Cardinal, <
> pierre.cardi...@sympatico.ca> wrote:
>
> Hi,
>
>
>
> The website fdo.osgeo.org is not working anymore. Who should we advise?
>
>
>
> Thank you
>
>
>
> Regards
>
>
>
>
>
> Pierre
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] FDO website

2022-09-17 Thread Gordon Luckett
Oh dear.
I'll look into it.  Does anyone have a contact at osgeo.org?


On Fri., Sep. 16, 2022, 8:05 p.m. Pierre Cardinal, <
pierre.cardi...@sympatico.ca> wrote:

> Hi,
>
> The website fdo.osgeo.org is not working anymore. Who should we advise?
>
> Thank you
>
> Regards
>
>
> Pierre
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MGOS 4.0 and REST

2022-08-05 Thread Gordon Luckett
Ah. I used 2019..

On Fri., Aug. 5, 2022, 2:06 p.m. Pierre Cardinal, <
pierre.cardi...@sympatico.ca> wrote:

> Hi again Gordon,
>
> You rebuilt mgos 4 preview 3 with witch VS (2015, 2017 or 2019) ?
>
> Thanks
>
> Pierre
>
>  Message d'origine 
> De : Gordon Luckett 
> Date : 2022-08-04 19 h 02 (GMT-05:00)
> À : MapGuide Users Mail List 
> Objet : Re: [mapguide-users] MGOS 4.0 and REST
>
> mapguide-rest source, with composer.
>
> On Thu, Aug 4, 2022 at 6:14 PM Pierre Cardinal <
> pierre.cardi...@sympatico.ca> wrote:
>
>> Hi Gordon,
>>
>> For mapguide-rest, are you using the package mapguide-rest-1.0-rc5.zip or
>> the source code with Composer?
>>
>> Regards,
>>
>> Pierre
>>
>>  Message d'origine 
>> De : Gordon Luckett 
>> Date : 22-08-04 04 h 48 (GMT-05:00)
>> À : MapGuide Users Mail List 
>> Objet : Re: [mapguide-users] MGOS 4.0 and REST
>>
>> I rebuilt for the mgos 4 preview 3 and it was successful running
>> MapGuide-rest.
>> I use the MapGuide-rest project for 90% off my MapGuide implementations.
>>
>>
>> On Tue., Aug. 2, 2022, 2:28 p.m. ,  wrote:
>>
>>> Hi Jackie,
>>>
>>>
>>>
>>> What can it be ?
>>>
>>>
>>>
>>>
>>>
>>> MGOS 4.0 from last release with IIS under Server2012 R2
>>>
>>> MGOS 4.0 from build with IIS under Win10
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> When I tried to use mapguide-REST with
>>> http://localhost/mapguide/rest/index.php, I have the following message :
>>>
>>>
>>>
>>>
>>> 404 Page Not Found
>>>
>>> The page you are looking for could not be found. Check the address bar
>>> to ensure your URL is spelled correctly. If all else fails, you can visit
>>> our home page at the link below.
>>>
>>> Visit the Home Page <http://localhost/mapguide/rest/index.php/>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> And in the VS Code debugger  I have the exception Slim\Exception\Stop
>>> (line 1020 in Slim.php)
>>>
>>>
>>>
>>>
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MGOS 4.0 and REST

2022-08-04 Thread Gordon Luckett
mapguide-rest source, with composer.

On Thu, Aug 4, 2022 at 6:14 PM Pierre Cardinal 
wrote:

> Hi Gordon,
>
> For mapguide-rest, are you using the package mapguide-rest-1.0-rc5.zip or
> the source code with Composer?
>
> Regards,
>
> Pierre
>
>  Message d'origine 
> De : Gordon Luckett 
> Date : 22-08-04 04 h 48 (GMT-05:00)
> À : MapGuide Users Mail List 
> Objet : Re: [mapguide-users] MGOS 4.0 and REST
>
> I rebuilt for the mgos 4 preview 3 and it was successful running
> MapGuide-rest.
> I use the MapGuide-rest project for 90% off my MapGuide implementations.
>
>
> On Tue., Aug. 2, 2022, 2:28 p.m. ,  wrote:
>
>> Hi Jackie,
>>
>>
>>
>> What can it be ?
>>
>>
>>
>>
>>
>> MGOS 4.0 from last release with IIS under Server2012 R2
>>
>> MGOS 4.0 from build with IIS under Win10
>>
>>
>>
>>
>>
>>
>>
>> When I tried to use mapguide-REST with
>> http://localhost/mapguide/rest/index.php, I have the following message :
>>
>>
>>
>>
>> 404 Page Not Found
>>
>> The page you are looking for could not be found. Check the address bar to
>> ensure your URL is spelled correctly. If all else fails, you can visit our
>> home page at the link below.
>>
>> Visit the Home Page <http://localhost/mapguide/rest/index.php/>
>>
>>
>>
>>
>>
>>
>>
>> And in the VS Code debugger  I have the exception Slim\Exception\Stop
>> (line 1020 in Slim.php)
>>
>>
>>
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] PHP Error in Mapguide server

2022-08-04 Thread Gordon Luckett
Check your layer names and folder names. Try replacing all spaces and
symbols with letters and underscores.
Also, to find the problem layer, make a copy of your map and remove layers
until the error no longer exists.. This may solve the osm map.  Check your
over view map to for problem layers.

On Wed., Aug. 3, 2022, 11:26 p.m. Hadis Alinia, 
wrote:

> Hi,
>
> Mapguide server was working well until yesterday. Today I get an error
> message for all the tasks under the "task list" in the fusion. This error
> relates to the PHP.
>
> By clicking any of the tasks buttons I get  "PHP Warning:
> session_start(): Cannot start session with empty session ID in C:\Program
> Files\OSGeo\MapGuide\Web\www\fusion\layers\MapGuide\php\Common.php on line
> 96"
> also "500 internal server error, there is a problem with the resource you
> are looking for, and it can not be displayed"
>
> The other issue I have is that the OpenStreetMap doesn't show up and I get
> "net::ERR_CERT_COMMON_NAME_INVALID"
>
> Hadis
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MGOS 4.0 and REST

2022-08-04 Thread Gordon Luckett
I rebuilt for the mgos 4 preview 3 and it was successful running
MapGuide-rest.
I use the MapGuide-rest project for 90% off my MapGuide implementations.


On Tue., Aug. 2, 2022, 2:28 p.m. ,  wrote:

> Hi Jackie,
>
>
>
> What can it be ?
>
>
>
>
>
> MGOS 4.0 from last release with IIS under Server2012 R2
>
> MGOS 4.0 from build with IIS under Win10
>
>
>
>
>
>
>
> When I tried to use mapguide-REST with
> http://localhost/mapguide/rest/index.php, I have the following message :
>
>
>
>
> 404 Page Not Found
>
> The page you are looking for could not be found. Check the address bar to
> ensure your URL is spelled correctly. If all else fails, you can visit our
> home page at the link below.
>
> Visit the Home Page 
>
>
>
>
>
>
>
> And in the VS Code debugger  I have the exception Slim\Exception\Stop
> (line 1020 in Slim.php)
>
>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mgos

2022-06-02 Thread Gordon Luckett
Hi Jackie
I agree wholeheartedly.  The next app should just be a live conduit to the
existing lists.osgeo.org, not a replacement.



On Thu, Jun 2, 2022 at 4:20 AM Jackie Ng  wrote:

> I have not looked into discourse, but if it replaces the mailing list
> itself as the *definitive source of truth* for all MapGuide discussions and
> is not just an alternative "frontend" to read/write posts to this mailing
> list (like nabble before it) then it's a hard -1 from me on adopting
> discourse.
>
> Or to put it another way, even with Discourse in place, I'd like to still
> be able to post to the mailing list with my regular email client (which I
> have now gotten used to). I'd like to also browse archived and *up-do-date*
> discussions through:
>
>- https://lists.osgeo.org/pipermail/mapguide-users
>- Or more web-friendly mirrors like:
>https://www.mail-archive.com/mapguide-users@lists.osgeo.org/
>
> If discourse breaks all of that because it's the new central silo for
> MapGuide discussions, then that's a hard no from me.
>
> - Jackie
>
> You wrote:
>
> Ok, I'll reach out to Jorge Sanz from OSGEO to see what the process would
>
> be to redirect or import the lists.osgeo.org to something like Discourse..
>
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mgos

2022-05-31 Thread Gordon Luckett
Ok, I'll reach out to Jorge Sanz from OSGEO to see what the process would
be to redirect or import the lists.osgeo.org to something like Discourse..



On Tue., May 31, 2022, 5:31 a.m. Jackie Ng,  wrote:

> Sorry, I have no knowledge of who to contact at osgeo regarding management
> of this mailing list.
>
> You wrote:
>
> No, but maybe Jackie?
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mgos

2022-05-30 Thread Gordon Luckett
No, but maybe Jackie?


On Mon, May 30, 2022 at 3:03 PM Pierre Cardinal <
pierre.cardi...@sympatico.ca> wrote:

> Hi Gordon,
>
>
>
> Thank you for your message, these old pages are still useful. By the way,
> do you know the name of someone at OSGEO who I can email regarding the
> implantation of Discourse in place of Nabble ?
>
>
>
> Regards,
>
>
>
> Pierre
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Fwd: download kml and upload kml in fusion

2022-05-30 Thread Gordon Luckett
For KML, you might have to do a number of things:

1. Add KML to your IIS Mime Type (i.e. ."kml" / "application/vnd" )
2. Add the KML Type to OpenLayers (2.13.1)
https://cdnjs.cloudflare.com/ajax/libs/openlayers/*2.13.1*/lib/OpenLayers/Format/KML.js
because this format is not bundled with the MapGuide 3.1.2 or 4 versions



for example, I added this to my maroon index.templ


%__SCRIPTS__%
*https://cdnjs.cloudflare.com/ajax/libs/openlayers/2.13.1/lib/OpenLayers/Format/KML.js</a>
<<a  rel="nofollow" href="https://cdnjs.cloudflare.com/ajax/libs/openlayers/2.13.1/lib/OpenLayers/Format/KML.js">https://cdnjs.cloudflare.com/ajax/libs/openlayers/2.13.1/lib/OpenLayers/Format/KML.js</a>>">*



 then added the following code to the "initPanelHandler" function:

var layer = new OpenLayers.Layer.Vector("KML", {
strategies: [new OpenLayers.Strategy.Fixed()],
protocol: new OpenLayers.Protocol.HTTP({
url: "kml/lines.kml",
format: new OpenLayers.Format.KML({
extractStyles: true,
extractAttributes: true,
maxDepth: 2
})
})
});
Fusion.getMapById('Map').oMapOL.addLayer(layer);

and I had success adding KML to my Maroon Template...





On Mon, May 30, 2022 at 9:33 AM Hadis Alinia 
wrote:

> Does anyone have any idea why I can't see my kml file? Do you have any
> sample code that works for you?
>
> -- Forwarded message -
> From: Hadis Alinia 
> Date: Thu, May 26, 2022 at 9:27 AM
> Subject: Re: [mapguide-users] download kml and upload kml in fusion
> To: MapGuide Users Mail List 
>
>
> Hi Gordon,
>
> I am trying to script to upload a kml from local folder to my map. (I want
> the user to select the file from their local folder and be able to overlay
> (temporary) on the other exiting maps)
> I placed a kml sample into my template folder and added a script to task
> pane as follows : I don't receive any error, but I can't see my map. I am
> not sure what is the issue?
>
>
> var source = new Proj4js.Proj('EPSG:4326');
> Proj4js.defs["EPSG:3857"]="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0
> +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"
> var dest = new Proj4js.Proj('EPSG:3857');
>
> var geocoder = new google.maps.Geocoder();
>
> function display_kmlmap()
> {
>
> var map = parent.Fusion.getWidgetById('Map');
> var olMap = map.oMapOL;
>
>
> var kmlmap = new parent.OpenLayers.Layer.vector("KML", "KML/sample.kml", {
>format: parent.OpenLayers.Format.KML,
>projection:  new parent.OpenLayers.Projection('EPSG:3857'),
>formatOptions: {
>'extractStyles': true,
>'extractAttributes': true
>},
>visible: true
> });
>
> olMap.addLayers(kmlmap);
>
> 
>
>
> 
>
> 
>
>
>
> On Wed, May 18, 2022 at 11:48 AM Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> Ajax (Basic Web Layout) does not support KML - the Fusion (Flexible Web
>> Layout/Web Application) uses OpenLayers 2.13 and this does support KML
>> parsing etc.
>>
>>
>>
>>
>>
>> On Tue, May 17, 2022 at 7:07 PM Hadis Alinia 
>> wrote:
>>
>>> Hi,
>>>
>>> I need to enable the user of my webmap application built by Mapguide to
>>> overlay their kml layers in ajax view or convert CSVs with lat and lon to a
>>> point data and then can download their points data as kml. Or select a
>>> feature of the uploaded layer and download it as a kml. Is that even
>>> possible in mapguide? I can't find an example searching on google.
>>> Please advise
>>>
>>> Thank you
>>> HA
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] test

2022-05-30 Thread Gordon Luckett
Confirmed

On Mon., May 30, 2022, 1:55 p.m. Pierre Cardinal, <
pierre.cardi...@sympatico.ca> wrote:

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


Re: [mapguide-users] HTTP with MGOS3.1

2022-05-28 Thread Gordon Luckett
You may have to add another too.
Check out this older page:
https://trac.osgeo.org/mapguide/wiki/ConfigureGuide24Windows


On Sat., May 28, 2022, 9:01 a.m. ,  wrote:

> Solution: In the «manual » installation  process, it is necessary to add
> the handler “isapi_MapAgent.dll”  for “mapagent.fcgi” in the mapagent
> application
>
>
>
> *De :* mapguide-users  *De la
> part de* pierre.cardi...@sympatico.ca
> *Envoyé :* 27 mai 2022 15:59
> *À :* mapguide-users@lists.osgeo.org
> *Objet :* [mapguide-users] HTTP with MGOS3.1
>
>
>
> Hi,
>
> Build 3.1.0, PHP php-5.6.40-Win32-VC11-x64, IIS
>
> Server installation with .\build64.bat -o=d:\mgos31 -a=install -w=server
>
> MgServer is running.
>
> Web installation with .\build64.bat -o=d:\mgos31 -a=install -w=web
>
> I am using FastCGI for the PHP requests with php-cgi.exe.
>
> MapGuide Extensions enabled in php.ini.
>
> PHP Is responding well,  mapadmin is ok, but  
> http://localhost/mapguide/mapagent/mapagent.fcgi
>  produces a
> 404.3  error. The problem is with the StaticFileModule
>
> (ex. In Coordinate System : GetBaseLibrary with HTTP is not OK, but
> GetBaseLibrary with PHP is OK)
>
>
>
> Any idea in the room ?
>
>
>
> Pierre
>
>
>
>
>
>
>
>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Forum Hosting

2022-05-25 Thread Gordon Luckett
I have looked into Discourse a little bit and it looks like it might have
nabble import tools which might save some of the past discussions (although
they are archived in the mailman).

Not sure why there is no reply in mailman... I primarily just use email.


On Sat, May 21, 2022 at 9:13 AM  wrote:

> Hi Gordon,
>
>
>
> It is a free solution as long as we (OSGEO) run the application. If OSGEO
> is running MAILMAN it would be possible to run DISCOURSE also. The pricing
> is when Discourse run on their server (Discourse’s server).
>
>
>
> Also can you explain me how to show,   in my message , the previous
> message. I don’t have a reply button in the mailman page.
>
>
>
> Pierre
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Forum Hosting

2022-05-21 Thread Gordon Luckett
Yes it looks like a good solution.
How would the funding work, since it's not a free application?


On Fri., May 20, 2022, 7:09 p.m. ,  wrote:

>
>
> “Discourse” seems to be a solution.
>
> https://www.discourse.org/
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] 'orderBy=' implemented in MapGuide-Rest?

2022-05-20 Thread Gordon Luckett
Exactly, I am trying to sort the _many template...

https://mapguide.ca/mapguide/rest/data/property/.html?orderBy=*RPROPAD*



On Fri, May 20, 2022 at 5:16 AM Jackie Ng  wrote:

> Hi Gordon,
>
> A check of the base MgRestAdapter source that drives all the templates
> shows that it does check and apply ordering if you provide orderby in the
> query string, assumed to be a comma-separated list of feature property
> names:
>
> Ref:
> https://github.com/jumpinjackie/mapguide-rest/blob/master/app/adapters/restadapter.php#L188
>
> Though if you're trying to govern default sorting from *within* your _many
> template, that probably isn't implemented.
>
> - Jackie
>
> You wrote:
>
> Has the orderBy= parameter been implemented in MapGuide Rest project?
>
> Love to sort the _many.html template...
>
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Forum Hosting

2022-05-20 Thread Gordon Luckett
Good question Pierre, do you have a suggestion for an alternative to Nabble?

On Fri, May 20, 2022 at 10:27 AM  wrote:

> To all mapguide-users
>
>
>
> The loss of Nabble makes the use of MGOS less interesting because
> "MapGuide Users Mail List" is not user-friendly for finding information.
> Why is it "impossible" to find another provider that would be secure and
> provide us with the same functionality as Nabble? Does MGOS still have a
> future? ☹
>
>
>
>
>
> Pierre Cardinal
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] WFS Select Within MGOS 3.1.2

2022-05-20 Thread Gordon Luckett
Yes, it's one mapguide server with an FDO connection to another mapguide
server with WFS.
I will try to sniff out the request.

On Fri., May 20, 2022, 5:26 a.m. Jackie Ng,  wrote:

> I may have interpreted your original email wrong.
>
> Are you getting a 413 from a MapGuide-hosted WFS layer (ie. A feature
> source with WFS publishing metadata applied), or is the 413 coming from a
> feature query to a feature source that uses the WFS FDO provider (ie.
> MapGuide *is not* the WFS server)?
>
> Because if it's the latter (a feature source using the WFS FDO provider)
> then the 413 error looks like a problem from the WFS service you're
> contacting and that's beyond our control at that point.
>
> My original reply assumed the former, but the stack trace you posted
> assumes the latter.
>
> If it is indeed the latter, perhaps hook up fiddler or any other HTTP
> traffic interception software and see what the actual WFS requests being
> made are that is triggering a HTTP 413 response.
>
> - Jackie
>
> You wrote:
>
> Thanks Jackie,
>
> Yes, both the WFS (MapGuide) server's IIS is set to max sizes for Request
>
> parameters and POST/GET requests.
>
> The Select Within in Fusion calls:
>
> GetParent().Fusion.xml2json(callback, r);
>
> which causes the error
>
> *Exception: An exception occurred in FDO component. Error occurred in
>
> Feature Source (Library://WFS/SANDBOX_WFS.FeatureSource): Unexpected error
>
> encountered while accessing the server. (Cause: The requested URL returned
>
> error: '413 Request entity too large: request URL path too large'. , Root
>
> Cause: The requested URL returned error: '413 Request entity too large:
>
> request URL path too large'. ) -
>
> MgRenderingServiceHandler.ProcessOperation() line 83 file
>
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\RenderingServiceHandler.cpp
>
> - MgOpQueryFeatures.Execute() line 125 file
>
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\OpQueryFeatures.cpp
>
> - MgServerRenderingService.QueryFeatures() line 1093 file
>
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\ServerRenderingService.cpp
>
> - MgServerRenderingService.RenderForSelection() line 1823 file
>
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\ServerRenderingService.cpp
>
> - MgServerFeatureService.SelectFeatures() line 451 file
>
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\feature\ServerFeatureService.cpp
>
> - MgServerSelectFeatures.SelectFeatures() line 331 file
>
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\feature\ServerSelectFeatures.cpp*
>
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] download kml and upload kml in fusion

2022-05-19 Thread Gordon Luckett
Which one are you trying?
I usually try one like:
http://wms.ess-ws.nrcan.gc.ca/wms/toporama_en?VERSION=1.1.1&request=GetCapabilities&service=wms

or any one you like...which one are you using?


On Thu, May 19, 2022 at 1:03 PM Hadis Alinia 
wrote:

> Sorry I think I am doing something wrong. What URL should I use?
>
> On Thu, May 19, 2022 at 10:55 AM Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> What is the URL of the WMS?
>>
>> On Thu, May 19, 2022 at 10:54 AM Hadis Alinia 
>> wrote:
>>
>>> component://AddWMSLayer and I can see it in web\www\fusion\widgets
>>> folder.
>>>
>>> On Thu, May 19, 2022 at 7:18 AM Gordon Luckett <
>>> gordon.luck...@arrowgeomatics.com> wrote:
>>>
>>>> Can you send the WMS url you are trying?
>>>>
>>>> On Thu., May 19, 2022, 12:52 a.m. Hadis Alinia, <
>>>> hadissaali...@gmail.com> wrote:
>>>>
>>>>> Thank you Gordon!
>>>>> I came a cross with Mapguide-react-layout that has the Add/manage
>>>>> layer component. I know I should add the widget as an invoke URL. In the
>>>>> widgets I can see see "add WMSlayer" and I tested to add WMS but doesn't
>>>>> work. I am using mapguide V.3.1.2.9484. I don't see that componnet in my
>>>>> widget list. Should I do anything to add this widget? Is it the same as
>>>>> openlayers 2.13 that you referenced?
>>>>> Under option> Editor I see mapguide layout react URL. Is this the one
>>>>> I need to make a change to? What is that URL?
>>>>>
>>>>> Thank you
>>>>> HA
>>>>>
>>>>>
>>>>>
>>>>> On Wed, May 18, 2022 at 11:48 AM Gordon Luckett <
>>>>> gordon.luck...@arrowgeomatics.com> wrote:
>>>>>
>>>>>> Ajax (Basic Web Layout) does not support KML - the Fusion (Flexible
>>>>>> Web Layout/Web Application) uses OpenLayers 2.13 and this does support 
>>>>>> KML
>>>>>> parsing etc.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Tue, May 17, 2022 at 7:07 PM Hadis Alinia 
>>>>>> wrote:
>>>>>>
>>>>>>> Hi,
>>>>>>>
>>>>>>> I need to enable the user of my webmap application built by Mapguide
>>>>>>> to overlay their kml layers in ajax view or convert CSVs with lat and 
>>>>>>> lon
>>>>>>> to a point data and then can download their points data as kml. Or 
>>>>>>> select a
>>>>>>> feature of the uploaded layer and download it as a kml. Is that even
>>>>>>> possible in mapguide? I can't find an example searching on google.
>>>>>>> Please advise
>>>>>>>
>>>>>>> Thank you
>>>>>>> HA
>>>>>>> ___
>>>>>>> mapguide-users mailing list
>>>>>>> mapguide-users@lists.osgeo.org
>>>>>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>>>>>
>>>>>> ___
>>>>>> mapguide-users mailing list
>>>>>> mapguide-users@lists.osgeo.org
>>>>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>>>>
>>>>> ___
>>>>> mapguide-users mailing list
>>>>> mapguide-users@lists.osgeo.org
>>>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>>>
>>>> ___
>>>> mapguide-users mailing list
>>>> mapguide-users@lists.osgeo.org
>>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>>
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] download kml and upload kml in fusion

2022-05-19 Thread Gordon Luckett
What is the URL of the WMS?

On Thu, May 19, 2022 at 10:54 AM Hadis Alinia 
wrote:

> component://AddWMSLayer and I can see it in web\www\fusion\widgets folder.
>
> On Thu, May 19, 2022 at 7:18 AM Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> Can you send the WMS url you are trying?
>>
>> On Thu., May 19, 2022, 12:52 a.m. Hadis Alinia, 
>> wrote:
>>
>>> Thank you Gordon!
>>> I came a cross with Mapguide-react-layout that has the Add/manage layer
>>> component. I know I should add the widget as an invoke URL. In the widgets
>>> I can see see "add WMSlayer" and I tested to add WMS but doesn't work. I am
>>> using mapguide V.3.1.2.9484. I don't see that componnet in my widget list.
>>> Should I do anything to add this widget? Is it the same as openlayers 2.13
>>> that you referenced?
>>> Under option> Editor I see mapguide layout react URL. Is this the one I
>>> need to make a change to? What is that URL?
>>>
>>> Thank you
>>> HA
>>>
>>>
>>>
>>> On Wed, May 18, 2022 at 11:48 AM Gordon Luckett <
>>> gordon.luck...@arrowgeomatics.com> wrote:
>>>
>>>> Ajax (Basic Web Layout) does not support KML - the Fusion (Flexible Web
>>>> Layout/Web Application) uses OpenLayers 2.13 and this does support KML
>>>> parsing etc.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> On Tue, May 17, 2022 at 7:07 PM Hadis Alinia 
>>>> wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> I need to enable the user of my webmap application built by Mapguide
>>>>> to overlay their kml layers in ajax view or convert CSVs with lat and lon
>>>>> to a point data and then can download their points data as kml. Or select 
>>>>> a
>>>>> feature of the uploaded layer and download it as a kml. Is that even
>>>>> possible in mapguide? I can't find an example searching on google.
>>>>> Please advise
>>>>>
>>>>> Thank you
>>>>> HA
>>>>> ___
>>>>> mapguide-users mailing list
>>>>> mapguide-users@lists.osgeo.org
>>>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>>>
>>>> ___
>>>> mapguide-users mailing list
>>>> mapguide-users@lists.osgeo.org
>>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>>
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] download kml and upload kml in fusion

2022-05-19 Thread Gordon Luckett
Can you send the WMS url you are trying?

On Thu., May 19, 2022, 12:52 a.m. Hadis Alinia, 
wrote:

> Thank you Gordon!
> I came a cross with Mapguide-react-layout that has the Add/manage layer
> component. I know I should add the widget as an invoke URL. In the widgets
> I can see see "add WMSlayer" and I tested to add WMS but doesn't work. I am
> using mapguide V.3.1.2.9484. I don't see that componnet in my widget list.
> Should I do anything to add this widget? Is it the same as openlayers 2.13
> that you referenced?
> Under option> Editor I see mapguide layout react URL. Is this the one I
> need to make a change to? What is that URL?
>
> Thank you
> HA
>
>
>
> On Wed, May 18, 2022 at 11:48 AM Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> Ajax (Basic Web Layout) does not support KML - the Fusion (Flexible Web
>> Layout/Web Application) uses OpenLayers 2.13 and this does support KML
>> parsing etc.
>>
>>
>>
>>
>>
>> On Tue, May 17, 2022 at 7:07 PM Hadis Alinia 
>> wrote:
>>
>>> Hi,
>>>
>>> I need to enable the user of my webmap application built by Mapguide to
>>> overlay their kml layers in ajax view or convert CSVs with lat and lon to a
>>> point data and then can download their points data as kml. Or select a
>>> feature of the uploaded layer and download it as a kml. Is that even
>>> possible in mapguide? I can't find an example searching on google.
>>> Please advise
>>>
>>> Thank you
>>> HA
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] download kml and upload kml in fusion

2022-05-18 Thread Gordon Luckett
Ajax (Basic Web Layout) does not support KML - the Fusion (Flexible Web
Layout/Web Application) uses OpenLayers 2.13 and this does support KML
parsing etc.





On Tue, May 17, 2022 at 7:07 PM Hadis Alinia 
wrote:

> Hi,
>
> I need to enable the user of my webmap application built by Mapguide to
> overlay their kml layers in ajax view or convert CSVs with lat and lon to a
> point data and then can download their points data as kml. Or select a
> feature of the uploaded layer and download it as a kml. Is that even
> possible in mapguide? I can't find an example searching on google.
> Please advise
>
> Thank you
> HA
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] WFS Select Within MGOS 3.1.2

2022-05-17 Thread Gordon Luckett
Thanks Jackie,
Yes, both the WFS (MapGuide) server's IIS is set to max sizes for Request
parameters and POST/GET requests.

The Select Within in Fusion calls:
GetParent().Fusion.xml2json(callback, r);

which causes the error
*Exception: An exception occurred in FDO component. Error occurred in
Feature Source (Library://WFS/SANDBOX_WFS.FeatureSource): Unexpected error
encountered while accessing the server. (Cause: The requested URL returned
error: '413 Request entity too large: request URL path too large'. , Root
Cause: The requested URL returned error: '413 Request entity too large:
request URL path too large'. ) -
MgRenderingServiceHandler.ProcessOperation() line 83 file
c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\RenderingServiceHandler.cpp
- MgOpQueryFeatures.Execute() line 125 file
c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\OpQueryFeatures.cpp
- MgServerRenderingService.QueryFeatures() line 1093 file
c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\ServerRenderingService.cpp
- MgServerRenderingService.RenderForSelection() line 1823 file
c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\rendering\ServerRenderingService.cpp
- MgServerFeatureService.SelectFeatures() line 451 file
c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\feature\ServerFeatureService.cpp
- MgServerSelectFeatures.SelectFeatures() line 331 file
c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\feature\ServerSelectFeatures.cpp*




On Wed, May 11, 2022 at 8:31 AM Jackie Ng  wrote:

> Hi Gordon,
>
> A 413 error is most likely being thrown at the IIS/Apache web server
> level. I know IIS has things like 30MB payload limits for POST requests.
> There's probably a similar restriction on URL length.
>
> Failing that, try using POST instead of GET for the WFS select within if
> it's possible as for POST all request parameters will be in the submitted
> body and not specified in the URL.
>
> - Jackie
>
> You wrote:
>
> Hi All,
>
> has anyone had any success with "select-within" selecting WFS generated
>
> layers?
>
> Currently getting a '413 Request entity too large: request URL path too
>
> large' with only my layers coming from WFS.
>
> Trying to figure out if it's a bug or my setup.
>
> thanks
>
> gordon
>
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] 'orderBy=' implemented in MapGuide-Rest?

2022-05-13 Thread Gordon Luckett
Has the orderBy= parameter been implemented in MapGuide Rest project?

Love to sort the _many.html template...
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] WFS Select Within MGOS 3.1.2

2022-05-05 Thread Gordon Luckett
Hi All,
has anyone had any success with "select-within" selecting WFS generated
layers?

Currently getting a '413 Request entity too large: request URL path too
large' with only my layers coming from WFS.

Trying to figure out if it's a bug or my setup.

thanks
gordon
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] 2022 Test Email

2022-02-15 Thread Gordon Luckett
Test email to MapGuide User List
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Mapguide 2.5.2

2021-12-22 Thread Gordon Luckett
With MapGuide 2.5.2
Only the basemaps need to be tweaked.

For example, in the xml of the flexible web layout, make sure Google, Bing
or OpenStreetMap JS has https in front


On Wed., Dec. 22, 2021, 8:49 a.m. Scott Hameister, <
sco...@mpowerinnovations.com> wrote:

> IIS
>
> On Wed, Dec 22, 2021, 6:40 AM Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> Are you using Apache or IIS?
>> Most of the SSL changes are tweaked within the base-mapping.
>>
>> On Wed., Dec. 22, 2021, 12:56 a.m. Scott Hameister, <
>> sco...@mpowerinnovations.com> wrote:
>>
>>> Have someone on mapguide 2.5.2, does it support TLS 1.2 as the only TLS?
>>> I thought I saw a patch but I can't find it anywhere. The mapping data is
>>> MS SQL spatial.
>>>
>>> They are on this version for Sid/ecw support.
>>>
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Mapguide 2.5.2

2021-12-22 Thread Gordon Luckett
Are you using Apache or IIS?
Most of the SSL changes are tweaked within the base-mapping.

On Wed., Dec. 22, 2021, 12:56 a.m. Scott Hameister, <
sco...@mpowerinnovations.com> wrote:

> Have someone on mapguide 2.5.2, does it support TLS 1.2 as the only TLS? I
> thought I saw a patch but I can't find it anywhere. The mapping data is MS
> SQL spatial.
>
> They are on this version for Sid/ecw support.
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Log4J Unauthenticated RCE CVE-2021-44228 Vulnerability

2021-12-14 Thread Gordon Luckett
Thanks for sharing that Jackie.

There are a lot of panicked ESRI users who aren't as lucky as MapGuide
users over the Log4j issue.


On Tue., Dec. 14, 2021, 7:59 p.m. Jackie Ng,  wrote:

> The Tomcat that is bundled with MapGuide does not use log4j (there are no
> log4j jar files installed). You would only be potentially affected if your
> MapGuide Java application itself brings in the log4j dependency.
>
> - Jackie
>
> You wrote:
>
> Has anyone done any studies if Mapguide is affected by this problem?
> Thanks in advance
>
> Leonardo
>
> 
> *Leonardo Bressan*
> Settore tecnico
> leonardo.bres...@abitat.it
> +39 348 2343422 | skype: leonardo.bressanabitat
> www.abitat.it
>
> *Abitat SIT Srl*
> Pojana Maggiore (VI), Via Roma 5 - 36026 | Ufficio: 0444 794127 | Fax:
> 0444 898220
>
> SIAMO CONTRARI ALLO SPAM.
> In ogni momento l’interessato, destinatario del messaggio, può consultare
> la nostra informativa policy privacy contenuta in questo link
> 
> Questo messaggio e ogni eventuale allegato sono confidenziali e destinati
> all'uso esclusivo del destinatario.
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] php vresion

2021-11-23 Thread Gordon Luckett
PHP 5.6 currently with MapGuide 3.1.2.



‪On Tue, Nov 23, 2021 at 3:31 PM ‫יובל קימל‬‎  wrote:‬

> hello everyone.
>
> I am consudering upgrading from mg2.6 to mg3.1.2.
>
> What version of php does mg 3.1.2 is using.
>
> Thanks for the answer
>
> Yuval
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Connect locally

2021-10-25 Thread Gordon Luckett
Perhaps it would be easiest just to install MapGuide Server on your own PC?
And then connect to it with Maestro?


On Mon, Oct 25, 2021 at 2:38 PM Amila Bajic  wrote:

> I want to create some test database for my own research but I can't create
> it when I'm connected to these two servers. I connected locally when I was
> watching your tutorials on Lynda platform, but now I don't have access to
> it.
> I have MapGuide Maestro release 6.0m10. It is on my computer.
>
> On Mon, 25 Oct 2021 at 15:28, Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> wrote:
>
>> Why do you want to connect locally?
>>
>> Do you have mg-desktop installed?
>>
>> Or do you have MapGuide Server installed on your own PC?
>>
>>
>>
>> On Mon, Oct 25, 2021 at 2:17 PM Amila Bajic 
>> wrote:
>>
>>> Hi!
>>>
>>> I would like to connect locally on MapGuide Maestro, but I'm not able to
>>> do that. Also I'm already working  on two servers for my job (if it
>>> matters) and can't choose the option Connect locally. I tried to
>>> uninstall/install MapGuide Maestro, but it's still the same. Does anyone
>>> know how to do this?
>>>
>>> Thank you,
>>> AmIla
>>> [image: image.png]
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Connect locally

2021-10-25 Thread Gordon Luckett
Why do you want to connect locally?

Do you have mg-desktop installed?

Or do you have MapGuide Server installed on your own PC?



On Mon, Oct 25, 2021 at 2:17 PM Amila Bajic  wrote:

> Hi!
>
> I would like to connect locally on MapGuide Maestro, but I'm not able to
> do that. Also I'm already working  on two servers for my job (if it
> matters) and can't choose the option Connect locally. I tried to
> uninstall/install MapGuide Maestro, but it's still the same. Does anyone
> know how to do this?
>
> Thank you,
> AmIla
> [image: image.png]
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] CPU 100%

2021-10-12 Thread Gordon Luckett
Are you using WIndows or Linux?

If windows, in IIS I sometimes disable 'Rapid Fail Protection' for the
MapGuide Application Pool




On Tue, Oct 12, 2021 at 4:51 PM Jérôme DUCKERS 
wrote:

> Hi Gordon,
>
> Thanks for your response.
> I'm just using "SDF" files and WMS.
>
> Jérôme.
>
> Le mar. 12 oct. 2021 à 16:30, Gordon Luckett <
> gordon.luck...@arrowgeomatics.com> a écrit :
>
>> Do you happen to have SHPFILES?  Check the IDX files and make sure they
>> do not have 0 bytes.
>>
>> If so, what is happening is that MapGuide is creating an index, but the
>> legend refers to a value in the theme that may not exist.  For example, if
>> you colour-code your parcels by a column called Zoning and you have A11
>> zone, but that doesn't exist in the data, you may get a 0 byte idx file.
>>
>> Just a shot in the dark.
>>
>>
>>
>> On Tue, Oct 12, 2021 at 1:50 PM Jérôme DUCKERS 
>> wrote:
>>
>>> Hi Guys,
>>> Since 1 month ago, we have had a problem with our mapguide process
>>> (AIMS2017).
>>> The CPU is always growing to 100%.
>>>
>>> Has anyone already encountered the issue ?
>>> I don't know how to investigate this.
>>>
>>> Thanks,
>>> Jérôme.
>>> ___
>>> mapguide-users mailing list
>>> mapguide-users@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] CPU 100%

2021-10-12 Thread Gordon Luckett
Do you happen to have SHPFILES?  Check the IDX files and make sure they do
not have 0 bytes.

If so, what is happening is that MapGuide is creating an index, but the
legend refers to a value in the theme that may not exist.  For example, if
you colour-code your parcels by a column called Zoning and you have A11
zone, but that doesn't exist in the data, you may get a 0 byte idx file.

Just a shot in the dark.



On Tue, Oct 12, 2021 at 1:50 PM Jérôme DUCKERS 
wrote:

> Hi Guys,
> Since 1 month ago, we have had a problem with our mapguide process
> (AIMS2017).
> The CPU is always growing to 100%.
>
> Has anyone already encountered the issue ?
> I don't know how to investigate this.
>
> Thanks,
> Jérôme.
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] sqlserver view is no limit row search STSrid ?

2021-09-10 Thread Gordon Luckett
Hi Jackie,
I just wanted to confirm that the build works great and the speed at
getting the STSrid in SQL Server is very fast now.



On Thu, Sep 9, 2021 at 11:12 AM Jackie Ng  wrote:

> Please try the following patched SQL Server provider
>
>
> https://download.osgeo.org/mapguide/patches/SQLServerProvider_Ticket996_FDO4.1/SQLServerProvider_Ticket996.zip
>
> Extract and overwrite your copy in your MGOS 3.1.2 install
>
> - Jackie
>
> You wrote:
>
> thanks for open active ticket
>
> https://trac.osgeo.org/fdo/ticket/996
>
>  I found mysql is fix by Jan 7, 2020
>
> https://trac.osgeo.org/fdo/ticket/893#comment:5
>
> https://trac.osgeo.org/fdo/attachment/ticket/893/LimitOneSrid.patch
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] sqlserver view is no limit row search STSrid ?

2021-09-08 Thread Gordon Luckett
All Products that use FDO for SQL Server have this problem.  It was never
fixed in the FDO library.

MapGuide, Infraworks, AutoCAD Map etc all use the FDO provider and this
runs a full select on every table and view just to get the STSrid for each
one.



On Wed, Sep 8, 2021 at 8:49 AM 周宜和  wrote:

> Hi,
>
>  I got cpu busy with sqlserver,
>
> My Web Server is mapguide 3.1.2,
>
> Target layer is 15 thousand address point of view,
>
> Then i find source code when table select top 1,but view is no limit row 
> search STSrid.
>
> when layer preview from view , effect sqlserver cpu high loading.
>
>
>
> Source code below,or open url
>
>
>
> FdoStringP sqlStmt = *FdoStringP*::Format(
>
> isview ? L"select [%ls].STSrid as srid from %ls.%ls" :
> L"select top 1 [%ls].STSrid as srid from %ls.%ls",
>
> (FdoString*) columnName,
>
> (FdoString*) this->GetDbName(),
>
> (FdoString*) fmtObjectName
>
> );
>
>
>
> https://trac.osgeo.org/fdo/browser/trunk/Providers/GenericRdbms/Src/SQLServerSpatial/SchemaMgr/Ph/Owner.cpp#L414
>
>
>
> and mysql has limit 1 for search STSrid
>
>
>
> FdoStringP sqlStmt = *FdoStringP*::Format(
>
> L"select ST_SRID(%ls) as srid from %ls limit 1", (FdoString*)this->
> GetDbName(), (FdoString*)dbObject->GetDbName());
>
>
>
>
>
>
> https://trac.osgeo.org/fdo/browser/trunk/Providers/GenericRdbms/Src/MySQL/SchemaMgr/Ph/ColumnGeom.cpp#L29
>
>
>
>
>
> sorry for my bad engilsh
>
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] OGR FDO

2021-07-19 Thread Gordon Luckett
Hi All,
I haven't used it much, but has anyone used the alternative connections in
the OGR connector?

For example, getting ESRI rest JSON using ORGINFO:
*ogrinfo -ro -al
"http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Hydrography/Watershed173811/FeatureServer/0/query?where=objectid+%3D+objectid&outfields=*&f=json
"*

 I would like to see if anyone has done this with the FDO connector?
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] React Layout - set layer visibility

2021-07-05 Thread Gordon Luckett
Normally I would call the server side request to toggle the layer
visibility with a javascript ajax call
 and then just use javascript to refresh the map without reloading the page.



On Mon, Jul 5, 2021 at 4:47 PM Svlad  wrote:

> Hi, how can I programmatically change the visibility of a layer?
> I modified and saved the map on server side but the viewer allways sends
> "hidelayers= layerid" in the request.
> Is it possible top change the visibility on the client side?
> Thanks svlad
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Does mapguide support rasters stored in Postgis

2021-06-23 Thread Gordon Luckett
You just need to match the GDAL compatible with the current version of MGOS
you are using.  For example, with MGOS 4 - preview 3 it uses GDAL 2.4.4



On Wed, Jun 23, 2021 at 3:43 PM Diego Ordonez 
wrote:

> Thanks for your prompt reply Jackie
>
>
>
> What versions of MG will work with your suggested approach ? does it work
> also in LINUX Ubuntu 16.06 MG4 ?
>
>
>
> *From:* mapguide-users  *On
> Behalf Of *Jackie Ng
> *Sent:* Wednesday, June 23, 2021 9:26 AM
> *To:* mapguide-users@lists.osgeo.org
> *Subject:* Re: [mapguide-users] Does mapguide support rasters stored in
> Postgis
>
>
>
> Hi Diego,
>
>
>
> Your best bet is to use the PostGISRaster driver in GDAL (
> https://gdal.org/drivers/raster/postgisraster.html).
>
>
>
> This implies that you'll have to replace the GDAL dll that comes with the
> MapGuide installation with one from gisinternals.com which is of the same
> GDAL version and is built with the same MSVC compile that we use to build
> MapGuide and FDO.
>
>
>
> Most raster format support questions can be boiled down to: Is there a
> GDAL driver for it? Then just use the GDAL FDO provider (swapping out
> MapGuide's GDAL dll with a fuller-featured copy elsewhere if necessary)
>
>
>
> - Jackie
>
>
>
> You wrote:
>
> Does mapguide support rasters stored in Postgis ?
>
> Any plans to implement it ?
>
> Thank you
>
> Diego
>
>
>
> --
>
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] TIF Raster - Transparent Background

2021-06-23 Thread Gordon Luckett
Yes.  Basically modify the image permanently.

On Wed, Jun 23, 2021 at 3:45 PM Diego Ordonez 
wrote:

> Thanks Gordon.
>
>
>
> If I understand correctly, I apply that filter in QGIS prior to loading
> the image into MapGuide ?
>
>
>
> *From:* mapguide-users  *On
> Behalf Of *Gordon Luckett
> *Sent:* Wednesday, June 23, 2021 4:25 AM
> *To:* MapGuide Users Mail List 
> *Subject:* Re: [mapguide-users] TIF Raster - Transparent Background
>
>
>
> The Near Black in QGIS might help:
>
>
>
>
> https://gis.stackexchange.com/questions/234590/qgis-raster-layer-black-rectangle-appears-as-background
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] TIF Raster - Transparent Background

2021-06-23 Thread Gordon Luckett
The Near Black in QGIS might help:
[image: image.png]

https://gis.stackexchange.com/questions/234590/qgis-raster-layer-black-rectangle-appears-as-background
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] [mapguide-internals] MapGuide Open Source 4.0 Preview 3 available

2021-06-19 Thread Gordon Luckett
Great work Jackie!


On Sat, Jun 19, 2021 at 6:29 PM Jackie Ng  wrote:

> Hi All,
>
> I've finally put up the 3rd preview release of MapGuide Open Source 4.0
>
> https://trac.osgeo.org/mapguide/wiki/Release/4.0.0/Preview3/Notes
>
> This release is for *testing purposes* and use in a production environment
> is not encouraged.
>
> Among other items that you can find out in the release notes, the Preview 3
> release finally restores Java support on Linux that was broken from the
> previous preview release. One important note for our Linux users is that
> our Linux build of MapGuide is still only targeting Ubuntu 16.04 LTS
> 64-bit.
>
> I will be taking a short break from all things open source after this
> release to mentally recharge.
>
> - Jackie
> ___
> mapguide-internals mailing list
> mapguide-intern...@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-internals
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Tooltip - Expression Editor - IF THEN

2021-06-03 Thread Gordon Luckett
Perhaps it's not matching?
Try the TRIM() function?

On Thu, Jun 3, 2021, 4:59 PM Diego Ordonez  wrote:

> Hello All
>
> I have a question that in theory should be fairly easy, but I'm having
> trouble
>
> Trying to show a tooltip based on the value of an attribute (From
> Postgresql 12 - Mapguide 4.0 Ubuntu 16.04)
>
> The name of the column is estado, it has two values "Encendida" (ON) or
> "Apagada" (OFF)
>
>
> *'Estado: ' , estado, '', *
> *IF ("estado" = 'Encendida', 'ON', 'OFF'),*
>
>
> The first line works with no issue, showing the right "estado" (status).
>
> What is the syntax to write in the ToolTip Expression Editor ? The second
> line
>
> I've tried different ways but it always shows OFF even if the LAMP is on
> in the database.
>
> Thanks in advance for your help
>
> Diego
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MapGuide-Rest GeoJSON Adaptor in RC 5

2021-05-24 Thread Gordon Luckett
Thanks Jackie,
I installed mapguide-rest from source and it works great with MapGuide 4.0
R2



On Mon, May 24, 2021 at 10:00 AM Jackie Ng  wrote:

> This is due to the PHP MgGeoJsonWriter class in mapguide-rest now
> colliding with the C++ class of the same name introduced in the MapGuide
> 4.0 API (I am assuming you are using MGOS 4.0). There is already a fix for
> this, but it is not in the rc5 package, which pre-dates a lot of the 4.0
> development work.
>
> Until I revisit mapguide-rest after the 4.0 vanilla SWIG binding work,
> you'll have to "install from source" to get this fix. Clone the latest
> master commit of mapguide-rest and install all required dependencies with
> PHP composer.
>
> Hope this helps.
>
> - Jackie
>
> You wrote:
>
> I am getting the following error for the GeoJSON Adaptor in mapguide-rest
>
> PHP Fatal error:  Cannot redeclare class MgGeoJsonWriter in C:\Program
>
> Files\OSGeo\MapGuide\Web\www\rest\app\util\geojsonwriter.php on line
>
> 21
>
> The registration.php is using require_once, so I don't know why the error
>
> is coming up...
>
>
> --
> http://themapguyde.blogspot.com
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] MapGuide-Rest GeoJSON Adaptor in RC 5

2021-05-22 Thread Gordon Luckett
I am getting the following error for the GeoJSON Adaptor in mapguide-rest


PHP Fatal error:  Cannot redeclare class MgGeoJsonWriter in C:\Program
Files\OSGeo\MapGuide\Web\www\rest\app\util\geojsonwriter.php on line
21


The registration.php is using require_once, so I don't know why the error
is coming up...
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Fdo Provider PostGreSql 12

2021-05-17 Thread Gordon Luckett
Are you trying to look at a view?
It looks like one of the tables on the view is not accessable to the login
user..

On Mon, May 17, 2021, 9:14 PM Diego Ordonez  wrote:

> Hello there
>
> I have MapGUIDE 3.1.2 on *Centos 6 x64*
>
> Everything seems to work properly, except connecting a layer to Postgresql
> 12
>
> How do I set up FDO 4.1 properly ?
>
>
> *RDBMS: [PGRES_FATAL_ERROR] ERROR:  column d.adsrc does not exist*
> *LINE 1: ...name AS table_name, c.attname AS name, 1 AS type, d.adsrc
> as...*
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Fwd: Authentication causing mapagenturl error

2021-05-06 Thread Gordon Luckett
How are you opening the URL?

Are you launching from Maestro?

Are you opening from URL?

What is the URL?


On Thu, May 6, 2021 at 7:56 PM Kajar Kuldsepp 
wrote:

> Hi!
>
> Does somebody have experience same issue, or know how to fix it?
>
> Kajar
>
> -- Forwarded message -
> From: Kajar Kuldsepp 
> Date: Mon, 12 Apr 2021 at 11:06
> Subject: Authentication causing mapagenturl error
> To: 
>
>
> Hi!
>
> I enabled authentication for Mapguide 3.1.2, fusion layout.
> Last time I tried it was before 3 and then I got it working, but now I
> will get error:
> Error Details:
> Uncaught ReferenceError: mapAgentUrl is not defined
> Stack Trace:
>  - ? at http://server_name:8008/mapguide/fusion/lib/fusionSF-compressed.js
> (line: 51)
>
> Can someone know how to modify this line 51 in fusionSF-compressed.js, to
> get rid of this error?
>
> Kajar
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MapGuideOS - PostGIS FDO Problem

2021-05-06 Thread Gordon Luckett
I am curious if the user you are logging in with has access to all views,
tables, materialized views and objects in the database?  That might cause
issues if it only has access to a sub-set.

On Thu, May 6, 2021 at 4:31 PM  wrote:

> I have also written the contents of the VM from the materialised view into
> a table. The errors have remained and the unstable connection to the
> MapGuide OS also.
>
>
> *Gesendet:* Donnerstag, 06. Mai 2021 um 17:02 Uhr
> *Von:* "Gordon Luckett" 
> *An:* "MapGuide Users Mail List" 
> *Betreff:* Re: [mapguide-users] MapGuideOS - PostGIS FDO Problem
> I have seen something similar if the database Schema changes.  For
> example, if new tables or views appear.  The schema definition is cached so
> it is no longer valid.
>
>
>
> On Thu, May 6, 2021 at 3:26 PM  wrote:
>
>> Hello,
>>
>> I have registered here to get rid of a problem or a few questions.
>> When I google through the net, I often only find old information about
>> tickets for MapGuideOS. Like here:
>> https://trac.osgeo.org/mapguide/report/1
>> Maybe I'm looking in the wrong place.
>> My problem: I have an installation of MapGuideOS 3.1.2.9484 and a
>> PostgreSQL12.6 database. There I have a query (materialized view) running
>> over the ogr_fdw to a MSSQL database. This works fine, but the
>> MapGuide-PostGIS connection does not seem to be stable. Every morning I
>> have to retype the password of the feature source in the Meastro and save
>> the feature source so that the objects are displayed again.
>> At night, the MV is always called up via a
>>
>> REFRESH MATERIALIZED VIEW CONCURRENTLY mv_baugenehm;
>>
>> updated. Nothing more happens.
>> In the mapguideOS log I get the following messages, which also come in
>> throughout the day:
>>
>> <2021-05-06T07:41:02> 6860Anonymous
>>  Error: Failed to stylize layer: Po_V_BAUMASSN
>> An exception occurred in FDO component.
>> Error occurred in Feature Source
>> (Library://Verwaltung/ProsozBau/Prosozbau.FeatureSource): Class
>> 'public:v_baugenehm' not found  (Cause: , Root Cause: Class
>> 'public:v_baugenehm' not found )
>>  StackTrace:
>>   - MgMappingUtil.StylizeLayers() line 899 file
>> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\mapping\MappingUtil.cpp
>>
>> <2021-05-06T07:41:02> 5888Anonymous
>>  Error: Failed to stylize layer: Po_V_BAUMASSN
>> An exception occurred in FDO component.
>> Error occurred in Feature Source
>> (Library://Verwaltung/ProsozBau/Prosozbau.FeatureSource): Class
>> 'public:v_baugenehm' not found  (Cause: , Root Cause: Class
>> 'public:v_baugenehm' not found )
>>  StackTrace:
>>   - MgMappingUtil.StylizeLayers() line 899 file
>> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\mapping\MappingUtil.cpp
>>
>> Here I have also described the issue once (German only):
>> https://www.pg-forum.de/t/postgresql-postgis-und-mapguide-os/12208
>>
>> Any Ideas? Thanks
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
> ___ mapguide-users mailing
> list mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MapGuideOS - PostGIS FDO Problem

2021-05-06 Thread Gordon Luckett
I have seen something similar if the database Schema changes.  For example,
if new tables or views appear.  The schema definition is cached so it is no
longer valid.


On Thu, May 6, 2021 at 3:26 PM  wrote:

> Hello,
>
> I have registered here to get rid of a problem or a few questions.
> When I google through the net, I often only find old information about
> tickets for MapGuideOS. Like here:
> https://trac.osgeo.org/mapguide/report/1
> Maybe I'm looking in the wrong place.
> My problem: I have an installation of MapGuideOS 3.1.2.9484 and a
> PostgreSQL12.6 database. There I have a query (materialized view) running
> over the ogr_fdw to a MSSQL database. This works fine, but the
> MapGuide-PostGIS connection does not seem to be stable. Every morning I
> have to retype the password of the feature source in the Meastro and save
> the feature source so that the objects are displayed again.
> At night, the MV is always called up via a
>
> REFRESH MATERIALIZED VIEW CONCURRENTLY mv_baugenehm;
>
> updated. Nothing more happens.
> In the mapguideOS log I get the following messages, which also come in
> throughout the day:
>
> <2021-05-06T07:41:02> 6860Anonymous
>  Error: Failed to stylize layer: Po_V_BAUMASSN
> An exception occurred in FDO component.
> Error occurred in Feature Source
> (Library://Verwaltung/ProsozBau/Prosozbau.FeatureSource): Class
> 'public:v_baugenehm' not found  (Cause: , Root Cause: Class
> 'public:v_baugenehm' not found )
>  StackTrace:
>   - MgMappingUtil.StylizeLayers() line 899 file
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\mapping\MappingUtil.cpp
>
> <2021-05-06T07:41:02> 5888Anonymous
>  Error: Failed to stylize layer: Po_V_BAUMASSN
> An exception occurred in FDO component.
> Error occurred in Feature Source
> (Library://Verwaltung/ProsozBau/Prosozbau.FeatureSource): Class
> 'public:v_baugenehm' not found  (Cause: , Root Cause: Class
> 'public:v_baugenehm' not found )
>  StackTrace:
>   - MgMappingUtil.StylizeLayers() line 899 file
> c:\working\build_area\mapguide\3.1.2\x64\mgdev\server\src\services\mapping\MappingUtil.cpp
>
> Here I have also described the issue once (German only):
> https://www.pg-forum.de/t/postgresql-postgis-und-mapguide-os/12208
>
> Any Ideas? Thanks
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MapGuide 3.1.2 and cloud connections

2021-05-06 Thread Gordon Luckett
If you can connect to Azure with your desktop or any other client, you
should have no trouble with MapGuide.  It uses the same ports.


On Thu, May 6, 2021 at 3:35 PM David Bowen  wrote:

> I've been asked if it would be possible to move our databases to the
> cloud. No platform has been chosen, however, it would likely be either
> Microsoft Azure or Amazon Web Services. Does anyone know if it is possible
> to connect MapGuide 3.1.2 to a cloud platform database?
>
> I've come across Jackie's post regarding Azure PaaS (
> https://www.mail-archive.com/mapguide-users@lists.osgeo.org/msg26602.html),
> however we're on MapGuide 3.1.2 so not sure if that would be applicable.
> Will that solution be included in the official release of MapGuide 4.0, or
> could it be applied to MapGuide 3.1.2?
>
> Apologies for not being able to provide more details regarding the cloud
> environment; this is a high-level question that was brought up.
>
> Thanks,
>
> David
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Creating Symbol Library containing a PNG icon

2021-04-29 Thread Gordon Luckett
Maestro 6m10?

I had no trouble with your images
[image: image.png]
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Creating Symbol Library containing a PNG icon

2021-04-29 Thread Gordon Luckett
> A couple of things to watch for:

1. Make sure in the symbol definition, you have a Define Point Usage
Control checked and at a minimum, set the Angle Control  ('FromAngle')
2. Preview to ensure the symbol appears.
3. When adding the symbol in the Composite Point definition in the Layer,
make sure to get rid of the default Square as well.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Creating Symbol Library containing a PNG icon

2021-04-29 Thread Gordon Luckett
Here is an example of a PNG inside of a point symbol.  This is an
independent symbol definition.



On Wed, Apr 28, 2021 at 8:50 PM Diego Ordonez 
wrote:

> Hello.
>
> I'm trying to use a PNG as a symbol for public lights
> Does anyone have an example of the XML Symbol Library to contain PNG files
> ?
>
> I've tried with symbol definitions but they don't appear when trying to
> choose the icon from the Layer Definition, it seems layers can only consume
> Symbol Lribraries not Symbol Definitions
>
> Thanks
>
> Diego
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>

http://www.w3.org/2001/XMLSchema-instance"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xsi:noNamespaceSchemaLocation="SymbolDefinition-2.4.0.xsd" version="2.4.0">
  Traffic Light
  Traffic Light Image
  

  iVBORw0KGgoNSUhEUgAAACAgCAMAAABEpIrGAAADAFBMVEUBAAD//8z//5n//2b//zP//wD/zP//zMz/zJn/zGb/zDP/zAD/mf//mcz/mZn/mWb/mTP/mQD/Zv//Zsz/Zpn/Zmb/ZjP/ZgD/M///M8z/M5n/M2b/MzP/MwD/AP//AMz/AJn/AGb/ADP/AADM///M/8zM/5nM/2bM/zPM/wDMzP/MzMzMzJnMzGbMzDPMzADMmf/MmczMmZnMmWbMmTPMmQDMZv/MZszMZpnMZmbMZjPMZgDMM//MM8zMM5nMM2bMMzPMMwDMAP/MAMzMAJnMAGbMADPMAACZ//+Z/8yZ/5mZ/2aZ/zOZ/wCZzP+ZzMyZzJmZzGaZzDOZzACZmf+ZmcyZmZmZmWaZmTOZmQCZZv+ZZsyZZpmZZmaZZjOZZgCZM/+ZM8yZM5mZM2aZMzOZMwCZAP+ZAMyZAJmZAGaZADOZAABm//9m/8xm/5lm/2Zm/zNm/wBmzP9mzMxmzJlmzGZmzDNmzABmmf9mmcxmmZlmmWZmmTNmmQBmZv9mZsxmZplmZmZmZjNmZgBmM/9mM8xmM5lmM2ZmMzNmMwBmAP9mAMxmAJlmAGZmADNmAAAz//8z/8wz/5kz/2Yz/zMz/wAzzP8zzMwzzJkzzGYzzDMzzAAzmf8zmcwzmZkzmWYzmTMzmQAzZv8zZswzZpkzZmYzZjMzZgAzM/8zM8wzM5kzM2YzMzMzMwAzAP8zAMwzAJkzAGYzADMz//8A/8wA/5kA/2YA/zMA/wAAzP8AzMwAzJkAzGYAzDMAzAAAmf8AmcwAmZkAmWYAmTMAmQAAZv8AZswAZpkAZmYAZjMAZgAAM/8AM8wAM5kAM2YAMzMAMwAAAP8AAMwAAJkAAGYAADPuAADdAAC7AACqAACIAAB3AABVAABEAAAiAAAR7gAA3QAAuwAAqgAAiAAAdwAAVQAARAAAIgAAEQAAAO4AAN0AALsAAKoAAIgAAHcAAFUAAEQAACIAABHu7u7d3d27u7uIiIh3d3dEREQiIiIREREAAABXOATKAXRSTlMAQObYZgAAANlJREFUeNqdk80NwjAMhZ/FGtzZgG2yQVfoNLlxYhEkDgipiGN24FSFuml+nDhFoofW9fsqP78qhOLy4UFljyqx6ZOuZyEDdrkbLkNRAZ77Jn69llQCPMCyPuDqYk0ZSAaGN/BwwgbVek2ILUpA2cJkwBodSB50gHc7Ai6s+W8OkejlgDNus/wdJPUn8JGEyIH1SLRb/AQWYwnoBhU92G4OB2Du5lAF1eTQBKXlgBGXKb81OWC8A69JuBdbsL4SvTX3gW1CnKECex424gRIXZxkrzXFUQ+IbH0BCol0IWMmR2AASUVORK5CYII=
  5
  5

  
  
'FromAngle'
  
  
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] SQLite Failure with Empty Geometries

2021-04-28 Thread Gordon Luckett
Typically when there is a risk that the geometry column could be null (like
in most databases) I connect to a filtered view of the data rather than the
table itself.

Just for those cases where I can't enforce a non-null geometry (like a
trigger with x/y columns)


On Wed, Apr 28, 2021, 8:38 AM Kyel Shippey  wrote:

> Hello all,
>
>
>
> We recently experienced a vulnerability in MapGuide when encountering a
> feature selection that contains “empty” geometries in SQLite. We have not
> examined whether it occurs in other file or database formats as well. We
> are operating on MapGuide 3.1.2 in 64-bit Windows with FDO 4.1 with PHP
> scripting.
>
>
>
> Empty geometries seem to include WKT values such as:
>
> POINT()
>
> LINESTRING()
>
> POLYGON()
>
>
>
> When looping over an MgFeatureReader collection that contains a feature
> like this, the logic fails when merely attempting to access the affected
> feature, so there is no opportunity to detect and gracefully bypass it:
>
>
>
> while($features->ReadNext()) {
>
> // breaks down before anything can happen
>
> // if this current item has an “empty” geometry
>
> }
>
>
>
> On our system, the failure is repeatably complete and devastating,
> requiring a full server reset which often does not suffice without
> additional monkeying on the /Repositores/Library/ and /Repositories/Site/
> database files, suggesting that some file database corruption might occur
> with this event.
>
>
>
> For our purposes, we had success in sanitizing our SQLite files by first
> processing them through GeoJSON. From there, ogr2ogr can utilize the
> AsText() in its sqlite dialect query and prevent these known culprits from
> propagating into our SQLite files library. But the underlying vulnerability
> still exists, whether on the MapGuide internals side or just for the SQLite
> FDO provider.
>
>
>
> This seemed worth bringing to everyone’s attention for consideration on
> the compiled engine code. I can provide a sample SQLite file for
> investigation if you like.
>
>
>
>
>
> Thank you,
>
>
>
> Kyel Shippey
>
>
> 
>
> Top News - Sponsored By Newser
> 
>
>- *NY Post Reporter Who Wrote Fake 'Kam On In' Story Is Out*
>
>- *Autopsy: Andrew Brown Was Shot 5 Times*
>
>- *Appalachian Trail Killer Headed to Psych Facility*
>
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] GDAL for MGOS 4?

2021-04-17 Thread Gordon Luckett
Is the GDAL version for MGOS 4 still GDAL 2.2?
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Please clean up the Live Application Gallery

2021-04-13 Thread Gordon Luckett
The Gallery has been updated.

If anyone has a great  MapGuide project to share, please share!

http://mapguide.osgeo.org/livegallery.html



On Mon, Apr 12, 2021 at 7:02 PM Diego Ordonez 
wrote:

> Most of the links are out of date and no longer working
>
>
>
>
> http://mapguide.osgeo.org/livegallery.html
> Live Application Gallery | MapGuide Open Source
> 
> The San Francisco Urban Forest Mapping System was developed using a
> combination of open source and proprietary mapping technologies, with
> MapGuide Open Source forming the central element. By integrating their two
> data sets into one, BUF and FUF now have a vital, technology-based tool for
> tree maintenance and management, enabling urban forest managers to
> inventory and map existing, future and ...
> mapguide.osgeo.org
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Please clean up the Live Application Gallery

2021-04-12 Thread Gordon Luckett
I will update the links as soon as I have access.

On Mon, Apr 12, 2021 at 8:01 PM Diego Ordonez 
wrote:

> Hi Gordon
>
> No I don't have any link to share by now
>
> But it looks pretty bad all those unusable links, it will be better to put
> that page on maintenance for a while I guess
>
> Thanks for the follow-up
>
> --
> *From:* mapguide-users  on behalf
> of Gordon Luckett 
> *Sent:* April 12, 2021 14:28
> *To:* MapGuide Users Mail List 
> *Subject:* Re: [mapguide-users] Please clean up the Live Application
> Gallery
>
> Do you have any links you'd like to use?
>
> On Mon, Apr 12, 2021, 7:02 PM Diego Ordonez 
> wrote:
>
> Most of the links are out of date and no longer working
>
>
>
>
> http://mapguide.osgeo.org/livegallery.html
> Live Application Gallery | MapGuide Open Source
> <http://mapguide.osgeo.org/livegallery.html>
> The San Francisco Urban Forest Mapping System was developed using a
> combination of open source and proprietary mapping technologies, with
> MapGuide Open Source forming the central element. By integrating their two
> data sets into one, BUF and FUF now have a vital, technology-based tool for
> tree maintenance and management, enabling urban forest managers to
> inventory and map existing, future and ...
> mapguide.osgeo.org
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Please clean up the Live Application Gallery

2021-04-12 Thread Gordon Luckett
I would change it today, but I am not an admin on the wiki page.



On Mon, Apr 12, 2021 at 7:28 PM Gordon Luckett <
gordon.luck...@arrowgeomatics.com> wrote:

> Do you have any links you'd like to use?
>
> On Mon, Apr 12, 2021, 7:02 PM Diego Ordonez 
> wrote:
>
>> Most of the links are out of date and no longer working
>>
>>
>>
>>
>> http://mapguide.osgeo.org/livegallery.html
>> Live Application Gallery | MapGuide Open Source
>> <http://mapguide.osgeo.org/livegallery.html>
>> The San Francisco Urban Forest Mapping System was developed using a
>> combination of open source and proprietary mapping technologies, with
>> MapGuide Open Source forming the central element. By integrating their two
>> data sets into one, BUF and FUF now have a vital, technology-based tool for
>> tree maintenance and management, enabling urban forest managers to
>> inventory and map existing, future and ...
>> mapguide.osgeo.org
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Please clean up the Live Application Gallery

2021-04-12 Thread Gordon Luckett
Do you have any links you'd like to use?

On Mon, Apr 12, 2021, 7:02 PM Diego Ordonez  wrote:

> Most of the links are out of date and no longer working
>
>
>
>
> http://mapguide.osgeo.org/livegallery.html
> Live Application Gallery | MapGuide Open Source
> 
> The San Francisco Urban Forest Mapping System was developed using a
> combination of open source and proprietary mapping technologies, with
> MapGuide Open Source forming the central element. By integrating their two
> data sets into one, BUF and FUF now have a vital, technology-based tool for
> tree maintenance and management, enabling urban forest managers to
> inventory and map existing, future and ...
> mapguide.osgeo.org
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Authentication causing mapagenturl error

2021-04-12 Thread Gordon Luckett
Are you getting this error opening the url in the browser directly or are
you trying a Preview in Maestro?


On Mon, Apr 12, 2021 at 9:06 AM Kajar Kuldsepp 
wrote:

> Hi!
>
> I enabled authentication for Mapguide 3.1.2, fusion layout.
> Last time I tried it was before 3 and then I got it working, but now I
> will get error:
> Error Details:
> Uncaught ReferenceError: mapAgentUrl is not defined
> Stack Trace:
>  - ? at http://server_name:8008/mapguide/fusion/lib/fusionSF-compressed.js
> (line: 51)
>
> Can someone know how to modify this line 51 in fusionSF-compressed.js, to
> get rid of this error?
>
> Kajar
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Set Auto-refresh rate

2021-04-09 Thread Gordon Luckett
No, not really.
I've done that by adding a layer with the OpenLayers API, where I used
javascript to refresh the layer.

You can try that.

Have a look at this thread:
https://lists.osgeo.org/pipermail/mapguide-users/2008-June/012771.html



On Fri, Apr 9, 2021, 10:04 PM Diego Ordonez  wrote:

> Hello all
>
> Is there any out of the box functionality to autorefresh the web layout ?
> (FUSION)
>
> Working on a project for vehicle tracking showing the last position of
> trucks, just need to autorefresh the map let's say every 5 minutes
>
> Thanks in advance
>
> Diego
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Fwd: Mapguide discussion group

2021-04-06 Thread Gordon Luckett
Check out the mailing archive for lost postings;

https://www.mail-archive.com/mapguide-users@lists.osgeo.org/


On Tue, Apr 6, 2021, 10:11 PM  wrote:

> This is really sad because all the information in the postings wiped out.
>
> Am 06.04.21 um 22:58 schrieb Gordon Luckett
>
> Von: "Gordon Luckett" 
> Datum: 6. April 2021
> An: "MapGuide Users Mail List" 
> Cc:
> Betreff: Re: [mapguide-users] Fwd: Mapguide discussion group
> The discussion group has moved to email over security concerns with Nabble.
>
> Post here if you have any questions.
>
>
> On Tue, Apr 6, 2021, 9:02 PM Kajar Kuldsepp 
> wrote:
>
>> Does anybody know something about this subject?
>>
>> -- Forwarded message -
>> From: Kajar Kuldsepp 
>> Date: Wed, 31 Mar 2021 at 15:56
>> Subject: Mapguide discussion group
>> To: 
>>
>>
>> Hi!
>>
>> As I undesrtand Mapguide discussions(Mapguide users and internal ) are
>> stopped in Nabble, where is the new place?
>>
>> Br,
>>
>> Kajar
>>
>> ___
>> mapguide-users mailing list
>> mapguide-users@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>>
> ___ mapguide-users mailing
> list mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Fwd: Mapguide discussion group

2021-04-06 Thread Gordon Luckett
The discussion group has moved to email over security concerns with Nabble.

Post here if you have any questions.


On Tue, Apr 6, 2021, 9:02 PM Kajar Kuldsepp 
wrote:

> Does anybody know something about this subject?
>
> -- Forwarded message -
> From: Kajar Kuldsepp 
> Date: Wed, 31 Mar 2021 at 15:56
> Subject: Mapguide discussion group
> To: 
>
>
> Hi!
>
> As I undesrtand Mapguide discussions(Mapguide users and internal ) are
> stopped in Nabble, where is the new place?
>
> Br,
>
> Kajar
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] MapGuide 3.1.2 and Oracle 19

2021-04-01 Thread Gordon Luckett
I can confirm I have connected MapGuide 3.1.2 to Oracle 19 with spatial
data.


On Thu, Apr 1, 2021 at 2:15 PM David Bowen  wrote:

> My I.T. department is scheduling Oracle upgrades and there are concerns
> that MapGuide won't be compatible with the new version. Does anyone know if
> MapGuide will be compatible with Oracle 19?
>
> The current setup is MapGuide 3.1.2 connecting to Oracle  12.1.0.2.0 -
> 64 bit.
>
> Thanks!
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Mapguide discussion group

2021-03-31 Thread Gordon Luckett
Hi Kajar,
it was decided to strictly use the email as the forum.

thanks
gordon


On Wed, Mar 31, 2021 at 1:57 PM Kajar Kuldsepp 
wrote:

> Hi!
>
> As I undesrtand Mapguide discussions(Mapguide users and internal ) are
> stopped in Nabble, where is the new place?
>
> Br,
>
> Kajar
>
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Fwd: MapGuide 4 and Linux

2021-03-19 Thread Gordon Luckett
That's great Jackie.
Ubuntu 16 is a good choice and used by quite a few organizations.

I'll try out the docker and try the install when available.




On Fri, Mar 19, 2021, 11:50 AM Jackie Ng  wrote:

> As it currently stands, we are only targeting Ubuntu 16.04 64-bit.
>
> The main reason for this is that currently MapGuide will not fully build
> on Ubuntu 18.04 (and likely newer versions) due to our bundled version of
> PHP (5.6) requiring OpenSSL <= 1.1.0, which is not not possible on this
> distro
>
> Ubuntu 18.04 provides OpenSSL 1.1.0
> Ubuntu 18.04 also provides OpenSSL 1.0, but this cannot be installed
> side-by-side with the default 1.1.0 package. The 1.1.0 package is also a
> dependency of several build packages.
>
> Of course, PHP 5.6 is already getting the axe and being replaced by PHP 7
> anyways with the ongoing vanilla SWIG binding work so we may (and most
> likely will) bump up the version of Ubuntu to target once the work is
> completed.
>
> I will be putting out a new MapGuide 4.0 preview release in the next few
> weeks (to rollover some post-preview-2 fixes for MapGuide and a significant
> set of changes/fixes for FDO). This preview will still target Ubuntu 16.04.
>
> If you have to use another distro, the current prescription is to build
> and run MapGuide on an Ubuntu16-based docker image,
>
> - Jackie
>
> You wrote:
>
> What versions of Linux will MapGuide 4 support?
>
> i.e. Ubuntu 20.10?
>
> thanks!
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you most likely won't see this
> message appear on nabble's view of any OSGeo mailing list and may only see
> this message through mailing list archives or depending on your mailing
> list subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


[mapguide-users] Fwd: MapGuide 4 and Linux

2021-03-16 Thread Gordon Luckett
What versions of Linux will MapGuide 4 support?

i.e. Ubuntu 20.10?

thanks!
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mgTileSeeder Zoom Levels (Gordon Luckett)

2021-03-15 Thread Gordon Luckett
Thanks Jackie,
I am intensely using the mgTileSeeder and mgRest for a LeafletJS
implementation.
Batching the mgtileseeder with the scale up to 21 (like the recent build
you made)
and setting the range of zoom scales are invaluable.



On Mon, Mar 15, 2021 at 8:12 AM Jackie Ng  wrote:

> Hi Gordon,
>
> Use a space delimiter.
>
> That is: --specific-zoom-levels 16 17 18
>
> If you pass a specific list, you have to be explicit about the full list.
> If you are generating 16-21, you have to put all the numbers in that range
> ( --specific-zoom-levels 16 17 18 19 20 21)
>
> - Jackie
>
> You wrote:
>
> Hi Jackie,
> what parameters can I pass to mgTileSeeder --specific-zoom-levels?
>
> ie
> --specific-zoom-levels 16-21
> --specific-zoom-levels 16,17,18
>
> I am not sure how to pass the array on the command line?
>
>
>
> --
> *Please Note: I no longer create new posts or post replies to any OSGeo
> mailing list through nabble. As a result, you may only see this message
> through mailing list archives or depending on your mailing list
> subscription settings, through daily message digests or automated
> notifications from the mailing lists.*
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mgTileSeeder Zoom Levels

2021-03-12 Thread Gordon Luckett
Hi Jackie,
what parameters can I pass to mgTileSeeder --specific-zoom-levels?

ie
--specific-zoom-levels 16-21
--specific-zoom-levels 16,17,18

I am not sure how to pass the array on the command line?




On Wed, Jan 27, 2021 at 4:24 PM GordonL 
wrote:

> HI Jackie, that build works perfectly.
>
> I generated tiles up to level 21 and added them to QGIS to test.
>
> 
>
>
>
> --
> Sent from:
> http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] Maestro error creating a theme

2021-02-24 Thread Gordon Luckett
What is the data type?  SDF, SHP?


On Wed, Feb 24, 2021 at 5:22 PM _Jon_  wrote:

> I am trying to create a theme using my data.  I have a nullable integer
> property defined that I would like to use to make a heat map for each
> feature.  In Maestro, when I click on "Create Theme" for the area style, I
> select my property, Maestro throws the following error:
>
> "Unable to read data from the selected column: The remote server returned
> an
> error: (559) MgFdoException.: The custom error module does not recognize
> the
> error."
>
> Any idea what could be going on here, or how I might work around this
> problem?  The values could range from 0 to 90 so creating the rules
> manually
> is not really practical.  Any suggestions would be greatly appreciated.
>
>
>
> --
> Sent from:
> http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mgTileSeeder Zoom Levels

2021-01-08 Thread Gordon Luckett
I was hoping to generate xyz tiles from my MapGuide layers up to level 20.
Currently the mgTileSeeder does 0-19.


On Fri, Jan 8, 2021, 2:38 AM Jackie Ng  wrote:

> If you're having issues fetching OSM tiles it may be because public OSM I'm
> pretty sure is rate-limited.
>
> - Jackie
>
>
>
> --
> Sent from:
> http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
>
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] TLS 1.0

2020-11-18 Thread Gordon Luckett
Once you register the SLL Cert, you will have to connect to Maestro with
HTTPS and the fully qualified domain name.

For example, not http://localhost
 but
https://mapguide.com/mapguide/mapagent/mapagent.fcgi

On Wed, Nov 18, 2020 at 2:23 PM _Jon_  wrote:

> Thanks for the replies, Gordon.  It looks like 1.2 is actually working for
> most of our servers.  I think I had previously only been testing 1.0, 1.1
> and 1.3.  I am told that my certificate already supports 1.2.  I still seem
> to be having a few issues in maestro, however.  Certain activities still
> throw errors.  For example, feature source previews throw a 404 error even
> though the feature source itself works just fine in my map.  I can no
> longer
> connect using Studio at all using https, which I can live without, but I
> still rely on it occasionally when maestro struggles with a particular
> task.
>
>
>
> --
> Sent from:
> http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html
> ___
> mapguide-users mailing list
> mapguide-users@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/mapguide-users
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

  1   2   >