Re: [mapguide-users] mgTileSeeder Zoom Levels

2021-01-27 Thread GordonL
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


Re: [mapguide-users] mgTileSeeder Zoom Levels

2021-01-13 Thread GordonL
Thanks Jackie,
I get the following:

Unhandled exception. System.InvalidOperationException: Sequence contains no
elements
   at System.Linq.ThrowHelper.ThrowNoElementsException()
   at System.Linq.Enumerable.Single[TSource](IEnumerable`1 source)
   at
CommandLine.Core.InstanceBuilder.<>c__1`1.b__1_6(SpecificationProperty
sp)
   at
CommandLine.Core.ReflectionExtensions.<>c__DisplayClass6_0`1.b__0(SpecificationProperty
specProp)
   at System.Linq.Enumerable.SelectManySingleSelectorIterator`2.MoveNext()
   at System.Collections.Generic.List`1.InsertRange(Int32 index,
IEnumerable`1 collection)
   at System.Collections.Generic.List`1.AddRange(IEnumerable`1 collection)
   at CommandLine.Core.InstanceBuilder.BuildMutable[T](Maybe`1 factory,
IEnumerable`1 specPropsWithValue, List`1 setPropertyErrors)
   at CommandLine.Core.InstanceBuilder.<>c__DisplayClass0_0`1.b__5()
   at CommandLine.Core.InstanceBuilder.Build[T](Maybe`1 factory, Func`3
tokenizer, IEnumerable`1 arguments, StringComparer nameComparer, Boolean
ignoreValueCase, CultureInfo parsingCulture, Boolean autoHelp, Boolean
autoVersion, IEnumerable`1 nonFatalErrors)
   at CommandLine.Core.InstanceChooser.MatchVerb(Func`3 tokenizer,
IEnumerable`1 verbs, IEnumerable`1 arguments, StringComparer nameComparer,
Boolean ignoreValueCase, CultureInfo parsingCulture, Boolean autoHelp,
Boolean autoVersion, IEnumerable`1 nonFatalErrors)
   at CommandLine.Core.InstanceChooser.<>c__DisplayClass0_0.b__0()
   at CommandLine.Core.InstanceChooser.Choose(Func`3 tokenizer,
IEnumerable`1 types, IEnumerable`1 arguments, StringComparer nameComparer,
Boolean ignoreValueCase, CultureInfo parsingCulture, Boolean autoHelp,
Boolean autoVersion, IEnumerable`1 nonFatalErrors)
   at CommandLine.Parser.ParseArguments(IEnumerable`1 args, Type[] types)
   at CommandLine.ParserExtensions.ParseArguments[T1,T2,T3,T4](Parser
parser, IEnumerable`1 args)
   at MgTileSeeder.Program.Main(String[] args) in
C:\projects\mapguide-maestro\MgTileSeeder\Program.cs:line 209
   at MgTileSeeder.Program.(String[] args)


with the following command:
mgTileSeeder xyz --url
"http://localhost/mapguide/mapagent/mapagent.fcgi?OPERATION=GETTILEIMAGE=1.2.0=OpenLayers=Anonymous=Library://Samples/Sheboygan/TileSets/SheboyganXYZ.TileSetDefinition=Base+Layer+Group={y}={x}={z};
 
--max-zoom-level 21 --minx -87.7978 --miny 43.6868 --maxx -87.6645 --maxy
43.8037

Even if I remove the --max-zoom-level 21

thanks
gordon




--
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


Re: [mapguide-users] MapGuide OpenLayers 6 Example without NODE

2021-01-11 Thread GordonL
Thanks for the tips Jackie.
Yes, I had to tweak some legacy code without NODE so this does come in
handy.





--
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


Re: [mapguide-users] MapGuide OpenLayers 6 Example without NODE

2021-01-08 Thread GordonL
The code did not come across:

var mdf = 'Library://Samples/Sheboygan/Maps/Sheboygan.MapDefinition';
var agentUrl = 'http://localhost/mapguide/mapagent/mapagent.fcgi?';
var bounds = [
-9769953.6613122,
5417808.88017179,
-9762220.79944397,
5434161.22418638];

const myMgLayer = new ol.layer.Image({
extent: bounds,
source: new ol.source.ImageMapGuide({
  projection: 'EPSG:3857',
  url: agentUrl,
  useOverlay: false,
  metersPerUnit: 1, //value returned from mapguide
  params: {
MAPDEFINITION: mdf,
FORMAT: 'PNG',
VERSION: '3.0.0',
USERNAME: 'Administrator',
PASSWORD: 'admin',
  },
  ratio: 2,
}),
  });

  map.addLayer(myMgLayer);



--
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] MapGuide OpenLayers 6 Example without NODE

2021-01-08 Thread GordonL
Hi All,
I know Node is the defacto development environment for OpenLayers, but
sometimes it is easier to move old code over without it.  Here is an example
of MapGuide with Open Layers 6 without Node (just download the latest ol.js
files etc) 
https://github.com/openlayers/openlayers/releases/download/v6.5.0/v6.5.0-dist.zip






--
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


Re: [mapguide-users] onload select a feature

2021-01-07 Thread GordonL
I did something like that here:
https://mapguide.wordpress.com/2013/06/11/autodesk-infrastructure-map-server-auto-zoom-on-load/

You catch the selected "KEY" and zoom and highlight it once the Fusion frame
opens..




--
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] mgTileSeeder Zoom Levels

2021-01-07 Thread GordonL
Has anyone managed to get mgTileSeeder to get to level 20 (like OSM)?

https://wiki.openstreetmap.org/wiki/Zoom_levels





--
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


Re: [mapguide-users] Scripting the updating of a SHP Feature Source

2020-10-20 Thread GordonL
I would definitely recommend "Unmanaged".  That way you just need to copy the
SHP into a folder on the server to update it.

Make sure your serverconfig.ini has the following set:
DataConnectionPoolExcludedProviders = OSGeo.SHP

That way there will be no "locks" on the SHP so you can overwrite without a
problem.

To move the file from your desktop to the server is up to you.  

One option is to just copy and paste to the server if the server is on your
network or you can map a drive (i.e. X drive goes to the mapguide server
where you store your Shapefiles)

Another is to set up FTP to your server.

Perhaps DROPBOX with a synchronized folder on both your desktop and the
server?

Many options to get the files on the server, but its best managed with the
"unmanaged" data source in MapGuide.











--
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

Re: [mapguide-users] MapGuide Open Source 4.0 update

2020-10-14 Thread GordonL
Does MapGuide 4 not support the 3857 coordinate system re-projection?

I get a "Failed to Transform Coordinates: Projection Popular Visualisation
Pseudo Mercator is not supported"
in Maestro..




--
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

Re: [mapguide-users] MapGuide Open Source 4.0 update

2020-10-09 Thread GordonL
Thanks for setting this up Jackie, I am testing on Ubuntu 16.04.7 LTS right
now.

I will try and find the permissions issue with Tomcat..





--
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

Re: [mapguide-users] does MapGuide display circle geometries?

2020-10-09 Thread GordonL
I put that geometry in my table called "CIRCLES"


INSERT INTO CIRCLES(GEOM)  
VALUES (geometry::STGeomFromText('POLYGON ((20.141062507772002
13.48126983816301, 20.165603736294916
13.481571019466806, 20.19013018209942 13.482474381957838, 20.21462707137167
13.483979381484319, 20.239079648101562 13.486085111490812,
20.263473182971218 13.488790303564299, 20.287792982227362
13.492093328198228, 20.3120243965323 13.495992195774068, 20.33615282978813
13.500484557759778, 20.360163747928873 13.505567708124481,
20.384042687675265 13.511238584968465, 20.4077752652469 13.517493772367569,
20.431347185026464 13.524329502430799, 20.454744248170893
13.531741657569972, 20.47795236116422 13.539725772979986, 20.500957544306988
13.548277039328269, 20.52374594013709 13.557390305651721, 20.546303821776991
13.567060082459477, 20.568617601202284 13.577280545039564,
20.590673837426607 13.588045536967492, 20.612459244598 13.599348573814652,
20.63396071786 13.611182847054296, 20.655165251965222
13.623541228162734, 20.6760601276591 13.6364162729133, 20.696632740791603
13.649800225860462, 20.716870699189847 13.663685025011423,
20.736761812264433 13.678062306682362, 20.75629409835263 13.6929234105364,
20.775455791935649 13.70825938480027, 20.794235350725778 13.724060991656522,
20.81262146261902 13.740318712808048, 20.830603052509069 13.757022755211539,
20.848169288958548 13.774163056976459, 20.86530959072347 13.791729293425938,
20.882013633126959 13.809710883315987, 20.898271354278485
13.828096995209229, 20.914072961134739 13.84687655399936, 20.929408935398609
13.866038247582377, 20.944270039252647 13.885570533670572,
20.958647320923586 13.905461646745159, 20.972532120074547
13.925699605143402, 20.985916073021709 13.946272218275908,
20.998791117772274 13.967167093969783, 21.011149498880712
13.988371645933221, 21.022983772120355 14.009873101337007,
21.034286808967519 14.031658508508398, 21.045051800895443
14.053714744732723, 21.055272263475533 14.076028524158014,
21.064942040283288 14.098586405797914, 21.074055306606741
14.121374801628017, 21.082606572955022 14.144379984770785, 21.09059068836504
14.167588097764112, 21.098002843504212 14.190985160908541,
21.104838573567442 14.214557080688106, 21.111093760966547 14.23828965825974,
21.11676463781053 14.262168598006134, 21.121847788175231 14.286179516146875,
21.126340150160942 14.310307949402702, 21.130239017736784
14.334539363707641, 21.133542042370713 14.358859162963787, 21.136247232
14.383252697833443, 21.138352964450693 14.407705274563336,
21.139857963977175 14.432202163835585, 21.140761326468205
14.456728609640091, 21.141062507772002 14.481269838163003,
21.140761326468205 14.505811066685915, 21.139857963977175
14.530337512490421, 21.138352964450693 14.554834401762671, 21.136247232
14.579286978492563, 21.133542042370713 14.603680513362219,
21.130239017736784 14.628000312618365, 21.126340150160942
14.652231726923304, 21.121847788175231 14.676360160179131, 21.11676463781053
14.700371078319872, 21.111093760966547 14.724250018066266,
21.104838573567442 14.7479825956379, 21.098002843504212 14.771554515417465,
21.09059068836504 14.794951578561895, 21.082606572955022 14.818159691555222,
21.074055306606741 14.84116487469799, 21.064942040283288 14.863953270528093,
21.055272263475533 14.886511152167992, 21.045051800895443
14.908824931593283, 21.034286808967519 14.930881167817608,
21.022983772120355 14.952666574989, 21.011149498880712 14.974168030392786,
20.998791117772274 14.995372582356223, 20.985916073021709
15.016267458050098, 20.972532120074547 15.036840071182604,
20.958647320923586 15.057078029580847, 20.944270039252647
15.076969142655434, 20.929408935398609 15.096501428743629,
20.914072961134739 15.115663122326646, 20.898271354278485
15.134442681116777, 20.882013633126959 15.15282879301002, 20.86530959072347
15.170810382900068, 20.848169288958548 15.188376619349548,
20.830603052509069 15.205516921114468, 20.81262146261902 15.20963517959,
20.794235350725778 15.238478684669484, 20.775455791935649
15.254280291525737, 20.75629409835263 15.269616265789606, 20.736761812264433
15.284477369643644, 20.716870699189847 15.298854651314583,
20.696632740791603 15.312739450465545, 20.6760601276591 15.326123403412707,
20.655165251965222 15.338998448163272, 20.63396071786 15.35135682927171,
20.612459244598 15.363191102511355, 20.590673837426607 15.374494139358514,
20.568617601202284 15.385259131286443, 20.546303821776991
15.395479593866529, 20.52374594013709 15.405149370674286, 20.500957544306988
15.414262636997737, 20.47795236116422 15.42281390334602, 20.454744248170893
15.430798018756034, 20.431347185026464 15.438210173895207, 20.4077752652469
15.445045903958437, 20.384042687675265 15.451301091357541,
20.360163747928873 15.456971968201525, 20.33615282978813 15.462055118566228,
20.3120243965323 15.466547480551938, 20.287792982227362 15.470446348127778,
20.263473182971218 15.473749372761707, 20.239079648101562
15.476454564835194, 20.21462707137167 15.478560294841687, 20.19013018209942

Re: [mapguide-users] MGOS 3.1.2 and MySQL 8.0 - unable to display spatial objects

2020-09-23 Thread GordonL
On my mapguide server (windows server 2019 datacenter)
I had to use the dll from the mysql-5.7.29-winx64  client to get it work
with MapGuide 3.1.2





--
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

Re: [mapguide-users] MGOS 3.1.2 and MySQL 8.0 - unable to display spatial objects

2020-09-22 Thread GordonL
Yes, I had the same issue with MySQL (installed on linux).  MapGuide 3.1.2
(on windows) could not connect until I found the correct the libmysql.dll...




--
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

Re: [mapguide-users] mapguide+google earth in IE

2020-05-20 Thread GordonL
You can use Studio with MGOS 3.1.2 but I would not use it for Layouts. 
Stick with Maps, Layers and (some) Datastores. 

Do not use Studio for the Applications Definitions/Fusion Layouts.  MGOS has
evolved since AIMS 2017 and is not completely compatible with the layouts.

For the Layouts, stick with Maestro.
For anything to do with mapguide-rest, use Maestro.

For example, I uncompressed the following ZIP file 
https://github.com/jumpinjackie/mapguide-rest/releases/download/1.0-rc4/mapguide-rest-1.0-rc4.zip
directly into the folder C:\Program Files\OSGeo\MapGuide\Web\www\rest

Then I can connect in Maestro to the url:  http://locations/mapguide/rest/
 



--
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

Re: [mapguide-users] Embedding layers into fusion

2020-03-26 Thread GordonL
In order to use the Google Maps in Fusion, you will have to have a Google
Maps API Key
(https://developers.google.com/maps/documentation/javascript/get-api-key?hl=ru)

once you have this long key (it looks like this:
Ap9TkdOboix_ZZZQQAsrc6NopEnt6DUU2Ps8yv68UlS3lXsBxm5Ufb1t4f123red

Then using Maestro, you add the Google Layers to your map.
 

Next you paste the API key into the box and save your Layout
 

You should be able to toggle Google layers using the Basemap Switcher
Widget:
 



--
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

Re: [mapguide-users] Is there a Mapguide live application Gallery ?

2020-03-25 Thread GordonL
That is a good question.  There used to be one.  

If you want to look for some mapguide sites, you can do what I do in Google:

allinurl:mapguide/fusion/templates/

this will give a lot of indexed URLs that host MapGuide right now.. 



--
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

Re: [mapguide-users] Speeding up MapGuide XYZ layers in mapguide-rest

2020-03-19 Thread GordonL
Genius.



--
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] Speeding up MapGuide XYZ layers in mapguide-rest

2020-03-18 Thread GordonL
I discovered a 10 fold increase in speed with Leaflet if you go directly to
the mapguide-rest cache rather than demanding directly (the caveat is that
you need to generate the cache first).

For example, in leaflet I point to:



replace with this:








--
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

Re: [mapguide-users] MG REST GET Features for datetime fields

2020-03-16 Thread GordonL
Nevermind, mapguide-rest needs "-MM-DD HH:mm:ss" but jQuery UI Date
Picker does not have time...

Just user error on my part.



--
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

Re: [mapguide-users] MG REST GET Features for datetime fields

2020-03-16 Thread GordonL
I am running into this today.  I have a date field, and I have a
"_html_single.tpl" that I am using to edit with REST.

TIMESTAMP '-00-00 00:00:00' is the default.

I need to add a date and send it back, but I can't for the life of me get
the date format to be accepted by mapguide-rest 

Unhandled Exception
Invalid date string: 03/31/2020 at C:\Program
Files\OSGeo\MapGuide\Web\www\rest\app\util\utils.php:702



--
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

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

2020-02-12 Thread GordonL
I would be very cool with 100% 64bit.

Ubuntu or CentOS...



--
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

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

2020-02-11 Thread GordonL
Are there some Linux builds for the 4.0 Preview?



--
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

Re: [mapguide-users] Mapguide with SSL HTTPS

2019-12-03 Thread GordonL
Using SSL with localhost rarely works.

You should use the domain you registered the SSL Cert.

for example:

https://mapguideisawesome.com/mapguide/mapagent/mapagent.fcgi





--
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

Re: [mapguide-users] CORS Error with IE (11) and Edge Only

2019-10-29 Thread GordonL
That is how I add all the various Backgrounds now. Using Generic XYZ:

For example:

OpenStreetMap: https://a.tile.openstreetmap.org/${z}/${x}/${y}.png

Google Maps: https://mt1.google.com/vt/lyrs=m=${x}=${y}=${z}
Google Satellite: https://mt1.google.com/vt/lyrs=s=${x}=${y}=${z}
Google Terrain: https://mt1.google.com/vt/lyrs=p=${x}=${y}=${z}


ESRI Streets:
https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/${z}/${y}/${x}
Esri Topography:
https://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/${z}/${y}/${x}

And so on...





--
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

Re: [mapguide-users] Fusion vs react-layout

2019-10-23 Thread GordonL
On the same vein, how do we set the   with the react viewer?

I am porting the example in mapguide-rest where you can edit parcels, but
the tooltip hyperlinks are not targeting the TaskPane..

 



--
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

Re: [mapguide-users] Search widget Problem

2019-10-23 Thread GordonL
Some issues there:



Perhaps redefine that search?




--
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

Re: [mapguide-users] CORS Error with IE (11) and Edge Only

2019-10-23 Thread GordonL
If you use Generic XYZ for the OpenStreetMap and pass the HTTPS, do you get
the same error?

https://a.tile.openstreetmap.org/{z}/{x}/{y}.png

 



--
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

Re: [mapguide-users] ECW in MapGuide 3.1.2

2019-07-25 Thread GordonL
Using these files for ECW and SID work great:

http://download.gisinternals.com/sdk/downloads/release-1900-x64-gdal-2-2-3-mapserver-7-0-7.zip





--
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

Re: [mapguide-users] ECW in MapGuide 3.1.2

2019-07-25 Thread GordonL
Good, question.  You have to match the version of GDAL with the one bundled
with MapGuide 3.1.2..




--
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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-06-06 Thread GordonL
Yes, and there is not guarantee that it will be available in the near future.  
They could change the URLs at any time.



--
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

Re: [mapguide-users] XYZ maps not listed in "external providers"

2019-05-28 Thread GordonL
Open MapGuide Maestro.
Open your Application/Flexible Web Layout
Edit as XML
remove the  and then try with the XYZ layers only...






--
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

Re: [mapguide-users] Load Map Package from External Server Causes Selection Error (MG 3.1.1)

2019-05-24 Thread GordonL
watch for case-sensitivity in the Data source Naming..also make sure you have
the same ALIASes set up in the Map Server Administrator...





--
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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-05-24 Thread GordonL
Like the renaming the FIND function above, here is an alternative fix:
In the C:\Program Files\OSGeo\MapGuide\Web\www\fusion\lib\fusionSF.js

First step:
Around line 132537
Rename the Array to find2



Second Step:
Also in FusionSF.js around line 132427
Rename to find2






--
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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-05-22 Thread GordonL
look closer at your URL..i think it has weird symbols...





--
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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-05-22 Thread GordonL
Here is what I have with 3.1.2 (note 3.1.1 does not work - and you must
uninstall 3.1.1 before installing 3.1.2)
 



--
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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-05-22 Thread GordonL
Here is a work around (only for MapGuide 3.1.2)  but there is no guarantee
that it will last.

1. Remove your Google Maps Streets
2. Create a new XYZ layer
3. For Google Streets use:   
https://mt1.google.com/vt/lyrs=m=${x}=${y}=${z}
4. For Google Hybrid use:
https://mt1.google.com/vt/lyrs=y=${x}=${y}=${z}
5. For Google Satellite use:  
https://mt1.google.com/vt/lyrs=s=${x}=${y}=${z}





--
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

Re: [mapguide-users] New php entry point

2019-05-22 Thread GordonL
If you open the URL:
http://localhost/mapguide/fusion/templates/mapguide/index.php

what error do you get?

If you add the following to the top of the index.php:

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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-05-16 Thread GordonL
The fix listed here where the function is removed from fusion.js:
http://osgeo-org.1560.x6.nabble.com/Google-Offset-in-MGOS-3-1-1-tp5385642p5396743.html

"Array.prototype.find = function(searchStr) {"

It just worked for me.

gordon




--
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

Re: [mapguide-users] Google strikes again (v3.1.2)

2019-05-16 Thread GordonL
Yep, just hit today.  Looking into it..




--
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

Re: [mapguide-users] Fusion Error - MGOS 3.1.2

2019-05-16 Thread GordonL
There is a 10+ year old blog from Zac
http://zacster.blogspot.com/2008/10/mapguide-performance-tips.html

Another here:
https://adndevblog.typepad.com/infrastructure/2012/08/counting-the-number-of-sessions-that-are-active-and-tune-up-concurrent-performance-of-mapguideaims.html

And Jackie's
https://themapguyde.blogspot.com/2012/06/thoughts-on-mapguide-scalability.html






--
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

Re: [mapguide-users] Fusion Error - MGOS 3.1.2

2019-05-15 Thread GordonL
Hi Mike, I have seen something like that when you hide the Overview Map
before its loaded.
For example, if you modify the template for for AQUA and hide the Overview
Map:

 //dOverviewMap.open(); (comment out the Open method)

This causes some issues.  You would be better to use the load event to check
first and then hide it after the fact..





--
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

Re: [mapguide-users] OpenLayers Anyone willing to share a Mapguide Server for their API Example?

2019-05-15 Thread GordonL
Sure. Here is how I do it:




--
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

Re: [mapguide-users] Fusion Error - Chrome - Unable to preventDefault inside passive event

2019-05-03 Thread GordonL
I've seen this error when using XYZ layers.  

Steps to reproduce:
1. Using Maestro, add an XYZ layer (i.e. ESRI Satellite: 
https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/${z}/${y}/${x})
2. In the Application (i.e. Aqua) turn on that XYZ Basemap
3. Using your mouse wheel, roll in and out.
4. View Javascript error:
/[ Intervention] Unable to preventDefault inside passive event listener due
to target being treated as passive. See
https://www.chromestatus.com/features/666264709313/

Definitely a bug.



--
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

Re: [mapguide-users] Wrong parameter count for mgmap::open()

2019-03-14 Thread GordonL
Like above,
the more recent versions require a different way of setting up the Map.

For example, I used to get the map this way:
$map = new MgMap();
$map->Open($resourceSrvc, $mapName);


Now you do it this way:
$map = new MgMap($siteConnection);
$map->Open($mapName);




--
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

Re: [mapguide-users] Securing a Fusion application

2019-02-20 Thread GordonL
I've just used Windows IIS security in the past 
But there as still holes that are open. Such as the MapAgent etc




--
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

Re: [mapguide-users] Mapguide with SSL HTTPS

2019-02-14 Thread GordonL
You might have to log in with https://localhost/mapguide/

I doubt the login is Windows/OS based login...



--
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

Re: [mapguide-users] Probelem regarding group folder in fusion legend

2019-02-12 Thread GordonL
Are you using any Tiled Layers in the map?




--
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

Re: [mapguide-users] Localization with Accents

2019-01-31 Thread GordonL
Ok found the issue.

Had originally installed 3.1.0 on the server.
Used 3.1.1 InstantSetup 
Added 3.1.2 Fusion

This was enough to scramble the UTF-8 and mess up the French accents.

I un-installed 3.10
Re-installed 3.1.1
Added 3.1.2 Fusion

Et voilà!




--
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

Re: [mapguide-users] Localization with Accents

2019-01-30 Thread GordonL
In the index.php where it gets the application definition:
$content = $resourceService->GetResourceContent($appDefId)

If echo out the contect, the accents become scrambled.  I think there is
something strange in the reading of the XML.

For example, if you get the XML Directly with the MapAgent, the Accents come
across OK:
http://noami.org/mapguide/mapagent/mapagent.fcgi?OPERATION=GETRESOURCECONTENT=1.0.0=en=MapGuide+Developer=Library%3A%2F%2FNOAMI%2FLayouts%2FNOAMI25_f.ApplicationDefinition=text%2Fxml






--
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

Re: [mapguide-users] Localization with Accents

2019-01-30 Thread GordonL
Thanks Jackie,
the French keyboard was giving weird symbols when rendered, but using the
ASCII Codes 
for example:

& # 233 ;  =   é

That works better than using the keyboard.



--
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] Localization with Accents

2019-01-29 Thread GordonL
Hi All, 
I am having troubles with the locale=fr with Fusion test build:
https://trac.osgeo.org/mapguide/wiki/MapGuideRfc167

 

The , for example is not coming across in the browser. (=fr is
passed)





--
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

Re: [mapguide-users] Pass current data with invoke URL

2019-01-29 Thread GordonL
No Much new.  
It still passes the MAP and SESSION.  

With those things you can get the selected features and pass them along to
whatever report you need.





--
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

Re: [mapguide-users] Mapguide React Layout Startup Error

2019-01-11 Thread GordonL
Using Maestro, make sure you have the proper URL for your
ApplicationDefinition (Flexible Web Layout).

Also, the "viewer" directory should be under "MapGuide" in the www folder.


Your link is probably more like:

http://gisserver/mapguide/viewer/aqua.html?resource=Library%3A%2F%2FSamples%2FSheboygan%2FFlexibleLayouts%2FAqua.ApplicationDefinition



--
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

Re: [mapguide-users] Link to wiew widget coordinate transformation

2019-01-02 Thread GordonL
The Link to View should inherit the Map Coordinate System.  For example, if
you are using 3857, your coordinates should show that, for example:

http://localhost/mapguide/fusion/templates/mapguide/index.php?template=maroon
=Library://Samples/Sheboygan/FlexibleLayouts/Aqua.ApplicationDefinition
=*-9766188.325529%2C5423870.535598%2C-9765521.029637%2C5424415.613731*
=Library%3A%2F%2FSamples%2FSheboygan%2FMaps%2FSheboyganGoogle.MapDefinition
=XYZ



--
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

Re: [mapguide-users] Layer Performance - Composite Stylization VS Points/Lines/Areas

2018-12-20 Thread GordonL
That's great advice Martin, I try not use Composite unless I have to (like
blocks).



--
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

Re: [mapguide-users] ArcGis Rest Services (JSON, SOAP, WMTS)

2018-11-29 Thread GordonL
The only way is to use the OpenLayers API to add the Service:

http://dev.openlayers.org/apidocs/files/OpenLayers/Layer/ArcGIS93Rest-js.html




--
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

Re: [mapguide-users] Google Offset in MGOS 3.1.1

2018-11-13 Thread GordonL
The Monthly may end up changing the API next month and you might have the
same issue.

I haven't seen the change that offsets everything in Google API yet.





--
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

Re: [mapguide-users] Google Offset in MGOS 3.1.1

2018-11-13 Thread GordonL
Solved it:  Google has updated it's API in the past couple of days.  This
offsets the map.

I just had to force it to use the older API:

   
https://maps.googleapis.com/maps/api/js?key=AIzaSyD9iypThfjzfCwasdaasdfasdfe_dGs*v=3.33*





--
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

Re: [mapguide-users] Google Offset in MGOS 3.1.1

2018-11-13 Thread GordonL
This affects all MGOS 3.1.1 sites currently using Google.  just happened
overnight.





--
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] Google Offset in MGOS 3.1.1

2018-11-13 Thread GordonL
Today I noticed that Google is off-set (OpenStreetMap is fine).
Any ideas?

 

 




--
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

Re: [mapguide-users] New builds of Fusion to support new Bing Maps

2018-11-13 Thread GordonL
Thanks, it is still reporting those errors, but the real issue was a SSL
setting in the browser (TLS 3) that was causing the issue.




--
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

Re: [mapguide-users] New builds of Fusion to support new Bing Maps

2018-11-06 Thread GordonL
Did you still get these errors?
I am getting them in Chrome right now.  I think there must be a IIS setting
change or a Chrome update..





--
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

Re: [mapguide-users] Interacting with the map from a diffrent window or tab

2018-10-15 Thread GordonL
You can toggle it with PHP but the legend will not reflect the change.

For example if you want to turn on the the "Roads" layer:






--
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

Re: [mapguide-users] New test build of Fusion

2018-09-17 Thread GordonL
This new build of Fusion is great:

If you want to add Google to any map just add it as an XYZ layer:

http://mt0.google.com/vt/lyrs=m=${x}=${y}=${z}

 

 



--
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

Re: [mapguide-users] New test build of Fusion

2018-08-21 Thread GordonL
Fantastic fix. After registering with Google API I was still getting errors.

But changing that line from:

if (typeof(searchStr) == 'function') {

to

 if (typeof(searchStr) == 'function' && typeof(searchStr.test) ==
'function') {

works for me.





--
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

Re: [mapguide-users] ECW in MapGuide 3.1

2018-06-18 Thread GordonL
I couldn't get this when I installed 3.1.1 over 3 or 3.1.  I had to
completely uninstall 3.1 or  3.0 first.

Once I did that and install 3.1.1, restart, and follow the steps, it worked
for me.





--
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

Re: [mapguide-users] Incorrect numbers displayed when using Selection Panel mapguide 3.0

2018-05-02 Thread GordonL
I have been seeing this issue with SQL Server data sources.  I am researching
to see how to reproduce consistently.




--
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

Re: [mapguide-users] Migration Autodesk to Esri

2018-04-09 Thread GordonL
Absolutely, most I.T. departments in North America are extremely risk averse. 
They see Open Source as a risky proposition, even if it is not so.

If you have to move to ArcGIS Server, you are going to find that you have a
bit of work.

First, the data.  You have to figure how the data is created/collected.
If the data is gathered by GPS or Survey, and then imported into the system,
you will have to make sure the storage mechanism still can hold it.  Oracle
can store the Spatial data and ArcMap can "view" the data but not edit
spatial data not in the SDE Enterprise schema within Oracle.  
So, if you want to edit your existing data ArcMap or ArcGIS Pro, you have
two choices:
1. Move all the data into ESRI Schema
2. Use a 3rd party tool plugin for ArcMap such as GISquirrel
(https://www.gisquirrel.com/home)

Or not with ESRI (i.e. QGIS)

Next, the layers and Maps.  MapGuide/AIMS creates layers within the XML on
the server.  Layers in ArcGIS Server are created as separate services (i.e.
Feature or Map Services).  You have to publish them from ArcCatelog, ArcMap
or ArcGIS Pro.  That is how you style, from the client and then publish.

Once inside the ArcGIS Server, they are published but to put together a good
map, you need to use:
1. ArcGIS online that points to your publicly available ArcGIS Server
2. ArcGIS Portal (a subset of ArcGIS online) that can be installed on your
internet or public.
3. ArcGIS API for Javascript - fairly easy to get going, much like the
Google Maps API
4. 3rd Party such as GeoCortex - a great wrapper to publish maps as a web
interface (I have even tried this with MapGuide WMS/WFS layers)
5. Open Source wrapper such as Leaflet or Open Layers - which can consume
the ArcGIS Server Rest api. (This is how I often do MapGuide/ArcGIS mashups)


So that is a bit of a migration in a nutshell.





--
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

Re: [mapguide-users] Incorrect numbers displayed when using Selection Panel mapguide 3.0

2018-04-05 Thread GordonL
Brad, when creating the layer, you need to pick the correct Feature Class -
don't use the original, but the one you newly created.

 



--
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

Re: [mapguide-users] fusion error - searchStr.test is not a function

2018-04-04 Thread GordonL
Here's how I fixed my Google layers:

In Maestro, open your Flexible Web Layout (ApplicationDefinition)
Click Edit as XML
Scroll to the bottom
Replace the line:
http://maps.google.com/maps/api/js?sensor=false

with the following:

http://maps.google.com/maps/api/js?v=3.3sensor=trueclient=
   



--
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

Re: [mapguide-users] Migration Autodesk to Esri

2018-04-04 Thread GordonL
I really want to be a cynic and to tell management to stop using things like
Google (open source) and basically most of the web running on Linux.

There would be a more of risk to management to move to a platform that is
not as "open" as MGOS.  However, the key to any thing is the DATA.  Data is
EVERYTHING.

So, if you do go with ArcGIS Server, for example, make sure your data is a
format that all GISes can see.  For example, most GIS systems can see SHP
(not SDF).

But above all, the data should be stored in a database such as Oracle, SQL
Server or PostgreSQL & PostGIS.

If you do store your data in a database, especially with ArcGIS Enterprise,
make sure you are using the databases' native Geometry format and not ESRI
Proprietary st geom.  

Your life will be way easier.

If your data is in a neutral database, all GIS systems can view and edit the
data (given permissions) and regardless of what comes down the pipe
(Autodesk/ESRI/Tesla/Amazon GIS) you are in a position to take advantage.

DATA is EVERYTHING.

gordon

 




--
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

Re: [mapguide-users] fusion error - searchStr.test is not a function

2018-04-04 Thread GordonL
I am pretty sure the problem is with the Google Maps API.

Remove all the Google layers and I think this solves the error.  

I am looking into how to choose the older Google Map API Version so that we
can continue using Google Maps in mapguide.




--
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

Re: [mapguide-users] ECW in MapGuide 3.1

2018-03-28 Thread GordonL
For MapGuide 3.1.1 in Windows 64 bit: 

1. Download
http://download.gisinternals.com/sdk/downloads/release-1900-x64-gdal-2-2-mapserver-7-0.zip
  

2. Stop the MapGuide Service 

3, Unzip and copy contents of the BIN into the C:\Program
Files\OSGeo\MapGuide\Server\Fdo folder 

4. Copy the C:\Program Files\OSGeo\MapGuide\Server\Fdo\gdal\plugins folder
and paste it in the C:\Program Files\OSGeo\MapGuide\Server\bin folder. 

5. Rename the plugins to gdalplugins so you end up with a folder called 
C:\Program Files\OSGeo\MapGuide\Server\bin\gdalplugins 

6. Start the MapGuide Service 

I can confirm the GDAL data source can now view both MR SID and ECW files. 




--
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

Re: [mapguide-users] ECW in MapGuide 3.1

2018-03-21 Thread GordonL
Fantastic.  That build works great with ECWs!
And it  fixes the SQL server bug that requires the user to connect to every
database.

Whew.



--
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] MapGuide React Viewer

2018-03-12 Thread GordonL
Quick question:  is there a utility function to show the panes with the React
Viewer.  
Currently I am doing this to show the Task Pane:

viewer.dispatch(MapGuide.Actions.Map.invokeCommand(viewer.getCommand("showTaskPane")))





--
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

Re: [mapguide-users] MapGuide (actually FDO) 64-bit Linux blockers

2018-02-26 Thread GordonL
This would be a great topic to show as a wiki page - all the various OGR
connections (SHP, Oracle, etc) using MapGuide...





--
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

Re: [mapguide-users] Moving to MGOS from AIMS

2018-01-25 Thread GordonL
The line of code for adding Google Maps to OpenLayers 3 or 4 is:

  new ol.layer.Tile({
source: new ol.source.TileImage({url:
'http://mt0.google.com/vt/lyrs=m={x}={y}={z}'})
  })





--
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

Re: [mapguide-users] Moving to MGOS from AIMS

2018-01-24 Thread GordonL
If you want to pay for Google APIs, you could use the TILES in OpenLayers 4:





--
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

Re: [mapguide-users] MapGuide Open Source 3.1.1 test windows build

2018-01-24 Thread GordonL
Hi,
I just wanted to confirm this build did two things for me:
1. Corrected the multi-database enumeration bug in SQL Server for users that
only have access to particular databases within SQL.
2. Able to connect to ECW files with the GISINTERNALS download.

Way to go!





--
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

Re: [mapguide-users] Moving to MGOS from AIMS

2018-01-17 Thread GordonL
Yes, the number one priority is to fill in the gaps left by Autodesk.
They don't have to be pretty, just work for now.





--
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

Re: [mapguide-users] Moving to MGOS from AIMS

2018-01-16 Thread GordonL
Yes.  It's all part of the same commitment.

Yes we want more people to adopt it.

Yes we free software developers should support each other.

Yes if the licensing is problematic, perhaps we should review it.

The future of MapGuide still requires the active participation of its
developers, users, teachers and integrators - all of us.






--
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

Re: [mapguide-users] Moving to MGOS from AIMS

2018-01-16 Thread GordonL
The bright-ness is about who uses it.  The more we use it, the more likely it
becomes a standard.

The success of Open Source is not sales but community participation and
adoption.



--
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

Re: [mapguide-users] Moving to MGOS from AIMS

2018-01-16 Thread GordonL
it might be an idea to try the OGR Provider... for DWG...

http://www.gdal.org/drv_cad.html





--
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] Moving to MGOS from AIMS

2018-01-08 Thread GordonL
Hi All, since Autodesk's announcement yesterday that they are dropping AIMS,
I have been thinking what we need to add to MGOS to make it fill in the gaps
left by AIMS.

Two key FDO Providers are:

Raster for ECW/SID
KING Oracle FDO

These two FDO providers are key in the commercial arena.  

I hope we can work on these two providers to ensure that we can easily move
those orphaned users over to the OpenSource world.

For MGOS 3.1, are there custom dlls for ECW yet?

thanks
gordon







--
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

Re: [mapguide-users] Metadata for map layers?

2018-01-08 Thread GordonL
Metadata requires someone to enter it somewhere.

It depends where it is entered.  If it is a text file, you can create a
link.  If it's in a database, maybe a php page can render the metadata.

Metadata is only as good as the person tracking it.  Once you have nailed
that, the link to the metadata is a simple URL (invokereport).





--
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

Re: [mapguide-users] Mapguide 3.0 printing and quickplot

2017-12-13 Thread GordonL
Hi Brad,
the default install of MapGuide often does not tweak the PHP.INI to allow
for Quick Plot.

You need to change the file so that the following is uncommented (no
semi-colon)

extension=php_gd2.dll

-around line 632 of the php.ini

Then restart IIS

This will ensure the Quick Plot can run otherwise you get the error:
Fatal error: Call to undefined function imagecreatefromjpeg() 





--
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

Re: [mapguide-users] AIMS 2014 to AIMS 2017 Selection Panel Display Order Issues

2017-12-13 Thread GordonL
Yes, exactly the same symptoms as this one:
http://osgeo-org.1560.x6.nabble.com/Out-of-Order-SelectionPanel-js-tt5288902.html#a5288907




--
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

Re: [mapguide-users] mapguide-rest and React Viewer

2017-12-11 Thread GordonL
On step 5 of this page: https://github.com/jumpinjackie/mapguide-rest

It recommends to use the  Application Request Routing module for IIS
https://www.iis.net/downloads/microsoft/application-request-routing


but I have found that sometimes you need the IIS URL Rewrite module too:

https://www.iis.net/downloads/microsoft/url-rewrite





--
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

Re: [mapguide-users] Fusion "Shift-Key" does not update Selection Pane

2017-12-07 Thread GordonL
Ok, there is a fix at Autodesk and it works with MGOS 3.0

https://knowledge.autodesk.com/support/infrastructure-map-server/troubleshooting/caas/sfdcarticles/sfdcarticles/Deselect-does-not-remove-features-from-selection.html?v=2017





--
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] Fusion "Shift-Key" does not update Selection Pane

2017-12-05 Thread GordonL
Hi All,
Using the Shift Key to de-select features does not update the Selection
Pane.

Is this occurring for other users?



--
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

Re: [mapguide-users] Fusion - If Using Any of Google Base Maps - Cursor Will Be Off (Hover/Select) - AIMS2017

2017-11-27 Thread GordonL
I  had a weird situation where if I hid the Overview widget programatically
before it completely loaded, it would offset the cursor.  

What I ended up doing is running the following command in a timeout when the
map first loads:

Fusion.getMapById('Map').oMapOL.updateSize();






--
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

Re: [mapguide-users] mapguide-rest and React Viewer

2017-11-22 Thread GordonL
Found it:  taskPaneFrame

concat('Parcel\nName: ', RNAME, '\nAddress: ', RBILAD,
' Edit Property   ')

Now I can edit and draw new Parcels using mapguide-rest and React Viewer...



--
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] mapguide-rest and React Viewer

2017-11-22 Thread GordonL
Hi All,
just trying out mixing mapguide-rest with React Viewer today.  I love how
seamless they work together.

 

My only trouble right now is how to target the URL in the tooltip to the
React's Task Pane.  Any ideas?




--
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

Re: [mapguide-users] MGOS 3.1 problem WMS

2017-11-21 Thread GordonL
I am not positive, but I don't think Raster WMS layers are supported with
MapGuide.



--
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

Re: [mapguide-users] Turn Layers On/Off of The Legend - FusionSF.js - AIMS2017/MapGuide3.1

2017-11-21 Thread GordonL
With MGOS 3.1, I can use the following to toggle layers in Fusion off and on:

Fusion.getMapById('Map').aMaps[0].getLayerByName('mylayername').show();


Fusion.getMapById('Map').aMaps[0].getLayerByName('mylayername').hide();





--
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

Re: [mapguide-users] Mapguide 3.1 problem.

2017-11-17 Thread GordonL
Had the oracle's users permissions changed within the Oracle database?




--
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

Re: [mapguide-users] MapGuide/AIMS OSM TransportMap and CycleMap API Key Required

2017-08-29 Thread GordonL
Thanks for postal that Reno. 

I particularly like the "Spinal Map"! 



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/MapGuide-AIMS-OSM-TransportMap-and-CycleMap-API-Key-Required-tp5332053p5332906.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] mapguide-react-layout 0.9.5 released

2017-08-01 Thread GordonL
Hi Jackie,
what is the feeling on making the the React viewer the new "viewer" for
MapGuide?  Move away from Basic/AJAX and Fusion?

gordon




--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/mapguide-react-layout-0-9-5-released-tp5329372p5330120.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] Problems with base layers.

2017-07-13 Thread GordonL
Yes, this is common, especially when you combine Base Layers with Tiled
Layers.

Have you found a work-around yet?

I am looking to re-work the OpenLayers layers (visible and display order) to
work around this bug ...

gordon




--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Problems-with-base-layers-tp5298092p5327781.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

Re: [mapguide-users] Mapguide 3.0 - Composite style not displaying in fusion legend

2017-04-09 Thread GordonL
Which file? 
The xml for the Layer Definition?





--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Mapguide-3-0-Composite-style-not-displaying-in-fusion-legend-tp5222875p5316554.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/mapguide-users

  1   2   3   4   5   6   7   8   >