MapGuide Fusion Viewer API how to obtain Fusion objects

Source: Internet
Author: User

The Fusion API is often used when MapGuide Fusion viewer is used. The most important object in the Fusion API is the Fusion object. Map or other widgets are obtained through the Fusion global object.

 

The following describes how to obtain the javascript code of the Fusion object. It is available here for your reference:

Var mgApiMapWidgetId = 'map ';

Var MainFusionWindow = GetFusionWindow ();
Var OpenLayers = MainFusionWindow. OpenLayers;
Var Fusion = MainFusionWindow. Fusion;

Alert (Fusion );

/* Locate the Fusion window */
Function GetFusionWindow (){
Var curWindow = window;
While (! CurWindow. Fusion ){
If (curWindow. parent & curWindow! = CurWindow. parent ){
CurWindow = curWindow. parent;
} Else if (curWindow. opener ){
CurWindow = curWindow. opener;
} Else {
Alert ('could not find Fusion instance ');
Break;
}
}
Return curWindow;
}

 

 

After obtaining the Fusion object, you can get the map object through Fusion. getMapById () and get the Widget through Fusion. getWidgetById () or Fusion. getWidgetsByType.

 

Cheers,

Junqilian

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.