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

2019-11-12 Thread pcardinal
Can you privide an example on how to use the new methods. Thank you -- Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html ___ mapguide-users mailing list mapguide-users@lists.osgeo.org

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

2019-11-07 Thread Jackie Ng
If you get the 0.12.6 release, it contains new methods in OL factory for creating icon styles, which is what you need if you want to create point features with icon/image symbology. - Jackie -- Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html

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

2019-11-06 Thread Jackie Ng
0.12.5 release fixes this problem. Btw, hyperlinks in tooltip content always should be targeting the task pane frame. This aspect was not configurable in the older viewers, neither is it configurable here. - Jackie -- Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html

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

2019-11-06 Thread Jackie Ng
The code that was escaping my mind and sounded similar to what you're trying to do was this example I wrote to demonstrate the enhanced viewer APIs available to Task Pane content in mapguide-react-layout

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

2019-10-29 Thread Jackie Ng
I'm almost certain the problem here is that I haven't given the Task Pane iframe a name (taskPaneFrame?), meaning your targeted tooltip links do nothing when clicked. Tracking: https://github.com/jumpinjackie/mapguide-react-layout/issues/1000 - Jackie -- Sent from:

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:

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

2019-10-16 Thread Jackie Ng
I'm certain there is a way to do this in mapguide-react-layout, but the exact code and APIs to do this escape me. Let me cook up the right code sample and I'll post it here once I've figured it out. - Jackie -- Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html

[mapguide-users] Fusion vs react-layout

2019-10-13 Thread pcardinal
with Fusion it was possible to access the map object in TaskPahe.html with the following code var map = parent.Fusion.getWidgetById('Map'); and after it was possible to place a marker on the map var olMap = map.oMapOL; var oldmarkers = olMap.getLayersByName ( "Markers" ); etc... How to do the