• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Autodesk MapGuide Enterprise Developer

    Reply
    New Member
    007dolenc
    Posts: 1
    Registered: ‎04-21-2011

    Zoom to selection

    697 Views, 4 Replies
    04-21-2011 01:47 AM

    In codebehinde or js I need to select object and zoom to selected object. I use in JS:

     

         function SetSelectionXML(selectionXml) {
              var Fusion = window.top.Fusion;
              var mapWidget = Fusion.getWidgetById(mgApiMapWidgetId);
              if (mapWidget && mapWidget.isMapLoaded() && selectionXml.length > 170)  {
                  mapWidget.setSelection(selectionXml, true);
                  
              }
          }

    But I have problem with zoom to selection object, because is zoomig to different place.

     

    In loadMap.php have I also change code to:

    $minScale = "5000";
    $maxScale = 'infinity';  // as MDF's VectorScaleRange::MAX_MAP_SCALE
    if($minElt->length > 0 && $minElt->length > 1)
            $minScale = $minElt->item(0)->nodeValue;

     

    Can you please help me?

     

    Tenx!

    Please use plain text.
    Valued Mentor
    Posts: 258
    Registered: ‎10-10-2003

    Re: Zoom to selection

    05-01-2011 09:08 AM in reply to: 007dolenc

    If you are using .NET you need to call a server side page sending the MAPNAME, SESSION, LAYER, and "where clause" to receive the XML of the selected features.  

     

    You then use Javascript to take that XML to select the features and zoom to it.

     

    Javascript:

     

    var mapWidget = Fusion.getWidgetById('Map');

     mapWidget.setSelection(myXMLReturnedFromServer, true);

     

    the "true" actually zooms to the selected featue.

     

    regards

    gordon

     

    Please use plain text.
    ADN Support Specialist
    Posts: 103
    Registered: ‎12-23-2008

    Re: Zoom to selection

    08-10-2011 03:52 AM in reply to: 007dolenc

    This blog may be helpful for you.

     

    To Implement ZoomToSelection in Fusion Viewer MapGuide Enterprise 2011

    http://www.cnblogs.com/junqilian/archive/2010/06/04/1751679.html



    Daniel Du
    Developer Technical Services
    Autodesk Developer Network

    Please use plain text.
    Valued Contributor
    Posts: 72
    Registered: ‎04-12-2012

    Re: Zoom to selection

    04-01-2013 10:28 AM in reply to: 007dolenc

    In some of case, we want to "zoom to selection"; this "selection" is not by mouse click; it's by "enter an attribute value" or "by the calculation result which match some specific attribute column value". In this case we need an example how to use "setSelection: function(selText, ZoomTo) function, what is the input parameters?

    Please use plain text.
    Valued Mentor
    Posts: 258
    Registered: ‎10-10-2003

    Re: Zoom to selection

    04-23-2013 07:03 PM in reply to: 007dolenc

    You need the manually select the features programatically.  For example you want the road with an ID of 20

     

    You pass the SESSIONID, MAPNAME, KEY (20), KEYNAME (ID), LAYER (ROADS)'

     

    to: http://forums.autodesk.com/autodesk/attachments/autodesk/88/3201/1/GETSELECTIONXML.php.txt

     

    but you should use AJAX (try jQuery - http://api.jquery.com/jQuery.ajax/)

     

    once the XML is returned from the page, you can call the javascript call

     

     mapWidget.setSelection(selectionXml, true);

     

    The "TRUE" will zoom to selected (unless it is a point - AIMS 2013 and AIMS 2014 changed so it just pans to points now and doesn't zoom)

     

     

     

    Please use plain text.