Re: [mapguide-users] MapGuide Open Source 3.0 Preview Release

2015-01-20 Thread Gabriele Monfardini
The x64 tarball works now.

I've opened a ticket against mapguide init scripts that uses two functions
that are not available on Centos 6
https://trac.osgeo.org/mapguide/ticket/2527

Regards,

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

Re: [mapguide-users] mapguide-rest feedback

2015-01-20 Thread GordonL
Another question, the AutoComplete from jQuery UI, is cool and I managed to
test is with the JSON from the parcels in Sheboygan using rest:

/$(#address).autocomplete({
delay: 0,
source: function( request, response ) {
  $.ajax({
  url:
/mapserver2015/rest/library/Samples/Sheboygan/Layers/Parcels.LayerDefinition/features.geojson,
  dataType: json,
  data: {
filter: RBILAD LIKE ' + request.term   + %'
  },/

Is there a way to sort? By the feature.properties.RBILAD for example.  
?sortBy=RBILAD as an example?








--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/mapguide-rest-feedback-tp5168657p5182738.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mapguide-rest : set marker in a map?

2015-01-20 Thread GordonL
Since mapguide-rest can stream geoJSON, you can use that to show a feature in
OpenLayers or Leaflet.  If your request returns json, you can draw it on the
map.





--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/mapguide-rest-set-marker-in-a-map-tp5182295p5182737.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mapguide 2.6 MSVC 2012 Compiler for GDAL

2015-01-20 Thread GordonL
Hmm, haven't got it working with 2.6 yet.  Still trying...



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/mapguide-2-6-MSVC-2012-Compiler-for-GDAL-tp5168554p5182739.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mapguide-rest feedback

2015-01-20 Thread GordonL
Thanks Mark,
I didn't see those parameters here:
https://github.com/jumpinjackie/mapguide-rest/wiki/Adapter-Documentation





--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/mapguide-rest-feedback-tp5168657p5182743.html
Sent from the MapGuide Users mailing list archive at Nabble.com.
___
mapguide-users mailing list
mapguide-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapguide-users


Re: [mapguide-users] mapguide-rest feedback

2015-01-20 Thread Mark Volz (LeapCAD)
Hi Gordon,

Yes, JQuery + Mapguide = very cool functionality.

To order your results use the following parameters
orderBy=column name
orderOption=ascending or descending


 so in your example try this;
  $.ajax({
  url:
/mapserver2015/rest/library/Samples/Sheboygan/Layers/Parcels.LayerDefinitio
n/features.geojson,
  dataType: json,
  data: {
filter: RBILAD LIKE ' + request.term   + %',
orderBy= RBILAD,
orderOption=ascending
  },/

You can also specify which field(s) get returned by using the properties
tag. This helps to cut down on the amount of traffic required for auto
complete functions.

Hope this helps.

Mark

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